From 837903fac882d5c789126f1c5e1a46a4c9f2ae47 Mon Sep 17 00:00:00 2001 From: chenxt <10125295+chen-xintao97@user.noreply.gitee.com> Date: Tue, 4 Nov 2025 09:50:32 +0800 Subject: [PATCH] 快速报价盒型联动公式 --- src/components/QuickQuote/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/QuickQuote/index.jsx b/src/components/QuickQuote/index.jsx index 9f38fc3..bd5aa45 100644 --- a/src/components/QuickQuote/index.jsx +++ b/src/components/QuickQuote/index.jsx @@ -2539,7 +2539,7 @@ const BoxComponent = props => { slaveNewData.forEach(x => { let key = 0; if (x.sAssignFormula) { - key = sBillNo ? slaveRowData[x.sName] : evaluateFormula(x.sAssignFormula, variables); + key = sBillNo && x.bVisible ? slaveRowData[x.sName] : evaluateFormula(x.sAssignFormula, variables); slaveRowData[x.sName] = key; } else { if (x.sTypes && x.sTypes.includes('09')) { -- libgit2 0.22.2