|
|
@@ -0,0 +1,32 @@
|
|
|
+package beans.stockbill.bills;
|
|
|
+
|
|
|
+import common.Controller;
|
|
|
+import common.YosException;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+
|
|
|
+public class FXRK extends BasicBill {
|
|
|
+
|
|
|
+ public FXRK(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<String> 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;
|
|
|
+ }
|
|
|
+}
|