Commit 5ca1ba3d authored by 吴琼's avatar 吴琼

xiugai

parent b8da029f
...@@ -121,7 +121,9 @@ public class OrderServiceImpl implements IOrderService { ...@@ -121,7 +121,9 @@ public class OrderServiceImpl implements IOrderService {
} }
List<RepaymentPlanItem> repaymentPlans = orderRepaymentJsonResult.getData().getRepaymentPlans(); List<RepaymentPlanItem> repaymentPlans = orderRepaymentJsonResult.getData().getRepaymentPlans();
repaymentPlans.forEach(e -> repaymentList.add(Repayment.valueOf(e))); if(!repaymentPlans.isEmpty()){
repaymentPlans.forEach(e -> repaymentList.add(Repayment.valueOf(e)));
}
return JsonResult.buildSuccessResult("查询成功", loanOrderDetail); return JsonResult.buildSuccessResult("查询成功", loanOrderDetail);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment