@@ -188,7 +188,7 @@ public class InsFeeOrdersServiceImpl extends ServiceImpl<InsFeeOrdersMapper, Ins
BigDecimal base;
if (withTax == 0) {
// 不含税:保费 / 1.06
- base = premium.divide(taxRate, scale, RoundingMode.HALF_EVEN);
+ base = premium.divide(taxRate, 6, RoundingMode.HALF_EVEN);
} else {
// 含税:直接用保费
base = premium;