增加超期日期
This commit is contained in:
parent
2a8dca2a2b
commit
d2c103ca1a
|
|
@ -480,6 +480,17 @@ public class ClzSltAgreementInfoController extends BaseController {
|
||||||
bean.setOverDay(overdueDays-7);
|
bean.setOverDay(overdueDays-7);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(teamExitTime!=null && !teamExitTime.isEmpty()){
|
||||||
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
|
||||||
|
|
||||||
|
LocalDate dateParm = LocalDate.parse(teamExitTime, formatter);
|
||||||
|
LocalDate resultDate = dateParm.plusDays(7);
|
||||||
|
bean.setOverTime(resultDate+"");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bean.setActualExitTime(teamExitTime);
|
||||||
|
|
||||||
BigDecimal leasePrice = bean.getLeasePrice();
|
BigDecimal leasePrice = bean.getLeasePrice();
|
||||||
BigDecimal num = bean.getNum();
|
BigDecimal num = bean.getNum();
|
||||||
// 根据班组退场时间计算租赁费用
|
// 根据班组退场时间计算租赁费用
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue