From a0bf1314a0b0a849ac505105dac08e727caaf0f9 Mon Sep 17 00:00:00 2001 From: zhangbb Date: Thu, 16 Apr 2020 17:14:14 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E7=BB=8F=E9=94=80=E5=95=86?= =?UTF-8?q?=E4=BF=9D=E8=AF=81=E9=87=91=E6=98=AF=E5=90=A6=E7=BA=A2=E5=86=B2?= =?UTF-8?q?=E5=88=A4=E6=96=ADbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/tenwa/flow/rent/copyrent/InsertRentPlanStatus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_tenwa/com/tenwa/flow/rent/copyrent/InsertRentPlanStatus.java b/src_tenwa/com/tenwa/flow/rent/copyrent/InsertRentPlanStatus.java index 9f6a46d1e..b5ffc9f27 100644 --- a/src_tenwa/com/tenwa/flow/rent/copyrent/InsertRentPlanStatus.java +++ b/src_tenwa/com/tenwa/flow/rent/copyrent/InsertRentPlanStatus.java @@ -37,7 +37,7 @@ public class InsertRentPlanStatus extends BaseBussiness{ BigDecimal balance_money = new BigDecimal(money).setScale(2, BigDecimal.ROUND_HALF_UP); System.out.println("===========租金差额为: "+money); //有代偿记录,并且本次租金已经还完 - if(boDDI!=null&&(balance_money.compareTo(new BigDecimal("0"))==-1||balance_money.compareTo(new BigDecimal("0"))==0)){ + if(boDDI!=null&&(balance_money.compareTo(new BigDecimal("0"))==1||balance_money.compareTo(new BigDecimal("0"))==0)){ calc.writeBackDistributor(rentPlanId, Sqlca); } }