From 08c8cc0898bfc584f2e921647d1b5c3000d71e39 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Wed, 23 Oct 2019 12:09:12 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=90=88=E5=90=8C][=E4=BF=AE=E6=94=B9][?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E8=B4=A6=E5=8D=95=E6=B7=BB=E5=8A=A0=E6=89=8B?= =?UTF-8?q?=E7=BB=AD=E8=B4=B9]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/iformall/service/impl/WxPropertyContractServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java index 722e4e594..8e7486c34 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxPropertyContractServiceImpl.java @@ -733,6 +733,7 @@ public class WxPropertyContractServiceImpl implements WxPropertyContractService //计算手续费 BigDecimal servicePay = new BigDecimal(wxBillProperty.getReceivePay()).multiply(new BigDecimal(wxPayAccountBill.getServiceChargeRate())).divide(new BigDecimal(10000), 2, BigDecimal.ROUND_HALF_UP); wxBillProperty.setServiceChargePay(servicePay.intValue()); + wxBillProperty.setOwe(wxBillProperty.getReceivePay() + wxBillProperty.getServiceChargePay()); resultList.add(wxBillProperty); }