fix 后清算报表gst

master
luoyang 5 years ago
parent b4c94c94d5
commit b3095e87bb

@ -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));

Loading…
Cancel
Save