|
|
|
@ -7,9 +7,14 @@
|
|
|
|
|
SELECT P.DEFECT_GRADING as defectLevel,P.HANDLE_STATUS,COUNT(P.ID) AS DEFECT_NUM from |
|
|
|
|
hzims_oper_phenomenon P |
|
|
|
|
WHERE DATE_FORMAT(P.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
<if test="createDept != null and createDept != ''"> |
|
|
|
|
AND P.CREATE_DEPT = #{createDept} |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
and P.DEFECT_GRADING IS NOT NULL |
|
|
|
|
AND P.IS_DEFECT='1' |
|
|
|
|
AND P.IS_DELETED = '0' |
|
|
|
|
GROUP BY P.DEFECT_GRADING,P.HANDLE_STATUS |
|
|
|
|
ORDER BY P.DEFECT_GRADING |
|
|
|
@ -20,37 +25,46 @@
|
|
|
|
|
SELECT P.DEFECT_GRADING as defectLevel,P.HANDLE_STATUS,COUNT(P.ID) AS DEFECT_NUM |
|
|
|
|
from hzims_oper_phenomenon P |
|
|
|
|
WHERE P.CREATE_TIME BETWEEN #{firstMonth} AND #{endMonth} |
|
|
|
|
<if test="createDept != null and createDept != ''"> |
|
|
|
|
AND P.CREATE_DEPT = #{createDept} |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
AND P.IS_DEFECT='1' |
|
|
|
|
AND P.IS_DELETED = 0 |
|
|
|
|
and P.DEFECT_GRADING IS NOT NULL |
|
|
|
|
GROUP BY P.DEFECT_GRADING,P.HANDLE_STATUS |
|
|
|
|
ORDER BY P.DEFECT_GRADING |
|
|
|
|
</select> |
|
|
|
|
<select id="getRepetStatistics" |
|
|
|
|
resultType="com.hnac.hzims.operational.defect.dto.OperDefectStatisticsCodeDTO"> |
|
|
|
|
SELECT P.DEFECT_LEVEL,P.FAULT_CODE,COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D LEFT JOIN |
|
|
|
|
SELECT P.DEFECT_GRADING as defectLevel,P.FAULT_CODE,COUNT(P.ID) AS DEFECT_NUM from |
|
|
|
|
hzims_oper_phenomenon P |
|
|
|
|
ON D.DEFECT_CODE = P.DEFECT_CODE |
|
|
|
|
WHERE 1=1 |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
GROUP BY P.DEFECT_LEVEL,P.FAULT_CODE |
|
|
|
|
and P.DEFECT_GRADING IS NOT NULL |
|
|
|
|
AND P.IS_DEFECT='1' |
|
|
|
|
AND P.IS_DELETED = 0 |
|
|
|
|
GROUP BY P.DEFECT_GRADING,P.FAULT_CODE |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="getManageIndex" resultType="java.lang.Integer"> |
|
|
|
|
<!-- 本月及时消缺数 --> |
|
|
|
|
(SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D LEFT JOIN hzims_oper_phenomenon P |
|
|
|
|
ON D.DEFECT_CODE = P.DEFECT_CODE |
|
|
|
|
WHERE DATE_FORMAT(D.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
AND D.HANDLE_STATUS = 1 |
|
|
|
|
AND D.ACT_END_TIME <= P.PLAN_END_TIME |
|
|
|
|
(SELECT COUNT(P.ID) AS DEFECT_NUM from hzims_oper_phenomenon P |
|
|
|
|
WHERE DATE_FORMAT(P.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
AND P.HANDLE_STATUS = 1 |
|
|
|
|
AND P.IS_DEFECT='1' |
|
|
|
|
AND P.IS_DELETED = 0 |
|
|
|
|
and P.DEFECT_GRADING IS NOT NULL |
|
|
|
|
AND P.ACT_END_TIME <= P.PLAN_END_TIME |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
@ -59,11 +73,14 @@
|
|
|
|
|
UNION ALL |
|
|
|
|
<!-- 本月总消缺数 --> |
|
|
|
|
( |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_phenomenon D |
|
|
|
|
WHERE DATE_FORMAT(D.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
AND D.HANDLE_STATUS = 1 |
|
|
|
|
AND D.IS_DEFECT='1' |
|
|
|
|
AND D.IS_DELETED = 0 |
|
|
|
|
and D.DEFECT_GRADING IS NOT NULL |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
@ -72,11 +89,14 @@
|
|
|
|
|
UNION ALL |
|
|
|
|
<!-- 本月遗留缺陷数 --> |
|
|
|
|
( |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_phenomenon D |
|
|
|
|
WHERE DATE_FORMAT(D.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
AND D.HANDLE_STATUS = 0 |
|
|
|
|
AND D.IS_DELETED = 0 |
|
|
|
|
AND D.IS_DEFECT='1' |
|
|
|
|
and D.DEFECT_GRADING IS NOT NULL |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
@ -85,11 +105,14 @@
|
|
|
|
|
UNION ALL |
|
|
|
|
<!-- 历史遗留缺陷数 --> |
|
|
|
|
( |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_phenomenon D |
|
|
|
|
WHERE DATE_FORMAT(D.CREATE_TIME,'%Y-%m') < CONCAT(#{month}, '-01') |
|
|
|
|
AND D.HANDLE_STATUS = 0 |
|
|
|
|
AND D.IS_DELETED = 0 |
|
|
|
|
AND D.IS_DEFECT='1' |
|
|
|
|
and D.DEFECT_GRADING IS NOT NULL |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
@ -98,10 +121,13 @@
|
|
|
|
|
UNION ALL |
|
|
|
|
<!-- 本月总缺陷数 --> |
|
|
|
|
( |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_defect D |
|
|
|
|
SELECT COUNT(D.ID) AS DEFECT_NUM from hzims_oper_phenomenon D |
|
|
|
|
WHERE DATE_FORMAT(D.CREATE_TIME,'%Y-%m') = #{month} |
|
|
|
|
AND D.IS_DELETED = 0 |
|
|
|
|
AND D.IS_DEFECT='1' |
|
|
|
|
and D.DEFECT_GRADING IS NOT NULL |
|
|
|
|
<if test="createDept != null and createDept.size > 0"> |
|
|
|
|
and D.CREATE_DEPT in |
|
|
|
|
AND P.CREATE_DEPT in |
|
|
|
|
<foreach collection="createDept" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|