|
@@ -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();
|
|
|
+ }
|
|
|
}
|