领料审核bug修改

This commit is contained in:
liang.chao 2025-01-15 19:01:58 +08:00
parent 0e62f212ef
commit 22232fbbf7
2 changed files with 3 additions and 3 deletions

View File

@ -1020,7 +1020,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and bagi.agreement_code like concat('%', #{agreementCode}, '%')
</if>
<if test="time != null and time != ''">
and bai.back_time =#{time}
and DATE(bai.create_time) = #{time}
</if>
<if test="backSource != null and backSource != ''">
and bai.back_source =#{backSource}

View File

@ -568,8 +568,8 @@ public class SysUserServiceImpl implements ISysUserService {
public List<SysUser> urgentProcessingUser(UrgentProcessingUser urgentProcessingUser) {
log.info("ToDoServiceImpl urgentProcessingUser {} begin", urgentProcessingUser);
// 验证是否为空
if (urgentProcessingUser == null || urgentProcessingUser.getTaskStatus() == null) {
throw new ServiceException(SystemException.TASK_ID_IS_EMPTY_MSG, SystemException.TASK_ID_IS_EMPTY);
if (urgentProcessingUser == null || org.apache.commons.lang3.StringUtils.isBlank(urgentProcessingUser.getTaskStatus())) {
return new ArrayList<>();
}
List<SysUser> userList = new ArrayList<>();
SysUser sysUser = new SysUser();