From c1b44e4620060c643796499c51ea17dd9ddc3797 Mon Sep 17 00:00:00 2001 From: pengm <674192343@qq.com> Date: Mon, 29 Dec 2025 11:19:23 +0800 Subject: [PATCH] 1.采购收货-采购入库复制多列,不需要复制条码号和批次流水号 --- src/components/Common/CommonSubBillEvent.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/Common/CommonSubBillEvent.js b/src/components/Common/CommonSubBillEvent.js index c698131..5cdee9e 100644 --- a/src/components/Common/CommonSubBillEvent.js +++ b/src/components/Common/CommonSubBillEvent.js @@ -57,7 +57,7 @@ export default (ChildComponent) => { const BtnDesignFunctionConfig = commonUtils.isNotEmptyObject(masterConfig) ? masterConfig.gdsconfigformslave.filter(item => item.sControlName === 'BtnBsOperation.BtnDesignFunction') : {}; const reportDesign = commonFunc.showMessage(app.commonConst, 'reportDesign');/* 报表设计 */ if (commonUtils.isEmptyObject(BtnDesignFunctionConfig)) { - masterConfig.gdsconfigformslave.push({ + masterConfig?.gdsconfigformslave.push({ bCanInput: false, bEntireLine: false, bFilter: false, @@ -3237,6 +3237,12 @@ export default (ChildComponent) => { if (commonUtils.isNotEmptyObject(tableDataRow.sProcessMemo)) { tableDataRow.sProcessMemo = ''; } + if (commonUtils.isNotEmptyObject(tableDataRow.sDefineNo)) { + tableDataRow.sDefineNo = ''; + } + if (commonUtils.isNotEmptyObject(tableDataRow.sDefineNo2)) { + tableDataRow.sDefineNo2 = ''; + } if (sModelsType === 'sales/salesOrderPack' && isTree) { /* 树形 */ const sAllOldId = tableData[tableDataIndex].sAllId; const arr = sAllOldId.split(','); -- libgit2 0.22.2