|
|
@ -68,7 +68,6 @@ |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) as finishCount, |
|
|
|
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) as finishCount, |
|
|
|
COUNT(DISTINCT ei.id) as execCount, |
|
|
|
COUNT(DISTINCT ei.id) as execCount, |
|
|
|
COUNT(DISTINCT ei.id) AS totalCount , -- 计算每个 user_id 的总数 |
|
|
|
|
|
|
|
round( SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) /COUNT(DISTINCT ei.id) * 100,1) as completionRate |
|
|
|
round( SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) /COUNT(DISTINCT ei.id) * 100,1) as completionRate |
|
|
|
FROM |
|
|
|
FROM |
|
|
|
enterprise_inspections ei |
|
|
|
enterprise_inspections ei |
|
|
@ -85,7 +84,7 @@ |
|
|
|
WHERE |
|
|
|
WHERE |
|
|
|
ei.deleted = 0 AND e.deleted = 0 and ei.status = 2 |
|
|
|
ei.deleted = 0 AND e.deleted = 0 and ei.status = 2 |
|
|
|
<if test="deptId != null and deptId != ''"> |
|
|
|
<if test="deptId != null and deptId != ''"> |
|
|
|
and e.department_id = #{deptId} and su.real_name is not null |
|
|
|
and e.department_id = #{deptId} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="deptId == null"> |
|
|
|
<if test="deptId == null"> |
|
|
|
and e.department_id != 100 |
|
|
|
and e.department_id != 100 |
|
|
@ -97,7 +96,7 @@ |
|
|
|
<if test="deptId == null"> |
|
|
|
<if test="deptId == null"> |
|
|
|
e.department_id |
|
|
|
e.department_id |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
order by finishCount |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
<select id="selectEnterpriseNum" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO"> |
|
|
|
<select id="selectEnterpriseNum" resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO"> |
|
|
|
select |
|
|
|
select |
|
|
|