diff --git a/src/views/wms/inventoryjobManage/containermanage/containerMainRequest/index.vue b/src/views/wms/inventoryjobManage/containermanage/containerMainRequest/index.vue index 3f81139fe..a04b85824 100644 --- a/src/views/wms/inventoryjobManage/containermanage/containerMainRequest/index.vue +++ b/src/views/wms/inventoryjobManage/containermanage/containerMainRequest/index.vue @@ -176,6 +176,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row) => newRow['uom'] = item['uom'] newRow['fromLocationCode'] = item['locationCode'] newRow['fromInventoryStatus'] = item['inventoryStatus'] + newRow['toQty'] = item['qty'] tableData.value.push(newRow) }) }else if(formField == 'toLocationCode'){ diff --git a/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/containerRecordMain.data.ts b/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/containerRecordMain.data.ts index 579f2a28a..8b65a711b 100644 --- a/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/containerRecordMain.data.ts +++ b/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/containerRecordMain.data.ts @@ -233,11 +233,11 @@ export const ContainerRecordDetail = useCrudSchemas(reactive([ field: 'containerNumber', sort: 'custom' }, - // { - // label: '来源库位代码', - // field: 'fromLocationCode', - // sort: 'custom', - // }, + { + label: '来源库位代码', + field: 'fromLocationCode', + sort: 'custom', + }, { label: '目标库位代码', field: 'toLocationCode', diff --git a/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/index.vue b/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/index.vue index e3ea5e8cb..ebf7f6445 100644 --- a/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/index.vue +++ b/src/views/wms/inventoryjobManage/containermanage/containerRecordMain/index.vue @@ -12,7 +12,7 @@ @updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" :allSchemas="ContainerRecordMain.allSchemas" - :detailAllSchemas="ContainerRecordDetail.allSchemas" + :detailAllSchemas="ContainerRecordDetailAllSchemas" /> @@ -67,7 +67,9 @@