上级处理
This commit is contained in:
parent
a9549d2678
commit
08abb69aff
@ -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("非处理人,上报失败");
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -177,6 +177,8 @@
|
||||
#{publicLogIds[${index}]}
|
||||
</foreach>
|
||||
</if>
|
||||
ORDER BY
|
||||
t1.id desc
|
||||
</select>
|
||||
|
||||
<!-- 公共日志统计 -->
|
||||
|
Loading…
Reference in New Issue
Block a user