diff --git a/src/components/Common/commonBusiness.js b/src/components/Common/commonBusiness.js index 2b0ef9f..a873601 100644 --- a/src/components/Common/commonBusiness.js +++ b/src/components/Common/commonBusiness.js @@ -845,7 +845,7 @@ export function getCalculateMoneyNew(app, masterData, tableDataRow, type, sField const dProductForeignPrice = commonUtils.convertFixNum(dProductQty !== 0 ? dProductForeignMoney / dProductQty : 0, dNetPrice); /* 外币价格 */ const dProductPrice = commonUtils.convertFixNum(dProductQty !== 0 ? dProductMoney / dProductQty : 0, dNetPrice); /* 本位币价格 */ let dProductNoTaxMoney = tableDataRow[`d${type}NoTaxMoney`] /* 不含税金额 */ - if (!app?.currentPane?.sModelsType?.includes('purchase/purchasecheck')) { + if (!['purchase/purchasecheck', 'outside/outsideChecking'].includes(app?.currentPane?.sModelsType)) { dProductNoTaxMoney = commonUtils.convertFixNum(dProductMoney / (1 + (dTaxRate / 100)), dNetMoney); } const dProductNoTaxPrice = commonUtils.convertFixNum(dProductQty !== 0 ? dProductNoTaxMoney / dProductQty : 0, dNetPrice); /* 不含税价 */