package beans.stockbill.bills; import beans.datacontrllog.DataContrlLog; import common.Controller; import common.YosException; import common.data.SQLFactory; import common.data.UpdateSQL; import java.util.ArrayList; public class zc extends BasicBill { public zc(Controller controller, long st_stockbillid) throws YosException { super(controller, st_stockbillid); } @Override public void checkValidate(boolean ischeck) throws YosException { super.checkValidate(ischeck); } @Override public ArrayList getCheckSql(boolean ischeck) throws YosException { return super.getCheckSql(ischeck); } @Override public boolean isInStock(boolean fischeck) { if (fischeck && rb == 1 || !fischeck && rb == 0) { return true; } return false; } }