配置完待办不选择提醒人查询不出来问题修改
This commit is contained in:
parent
1a10d558e6
commit
ab936ae1ca
@ -59,7 +59,7 @@ public class AttentiontodoServiceImpl implements AttentiontodoService {
|
||||
attentiontodoMapper.deleteall(updateReqVO);
|
||||
if(updateReqVO.getTaskDispatchDetails()!=null&&updateReqVO.getTaskDispatchDetails().size()>0) {
|
||||
Map<String, Object> mapp = (Map<String, Object>) updateReqVO.getTaskDispatchDetails().get(0);
|
||||
if (mapp.get("remindman") != null) {
|
||||
// if (mapp.get("remindman") != null) {
|
||||
for (Object taskDispatchDetail : updateReqVO.getTaskDispatchDetails()) {
|
||||
Map<String, Object> map = (Map<String, Object>) taskDispatchDetail;
|
||||
Object remindmanValue = map.get("remindman");
|
||||
@ -76,7 +76,7 @@ public class AttentiontodoServiceImpl implements AttentiontodoService {
|
||||
attentiontodoMapper.insert(attentiontodo);
|
||||
}
|
||||
}
|
||||
}
|
||||
// }
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
SELECT a.*, b.tenant_id as txrid
|
||||
FROM db_attentiontodo a
|
||||
INNER JOIN system_users b ON a.attr4 = b.nickname
|
||||
LEFT JOIN system_users b ON a.attr4 = b.nickname
|
||||
WHERE a.attr2 = #{param1}
|
||||
|
||||
</select>
|
||||
|
Loading…
Reference in New Issue
Block a user