From ea1e4fecd5853804c118e74d71733b9783540702 Mon Sep 17 00:00:00 2001 From: amarsoft Date: Mon, 15 Oct 2018 11:56:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8D=E8=A7=84=E5=88=99?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=97=B6=20=E6=8A=B5=E6=89=A3=E4=BF=9D?= =?UTF-8?q?=E8=AF=81=E9=87=91=E6=97=A0=E6=B3=95=E7=94=9F=E6=88=90=E8=B5=84?= =?UTF-8?q?=E9=87=91=E8=AE=A1=E5=88=92=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calc/com/tenwa/reckon/executor/FundFundPlanExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/calc/com/tenwa/reckon/executor/FundFundPlanExecutor.java b/calc/com/tenwa/reckon/executor/FundFundPlanExecutor.java index 393bd7865..623ac1529 100644 --- a/calc/com/tenwa/reckon/executor/FundFundPlanExecutor.java +++ b/calc/com/tenwa/reckon/executor/FundFundPlanExecutor.java @@ -417,7 +417,8 @@ public class FundFundPlanExecutor { newFundPlan.setSettleMethod("payfund6"); newFundPlan.setPayType("pay_type_out"); newFundPlan.setPlanMoney(cb.getCautionMoneyRemain()); - newFundPlan.setPlanDate(cb.getEndDate()); + //现在不维护商务条件表里的合同结束日期了,前边有代码 如果资金计划的plan_date为空 就不会入表,所以把上边租金计划的最后一期的日期放进来 + newFundPlan.setPlanDate(planDates.get(planDates.size()-1)); newFundPlan.setPayCust(custID); newFundPlans.add(newFundPlan); }