diff --git a/src/api/request2.js b/src/api/request2.js index 91e1ac68..bc72fb82 100644 --- a/src/api/request2.js +++ b/src/api/request2.js @@ -510,6 +510,30 @@ export function getPutawayRecommendLocation(params) { } +//获取推荐目标库位 +// expectinNumber: 预计入number +// itemCode: 物料代码 +// inventoryStatus:库存状态 +export function getrecommendLocationExpectin(params) { + return request({ + url: baseApi + "/wms/location/recommendLocationExpectin", + method: "post", + data: params, + }); +} + + +//移除预占用的推荐库位 +// expectinNumber: 预计入number +// itemCode: 物料代码 +// inventoryStatus:库存状态 +export function recommendLocationRemoveExpectin(params) { + return request({ + url: baseApi + "/wms/location/recommendLocationRemoveExpectin", + method: "post", + data: params, + }); +} /** * 查询物品信息接口 diff --git a/src/pages/productPutaway/record/productPutawayRecord.vue b/src/pages/productPutaway/record/productPutawayRecord.vue index ec7975ed..90d29eb0 100644 --- a/src/pages/productPutaway/record/productPutawayRecord.vue +++ b/src/pages/productPutaway/record/productPutawayRecord.vue @@ -44,7 +44,8 @@