From 4670f5b3649dbcc03ace177bb74d12a7bd6c9760 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Thu, 24 Oct 2019 18:11:42 +0800 Subject: [PATCH] =?UTF-8?q?[=E8=B4=A6=E5=8D=95=E6=80=BB=E8=A7=88][?= =?UTF-8?q?=E4=BF=AE=E6=94=B9][=E6=9F=A5=E8=AF=A2]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/iformall/service/impl/WxBillAllServiceImpl.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java index afa9f0fa6..58270dc89 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxBillAllServiceImpl.java @@ -147,7 +147,10 @@ public class WxBillAllServiceImpl implements WxBillAllService { //手续费 = 合同应收+手续费+滞纳金 pageInfo.getList().stream().forEach(e -> { //手续费 = 合同应收+手续费+滞纳金 - cmputeTotalMoney(wxPayAccountBill, e); + if (!e.getBillTypeValue().equals(EnumBillTypeParam.RENT_DEPOSIT.getCode()) + && !e.getBillTypeValue().equals(EnumBillTypeParam.PROPERTY_DEPOSIT.getCode())) { + cmputeTotalMoney(wxPayAccountBill, e); + } }); Map result = new HashMap<>();