gaoluyang
2026-03-02 9c8ef5d2c0b2c1a95a155477c2cda12801fd6f24
src/utils/summarizeTable.js
@@ -42,8 +42,7 @@
};
// 不含税总价计算
const calculateTaxExclusiveTotalPrice = (taxInclusiveTotalPrice, taxRate) => {
  const taxRateNumber = taxRate?Number(taxRate):0;
  const taxRateDecimal = taxRateNumber / 100;
  const taxRateDecimal = taxRate / 100;
  return (taxInclusiveTotalPrice / (1 + taxRateDecimal)).toFixed(2);
};
// 含税总价计算