diff --git a/src/api/wms/putawayJobDetail/index.ts b/src/api/wms/putawayJobDetail/index.ts index af3a1738a..2916d8d08 100644 --- a/src/api/wms/putawayJobDetail/index.ts +++ b/src/api/wms/putawayJobDetail/index.ts @@ -63,4 +63,9 @@ export const exportPutawayJobDetail = async (params) => { // 下载用户导入模板 export const importTemplate = () => { return request.download({ url: '/wms/putaway-job-detail/get-import-template' }) +} + +// 查询上架任务子列表--自包装数量 +export const getPutawayJobDetailPageChildPackingNumber = async (params) => { + return await request.get({ url: `/wms/putaway-job-detail/pageChildPackingNumber`, params }) } \ No newline at end of file diff --git a/src/views/wms/purchasereceiptManage/putaway/putawayJobMain/index.vue b/src/views/wms/purchasereceiptManage/putaway/putawayJobMain/index.vue index b572a57fd..c63ba5643 100644 --- a/src/views/wms/purchasereceiptManage/putaway/putawayJobMain/index.vue +++ b/src/views/wms/purchasereceiptManage/putaway/putawayJobMain/index.vue @@ -62,12 +62,35 @@ :detailAllSchemasRules="PutawayJobDetailRules" :searchTableParams="searchTableParams" :apiPage="PutawayJobDetailApi.getPutawayJobDetailPage" + :detailButtonIsShowAdd="false" + :detailButtonIsShowEdit="false" + :detailButtonIsShowDelete="false" + :buttondataTable="buttondataTable" + @tableFormButton="tableFormButton" /> + + + +