Browse Source

立体仓库指令查询及指令删除接口

hu 3 days ago
parent
commit
ce43ad3418

+ 15 - 0
src/custom/restcontroller/R.java

@@ -6337,6 +6337,21 @@ public class R {
         public static class v1 {
         }
     }
+
+    public static class ID2025073011124403 {
+        public static class v1 {
+        }
+    }
+
+    public static class ID2025073011141603 {
+        public static class v1 {
+        }
+    }
+
+    public static class ID2025073011151003 {
+        public static class v1 {
+        }
+    }
 }
 
 

+ 20 - 0
src/custom/restcontroller/webmanage/sale/wmssend/wmssend.java

@@ -94,5 +94,25 @@ public class wmssend extends Controller {
         return getSucReturnObject().toString();
     }
 
+    @API(title = "立体仓库指令查询", apiversion = R.ID2025073011124403.v1.class)
+    public String queryOrder() throws YosException {
+        String outplace =content.getString("outplace");
+        Rows rows= beans.wms.Wms.queryOrder(outplace);
+        return getSucReturnObject().setData(rows).toString();
+    }
 
+    @API(title = "谈桥指令删除", apiversion = R.ID2025073011141603.v1.class)
+    public String deleteTQOrder() throws YosException {
+        long OutPlanID=content.getLong("OutPlanID");
+        beans.wms.Wms.deleteTQOrder(OutPlanID);
+        return getSucReturnObject().toString();
+    }
+
+    @API(title = "马桥指令删除", apiversion = R.ID2025073011151003.v1.class)
+    public String deleteMQOrder() throws YosException {
+        String billno=content.getString("billno");
+        int rowno=content.getInteger("rowno");
+        beans.wms.Wms.deleteMQOrder(billno,rowno);
+        return getSucReturnObject().toString();
+    }
 }