diff --git a/src/components/Common/commonBusiness.js b/src/components/Common/commonBusiness.js index a873601..8c4c1da 100644 --- a/src/components/Common/commonBusiness.js +++ b/src/components/Common/commonBusiness.js @@ -458,7 +458,7 @@ export function getCalculateByPrice(app, type, masterData, tableDataRow, sFieldN if(sFieldName !== `d${type}Price`) { /* 输入数量等 */ dProductPrice = commonUtils.convertFixNum(dCurrencyRate !== 0 ? dProductForeignPrice * dCurrencyRate : 0, dNetPrice); /* 本位币单价 */ } - } else { + } else if(sFieldName !== 'sTaxName' && sFieldName !== 'sTaxId') { dProductMoney = commonUtils.convertFixNum(dProductQty * dProductPrice, dNetMoney); /* 金额 */ dProductForeignMoney = commonUtils.convertFixNum(dCurrencyRate !== 0 ? dProductMoney / dCurrencyRate : 0, dNetMoney); /* 外币金额 */ }