|
|
|
@ -205,9 +205,9 @@ public class SurchargeAccountServiceImpl implements SurchargeAccountService {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pdfInfo.put("surcharge_wechat", wechatSurcharge);
|
|
|
|
|
pdfInfo.put("amount_wechat", wechatSurcharge);
|
|
|
|
|
pdfInfo.put("amount_wechat", wechatSurcharge.add(wechatTaxAmount));
|
|
|
|
|
pdfInfo.put("surcharge_alipay", alipaySurcharge);
|
|
|
|
|
pdfInfo.put("amount_alipay", alipaySurcharge);
|
|
|
|
|
pdfInfo.put("amount_alipay", alipaySurcharge.add(alipayTaxAmount));
|
|
|
|
|
pdfInfo.put("amount", wechatSurcharge.add(alipaySurcharge));
|
|
|
|
|
pdfInfo.put("gst", wechatTaxAmount.add(alipayTaxAmount));
|
|
|
|
|
pdfInfo.put("total_amount", (wechatAmount.add(alipayAmount)).setScale(2, RoundingMode.DOWN));
|
|
|
|
|