From b2125704e4fe2fad077edb2d75f8152f52214534 Mon Sep 17 00:00:00 2001 From: zhouyahui Date: Wed, 10 Oct 2018 23:47:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=AE=E8=A1=8C=E6=AF=94=E4=BE=8B=E5=8A=A0?= =?UTF-8?q?=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calc/com/tenwa/reckon/util/TransRateHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calc/com/tenwa/reckon/util/TransRateHelper.java b/calc/com/tenwa/reckon/util/TransRateHelper.java index 653ec7061..67588ea57 100644 --- a/calc/com/tenwa/reckon/util/TransRateHelper.java +++ b/calc/com/tenwa/reckon/util/TransRateHelper.java @@ -210,8 +210,8 @@ public class TransRateHelper { String newRate = "0"; if("calculation".equals(condition.getAdjustType())){ if ("proportion".equals(condition.getRateFloatType())) {// 按央行利率浮动时 - //newRate = getRateByProportion(condition.getLeaseTerm(), oldYearRate, adjust, condition.getRateFloatAmt()); - newRate = getRateByProportion(condition.getLeaseTerm(), adjust, condition.getRateFloatAmt()); + newRate = getRateByProportion(condition.getLeaseTerm(), oldYearRate, adjust, condition.getRateFloatAmt()); + //newRate = getRateByProportion(condition.getLeaseTerm(), adjust, condition.getRateFloatAmt()); } else if ("add".equals(condition.getRateFloatType())) {// 按央利率加点时 //newRate = getRateByPoint(condition.getLeaseTerm(), oldYearRate, adjust); newRate = getRateByPoint(condition.getLeaseTerm(), adjust, condition.getRateFloatAmt());