zc.java 846 B

1234567891011121314151617181920212223242526272829303132333435
  1. package beans.stockbill.bills;
  2. import beans.datacontrllog.DataContrlLog;
  3. import common.Controller;
  4. import common.YosException;
  5. import common.data.SQLFactory;
  6. import common.data.UpdateSQL;
  7. import java.util.ArrayList;
  8. public class zc extends BasicBill {
  9. public zc(Controller controller, long st_stockbillid) throws YosException {
  10. super(controller, st_stockbillid);
  11. }
  12. @Override
  13. public void checkValidate(boolean ischeck) throws YosException {
  14. super.checkValidate(ischeck);
  15. }
  16. @Override
  17. public ArrayList<String> getCheckSql(boolean ischeck) throws YosException {
  18. return super.getCheckSql(ischeck);
  19. }
  20. @Override
  21. public boolean isInStock(boolean fischeck) {
  22. if (fischeck && rb == 1 || !fischeck && rb == 0) {
  23. return true;
  24. }
  25. return false;
  26. }
  27. }