瀏覽代碼

查询待上架列表接口新增

zhaohuanhuan 4 月之前
父節點
當前提交
347d671db6
共有 2 個文件被更改,包括 18 次插入0 次删除
  1. 11 0
      src/api/putaway/index.ts
  2. 7 0
      src/types/putaway.ts

+ 11 - 0
src/api/putaway/index.ts

@@ -26,3 +26,14 @@ export function getWaitPutawayInfo(params:getWaitPutawayInfoType) {
     params
   })
 }
+/**
+ * 获取待上架列表-退货上架
+ * @param params
+ */
+export function getWaitPutawayInfoNew(params:getWaitPutawayInfoNewType) {
+  return request({
+    url: '/api/wms/app/inbound-self/toShelf/list',
+    method: 'get',
+    params
+  })
+}

+ 7 - 0
src/types/putaway.ts

@@ -20,3 +20,10 @@ export interface getWaitPutawayInfoType {
   warehouse: string;
 }
 
+/**
+ * 上架任务列表
+ */
+export interface getWaitPutawayInfoNewType {
+  containerId: string;
+  warehouseId: string;
+}