瀏覽代碼

修改类名

hu 10 月之前
父節點
當前提交
dc92e87b44
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/custom/restcontroller/webmanage/sale/stockbill/stockbill.java

+ 2 - 2
src/custom/restcontroller/webmanage/sale/stockbill/stockbill.java

@@ -323,7 +323,7 @@ public class stockbill extends Controller {
     @CACHEING_CLEAN(apiClass = {stockbill.class, stockbillitems.class, Order.class, OrderItems.class,restcontroller.sale.stockbill.stockbill.class})
     public String check() throws YosException {
         Long st_stockbillid = content.getLong("st_stockbillid");
-        beans.stockbill.stockbill.check(this,st_stockbillid,true);
+        beans.stockbill.Stockbill.check(this,st_stockbillid,true);
         return getSucReturnObject().toString();
     }
 
@@ -331,7 +331,7 @@ public class stockbill extends Controller {
     @CACHEING_CLEAN(apiClass = {stockbill.class, stockbillitems.class, Order.class, OrderItems.class,stockbill.class,restcontroller.sale.stockbill.stockbill.class})
     public String uncheck() throws YosException {
         Long st_stockbillid = content.getLong("st_stockbillid");
-        beans.stockbill.stockbill.check(this,st_stockbillid,false);
+        beans.stockbill.Stockbill.check(this,st_stockbillid,false);
         return getSucReturnObject().toString();
     }