From 6ad10e278e9193bd65314a2f3c954ab16e8c104f Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期五, 18 八月 2023 21:57:03 +0800 Subject: [PATCH] 修复bug --- server/src/main/java/doumeemes/service/ext/impl/PlansExtServiceImpl.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/server/src/main/java/doumeemes/service/ext/impl/PlansExtServiceImpl.java b/server/src/main/java/doumeemes/service/ext/impl/PlansExtServiceImpl.java index 6991000..961192c 100644 --- a/server/src/main/java/doumeemes/service/ext/impl/PlansExtServiceImpl.java +++ b/server/src/main/java/doumeemes/service/ext/impl/PlansExtServiceImpl.java @@ -1617,6 +1617,8 @@ public void autoWorkReport(LoginUserInfo user, AutoWorkReportDTO autoWorkReportDTO){ if(Objects.isNull(autoWorkReportDTO) || Objects.isNull(autoWorkReportDTO.getCreateWorkorderRecordDTO()) + || Objects.isNull(autoWorkReportDTO.getProUserList()) + || Objects.isNull(autoWorkReportDTO.getProUserList().size()==0) || Objects.isNull(autoWorkReportDTO.getCreateWorkorderRecordDTO().getUnQualifiedNum())|| autoWorkReportDTO.getCreateWorkorderRecordDTO().getUnQualifiedNum().compareTo(BigDecimal.ZERO) < Constants.ZERO || Objects.isNull(autoWorkReportDTO.getCreateWorkorderRecordDTO().getQualifiedNum())|| autoWorkReportDTO.getCreateWorkorderRecordDTO().getQualifiedNum().compareTo(BigDecimal.ZERO) < Constants.ZERO){ throw new BusinessException(ResponseStatus.BAD_REQUEST); -- Gitblit v1.9.3