领料审核bug修改
This commit is contained in:
parent
0e62f212ef
commit
22232fbbf7
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue