From ec0223452d306fe976f797eee478f763fc1ca43e Mon Sep 17 00:00:00 2001 From: gongbiao Date: Tue, 22 Oct 2019 13:39:31 +0800 Subject: [PATCH] =?UTF-8?q?[=E8=B4=A6=E5=8D=95][=E4=BF=AE=E6=94=B9][?= =?UTF-8?q?=E5=90=84=E8=B4=A6=E5=8D=95=E4=BF=9D=E5=AD=98=E5=90=8E=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/iformall/service/impl/WxBillPropertyServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxBillPropertyServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxBillPropertyServiceImpl.java index c0f8b34e0..8a86abc4e 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxBillPropertyServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxBillPropertyServiceImpl.java @@ -142,7 +142,7 @@ public class WxBillPropertyServiceImpl implements WxBillPropertyService { @Override public ResultData saveOrUpdate(WxBillProperty record, MallUserInfo user) { - int receivepay = record.getRealReceivePay() == null ? 0 : record.getReceivePay().intValue(); + int receivepay = record.getRealReceivePay() == null ? 0 : record.getRealReceivePay().intValue(); int pay = record.getPay() == null ? 0 : record.getPay().intValue(); if (pay > receivepay) { return new ResultData(ErrorCode.BILL_PAY_ERROR.getCode(), "实收金额不能大于实际应收总金额");