修改不规则导入时 抵扣保证金无法生成资金计划问题

This commit is contained in:
amarsoft 2018-10-15 11:56:54 +08:00
parent 8713e4a848
commit ea1e4fecd5

View File

@ -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);
}