Merge remote-tracking branch 'origin/0205cmt' into 0205cmt

0927cmt
songwenxuan 2024-04-25 14:42:41 +08:00
commit 35271c8324
3 changed files with 24 additions and 8 deletions

View File

@ -866,7 +866,19 @@ public class HiddenApiController extends BaseController {
}
pd.put("departmentIds",departmentIds);
}
// 增加隐患整改部门查询 结束
// 增加发现整改部门查询 开始
if(StringUtils.isNotBlank(pd.getString("creatorUserDept"))){
String url ="department_list.html?DEPARTMENT_ID=";
List<Department> departments = departmentService.listAllDepartment(pd.getString("creatorUserDept"), url);
List<String> departmentIds = new ArrayList<>();
departmentIds.add(pd.getString("creatorUserDept"));
for(Department department:departments){
departmentIds.add(department.getDEPARTMENT_ID());
}
pd.put("creatorUserDepts",departmentIds);
}
// 增加隐患发现部门查询 结束
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
if (!Jurisdiction.getIS_MAIN().equals("1")) { //主账号
pd.put("queryUserId", Jurisdiction.getUSER_ID());

View File

@ -919,14 +919,14 @@ public class HiddenServiceImpl implements HiddenService{
int ajbHjZg = Integer.parseInt(map.get("zcbGscZg").toString())+Integer.parseInt(map.get("xcbGscZg").toString())+Integer.parseInt(map.get("bzbGscZg").toString());
map.put("ajbHjZs","本月共检查出安全隐患"+ajbHjZs+"项,已完成整改"+ajbHjZg+"项");
//装船
map.put("ajbZcbGsc","装船部公司检查"+map.get("zcbGscZs").toString()+"项");
map.put("ajbZcbZc","自查"+map.get("zcbZcZs").toString()+"项");
map.put("ajbZcbGsc","装船部公司检查"+map.get("zcbGscZs").toString()+"项,已完成"+map.get("zcbGscZg").toString()+"项");
map.put("ajbZcbZc","自查"+map.get("zcbZcZs").toString()+"项,已完成"+map.get("zcbZcZg").toString()+"项");
//卸车
map.put("ajbXcbGsc","卸车部公司检查"+map.get("xcbGscZs").toString()+"项");
map.put("ajbXcbZc","自查"+map.get("xcbZcZs").toString()+"项");
map.put("ajbXcbGsc","卸车部公司检查"+map.get("xcbGscZs").toString()+"项,已完成"+map.get("xcbGscZg").toString()+"项");
map.put("ajbXcbZc","自查"+map.get("xcbZcZs").toString()+"项,已完成"+map.get("xcbZcZg").toString()+"项");
//保障
map.put("ajbBzbGsc","保障部公司检查"+map.get("bzbGscZs").toString()+"项");
map.put("ajbBzbZc","自查"+map.get("bzbZcZs").toString()+"项");
map.put("ajbBzbGsc","保障部公司检查"+map.get("bzbGscZs").toString()+"项,已完成"+map.get("bzbGscZg").toString()+"项");
map.put("ajbBzbZc","自查"+map.get("bzbZcZs").toString()+"项,已完成"+map.get("bzbZcZg").toString()+"项");
return map;
}
}

View File

@ -408,7 +408,11 @@
<if test="pd.creatorUserDept != null and pd.creatorUserDept != ''"><!-- 隐患发现人 部门-->
and f.HIDDEN_ID in (select hfu.HIDDEN_ID from BUS_HIDDEN_USER
hfu LEFT JOIN sys_user user on user.USER_ID = hfu.USER_ID
where user.DEPARTMENT_ID = #{pd.creatorUserDept} )
where user.DEPARTMENT_ID in
<foreach item="item" index="index" collection="pd.creatorUserDepts" open="(" separator="," close=")">
#{pd.creatorUserDepts[${index}]}
</foreach>
)
</if>
<if test="pd.creatorName != null and pd.creatorName != ''"><!-- 隐患发现人 -->
and f.HIDDEN_ID in (select hfu.HIDDEN_ID from BUS_HIDDEN_USER hfu LEFT JOIN sys_user user on user.USER_ID = hfu.USER_ID