From 32c85d752c8334721917c1ac763abe478822ec02 Mon Sep 17 00:00:00 2001 From: zhangzhen <525765282@qq.com> Date: Mon, 16 Jun 2025 17:07:11 +0800 Subject: [PATCH] 处理报错问题; --- src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js b/src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js index 0150cb7..899127e 100644 --- a/src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js +++ b/src/components/QuoQuotation/QuotationPackTableTree/QuotationPackTableTree.js @@ -6757,9 +6757,9 @@ class QuotationPackTableTree extends Component { } } } else { /* packData没数据时 */ - const packDataRow = this.handlePackDataAdd(slaveItem, 0, tableDataRow.sId, 'add'); + const packDataRow = this.handlePackDataAdd(slaveDataRow, 0, tableDataRow.sId, 'add'); packDataRow.dCombineQty = tableDataRow.dSinglePQty; - packDataRow.dFactProductQty = commonUtils.isNull(slaveItem.dProductQty, 0); /* 排版数为1时,实际生产数 = 产品数 */ + packDataRow.dFactProductQty = commonUtils.isNull(slaveDataRow.dProductQty, 0); /* 排版数为1时,实际生产数 = 产品数 */ if (tableDataRow.dSinglePQty > 0) { const { sId, sProductNo, dProductQty, dCombineQty, dFactProductQty,sCombinePartsName }= packDataRow; const tableCombineSelectedData =[]; -- libgit2 0.22.2