diff --git a/src/api/wms/maintenanceBillDate/index.ts b/src/api/wms/maintenanceBillDate/index.ts index 75da63114..4bdbfb8e9 100644 --- a/src/api/wms/maintenanceBillDate/index.ts +++ b/src/api/wms/maintenanceBillDate/index.ts @@ -11,7 +11,8 @@ export interface MaintenanceBillDateMainVO { endSerialNo: number, incorporationNumber: string, backNumber: string, - notIncludedList: object + notIncludedList: object, + fileDataList: object } // 计算发货数量 @@ -28,11 +29,14 @@ export const updateReconciliationDate = async (data: MaintenanceBillDateMainVO) return await request.post({ url: `/wms/leadership-incorporation-doc-request/updateReconciliationDate`, data }) } -// 更新对账日期 -export const updateReconciliationDate = async (data: MaintenanceBillDateMainVO) => { - return await request.post({ url: `/wms/leadership-incorporation-doc-request/updateReconciliationDate`, data }) +// 导入纳入受领书,差异数据页面中调整差异数量 +export const getAdjustmentReconDateList = async (data: MaintenanceBillDateMainVO) => { + return await request.post({ url: `wms/leadership-incorporation-doc-request/getAdjustmentReconDateList`, data }) } - +// 导入纳入受领书,差异数据页面中保存 +export const inducedProductBatchUpdate = async (data: MaintenanceBillDateMainVO) => { + return await request.post({ url: `/wms/leadership-incorporation-doc-request/induced-product-batch-update`, data }) +} diff --git a/src/components/BasicForm/src/BasicForm.vue b/src/components/BasicForm/src/BasicForm.vue index 43ba2310a..5ed8beac6 100644 --- a/src/components/BasicForm/src/BasicForm.vue +++ b/src/components/BasicForm/src/BasicForm.vue @@ -7,6 +7,8 @@ :vLoading="formLoading" @updateFullscreen="updateFullscreen" > + +
{ + return props.isShowFormLoading +}) routeName.value = route.name const formHeight = ref({}) diff --git a/src/components/ImportForm/src/ImportFormStep.vue b/src/components/ImportForm/src/ImportFormStep.vue index 0ef453b7f..85b325071 100644 --- a/src/components/ImportForm/src/ImportFormStep.vue +++ b/src/components/ImportForm/src/ImportFormStep.vue @@ -248,6 +248,13 @@ const importUrl = ref('') const active = ref(props.active) const error = ref(false) +watch( + () => props.active, + (val) => { + active.value = val + } +) + // 传递给父类 const emits = defineEmits([ 'success', diff --git a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts index 012f358c2..465251497 100644 --- a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts +++ b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts @@ -1625,33 +1625,3 @@ export const AdjustDiffDataMain = useCrudSchemas(reactive([ }, ])) -/** - * @returns {Array} 调整差异数据列表 - */ -export const AdjustDiffDataTable = useCrudSchemas(reactive([ - { - label: '品番', - field: 'itemCode', - sort: 'custom', - }, { - label: '描述', - field: 'disc1', - sort: 'custom', - }, { - label: '背番', - field: 'backNumber', - sort: 'custom', - }, { - label: '纳入数量', - field: 'itemCode', - sort: 'custom', - }, { - label: '发货数量', - field: 'itemCode', - sort: 'custom', - }, { - label: '差异数量', - field: 'itemCode', - sort: 'custom', - } -])) \ No newline at end of file diff --git a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/index.vue b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/index.vue index 58e66e643..67810e69c 100644 --- a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/index.vue +++ b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/index.vue @@ -83,6 +83,7 @@ :errorTableColumns="ImportLeadershipDocErrorData" @success="importSuccess" accept=".txt" + :active="active1" :isShowDownloadBtn="false" :confirmFormSuccess="confirmFormSuccess" @searchTableSuccess="searchTableSuccess" @@ -143,6 +144,7 @@ :isShowReduceButtonSelection="true" :updateTypeEdiltSubList="true" :detailButttondata="detailButttondata" + :isShowFormLoading="isShowFormLoading" @handleAddTable="handleAddTableBillDate" @handleDeleteTable="handleDeleteTableBillDate" @tableSelectionDelete="tableSelectionDeleteBillDate" @@ -154,7 +156,9 @@