上级处理

This commit is contained in:
wenc000 2020-04-29 19:27:55 +08:00
parent a9549d2678
commit 08abb69aff
3 changed files with 8 additions and 2 deletions

View File

@ -170,7 +170,7 @@ public class PublicLeaderHandleServiceImpl extends BaseService implements IPubli
LOG.debug("处理失败,上报领导");
publicLogService.savePublicLogSimple(token, publicLeaderHandleVO.getPublicAreaReportId(), publicLeaderHandleId, "处理失败,上报上级处理", userName);
// 领导处理
GridPersonnelDTO gridPersonnelDTO = gridPersonnelService.getLeader(params.get("creator").toString(), 0);
GridPersonnelDTO gridPersonnelDTO = gridPersonnelService.getLeader(params.get("modifier").toString(), 0);
if (gridPersonnelDTO == null) {
throw new SaveException("非处理人,上报失败");
}

View File

@ -137,7 +137,11 @@
WHERE
t1.is_delete = 0
<if test="keywords != null and keywords != ''">
<!-- 这里添加检索关键字 -->
AND (
t1.check_address LIKE CONCAT('%', #{keywords}, '%')
OR
t1.check_content LIKE CONCAT('%', #{keywords}, '%')
)
</if>
<if test="startTime != null and startTime != ''">
AND

View File

@ -177,6 +177,8 @@
#{publicLogIds[${index}]}
</foreach>
</if>
ORDER BY
t1.id desc
</select>
<!-- 公共日志统计 -->