From bcd97b6cc18a7d3b608c0b5d01d86496e659de51 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期二, 04 三月 2025 16:45:03 +0800 Subject: [PATCH] art: 所有设备 台账 二保工单 根据设备id查询二保工单,并过滤掉已完成和已取消的二保工单 --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml index 267045c..40631f8 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml @@ -46,6 +46,7 @@ #{ id } </foreach> </if> + AND t2.device_abnormal_status = 1 ORDER BY t1.the_date </select> @@ -96,6 +97,7 @@ #{ id } </foreach> </if> + AND t2.device_abnormal_status = 1 ORDER BY t1.the_date </select> @@ -146,6 +148,7 @@ <if test="vo.deviceImportanceLevel != null and vo.deviceImportanceLevel != '' "> AND t2.device_importance_level = #{vo.deviceImportanceLevel} </if> + AND t2.device_abnormal_status = 1 </where> GROUP BY t2.equipment_id, -- Gitblit v1.9.3