|
@@ -196,6 +196,10 @@ public class AccountAgentDayServiceImpl implements IAccountAgentDayService {
|
|
|
Long sysUserId = SecurityUtil.isAdmin() ? null : SecurityUtil.getUserId();
|
|
|
sysUserId = null == dto.getSysUserId() ? sysUserId : dto.getSysUserId();
|
|
|
dto.setSysUserId(sysUserId);
|
|
|
+ if (null == dto.getBeginDay() || null == dto.getEndDay()){
|
|
|
+ dto.setBeginDay(LocalDate.now());
|
|
|
+ dto.setEndDay(LocalDate.now());
|
|
|
+ }
|
|
|
|
|
|
SimpleCriteria cri = Cnd.cri();
|
|
|
|