From fcc929fa2888c6b06a168f1ca84344e3bf9fdce5 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期二, 28 十月 2025 11:34:14 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/ERP_override

---
 north-glass-erp/src/main/resources/mapper/pp/Report.xml |  168 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 166 insertions(+), 2 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/pp/Report.xml b/north-glass-erp/src/main/resources/mapper/pp/Report.xml
index bcaf6b1..84b7a9d 100644
--- a/north-glass-erp/src/main/resources/mapper/pp/Report.xml
+++ b/north-glass-erp/src/main/resources/mapper/pp/Report.xml
@@ -326,6 +326,75 @@
         limit #{offset},#{pageSize}
     </select>
 
+    <select id="getNotProcessBreaking" resultMap="damageDetailsTableMap">
+        select rw.reporting_work_id,
+        rw.reporting_work_time,
+        dd.responsible_process,
+        dd.responsible_team,
+        dd.breakage_type,
+        dd.breakage_reason,
+        dd.responsible_personnel,
+        ROUND((dd.breakage_quantity))                                                   as breakage_quantity,
+        round(ogd.child_width * ogd.child_height * (dd.breakage_quantity) / 1000000, 2) as area,
+        rw.this_process,
+        o.project,
+        o.order_id,
+        ogd.glass_child,
+        rw.this_process,
+        JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) AS code,
+        CONCAT(rw.process_id,'/',GROUP_CONCAT(distinct dd.technology_number SEPARATOR '')) as process_id,
+        rw.creator
+        from
+        sd.`order` as o left join sd.order_detail as od on o.order_id=od.order_id
+        left join sd.order_glass_detail as ogd on ogd.order_id=od.order_id and ogd.order_number=od.order_number
+        left join pp.reporting_work as rw on rw.order_id=o.order_id
+        left join pp.damage_details as dd on dd.reporting_work_id=rw.reporting_work_id and dd.order_number=ogd.order_number
+        and dd.technology_number=ogd.technology_number
+        where date(rw.reporting_work_time) >= #{startDate}
+        and date(rw.reporting_work_time) &lt;= #{endDate}
+        and rw.this_worn_quantity > 0
+        and dd.available = 0
+        and reviewed_state != 2
+        and rw.this_process = dd.responsible_process
+        and o.create_order>0
+        <if test="crossProcessBreakingDTO.code != null and crossProcessBreakingDTO.code != ''">
+            and JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) regexp #{crossProcessBreakingDTO.code}
+        </if>
+        <if test="crossProcessBreakingDTO.processId != null and crossProcessBreakingDTO.processId != ''">
+            and rw.process_id regexp #{crossProcessBreakingDTO.processId}
+        </if>
+        <if test="crossProcessBreakingDTO.thisProcess != null and crossProcessBreakingDTO.thisProcess != ''">
+            and rw.this_process regexp #{crossProcessBreakingDTO.thisProcess}
+        </if>
+        <if test="crossProcessBreakingDTO.responsibleProcess != null and crossProcessBreakingDTO.responsibleProcess != ''">
+            and dd.responsible_process regexp #{crossProcessBreakingDTO.responsibleProcess}
+        </if>
+        <if test="crossProcessBreakingDTO.responsibleTeam != null and crossProcessBreakingDTO.responsibleTeam != ''">
+            and dd.responsible_team regexp #{crossProcessBreakingDTO.responsibleTeam}
+        </if>
+        <if test="crossProcessBreakingDTO.glassChild != null and crossProcessBreakingDTO.glassChild != ''">
+            and ogd.glass_child regexp #{crossProcessBreakingDTO.glassChild}
+        </if>
+        <if test="crossProcessBreakingDTO.breakageType != null and crossProcessBreakingDTO.breakageType != ''">
+            and dd.breakage_type regexp #{crossProcessBreakingDTO.breakageType}
+        </if>
+        <if test="crossProcessBreakingDTO.project != null and crossProcessBreakingDTO.project != ''">
+            and o.project regexp #{crossProcessBreakingDTO.project}
+        </if>
+        <if test="crossProcessBreakingDTO.orderId != null and crossProcessBreakingDTO.orderId != ''">
+            and o.order_id regexp #{crossProcessBreakingDTO.orderId}
+        </if>
+        <if test="crossProcessBreakingDTO.responsiblePersonnel != null and crossProcessBreakingDTO.responsiblePersonnel != ''">
+            and dd.responsible_personnel regexp #{crossProcessBreakingDTO.responsiblePersonnel}
+        </if>
+        <if test="crossProcessBreakingDTO.creator != null and crossProcessBreakingDTO.creator != ''">
+            and rw.creator regexp #{crossProcessBreakingDTO.creator}
+        </if>
+        GROUP BY dd.id
+        order by dd.id desc
+        limit #{offset},#{pageSize}
+    </select>
+
     <select id="getProcessBreakingTotal">
         select CEILING(count(dd.id) / #{pageSize}) as 'pageTotal',
                count(distinct dd.id)               as 'total'
@@ -343,6 +412,56 @@
           and dd.available = 0
           and reviewed_state != 2
           and rw.this_process != dd.responsible_process
+        <if test="crossProcessBreakingDTO.code != null and crossProcessBreakingDTO.code != ''">
+            and JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) regexp #{crossProcessBreakingDTO.code}
+        </if>
+        <if test="crossProcessBreakingDTO.processId != null and crossProcessBreakingDTO.processId != ''">
+            and rw.process_id regexp #{crossProcessBreakingDTO.processId}
+        </if>
+        <if test="crossProcessBreakingDTO.thisProcess != null and crossProcessBreakingDTO.thisProcess != ''">
+            and rw.this_process regexp #{crossProcessBreakingDTO.thisProcess}
+        </if>
+        <if test="crossProcessBreakingDTO.responsibleProcess != null and crossProcessBreakingDTO.responsibleProcess != ''">
+            and dd.responsible_process regexp #{crossProcessBreakingDTO.responsibleProcess}
+        </if>
+        <if test="crossProcessBreakingDTO.responsibleTeam != null and crossProcessBreakingDTO.responsibleTeam != ''">
+            and dd.responsible_team regexp #{crossProcessBreakingDTO.responsibleTeam}
+        </if>
+        <if test="crossProcessBreakingDTO.glassChild != null and crossProcessBreakingDTO.glassChild != ''">
+            and ogd.glass_child regexp #{crossProcessBreakingDTO.glassChild}
+        </if>
+        <if test="crossProcessBreakingDTO.breakageType != null and crossProcessBreakingDTO.breakageType != ''">
+            and dd.breakage_type regexp #{crossProcessBreakingDTO.breakageType}
+        </if>
+        <if test="crossProcessBreakingDTO.project != null and crossProcessBreakingDTO.project != ''">
+            and o.project regexp #{crossProcessBreakingDTO.project}
+        </if>
+        <if test="crossProcessBreakingDTO.orderId != null and crossProcessBreakingDTO.orderId != ''">
+            and o.order_id regexp #{crossProcessBreakingDTO.orderId}
+        </if>
+        <if test="crossProcessBreakingDTO.responsiblePersonnel != null and crossProcessBreakingDTO.responsiblePersonnel != ''">
+            and dd.responsible_personnel regexp #{crossProcessBreakingDTO.responsiblePersonnel}
+        </if>
+        order by dd.id desc
+    </select>
+
+    <select id="getNotProcessBreakingTotal">
+        select CEILING(count(dd.id) / #{pageSize}) as 'pageTotal',
+        count(distinct dd.id)               as 'total'
+        from pp.damage_details as dd
+        left join pp.reporting_work as rw
+        on rw.reporting_work_id = dd.reporting_work_id
+        left join sd.order as o
+        on rw.order_id = o.order_id
+        left join sd.order_glass_detail as ogd
+        on ogd.order_id = o.order_id and ogd.order_number = dd.order_number
+        and ogd.technology_number and dd.technology_number
+        where date(rw.reporting_work_time) >= #{startDate}
+        and date(rw.reporting_work_time) &lt;= #{endDate}
+        and rw.this_worn_quantity > 0
+        and dd.available = 0
+        and reviewed_state != 2
+        and rw.this_process = dd.responsible_process
         <if test="crossProcessBreakingDTO.code != null and crossProcessBreakingDTO.code != ''">
             and JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) regexp #{crossProcessBreakingDTO.code}
         </if>
@@ -1074,7 +1193,11 @@
                rw.this_process,
                o.project,
                o.order_id,
-               ogd.glass_child
+               ogd.glass_child,
+               rw.this_process,
+               JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) AS code,
+               CONCAT(rw.process_id,'/',GROUP_CONCAT(distinct dd.technology_number SEPARATOR '')) as process_id,
+               rw.creator
         from damage_details as dd
                  left join reporting_work as rw
                            on rw.reporting_work_id = dd.reporting_work_id
@@ -1083,12 +1206,49 @@
                  left join sd.order_glass_detail as ogd
                            on ogd.order_id = o.order_id and ogd.order_number = dd.order_number
                                and ogd.technology_number and dd.technology_number
+                 left join sd.order_detail as od on o.order_id = od.order_id and od.order_number=ogd.order_number
         where date(rw.reporting_work_time) >= #{dates[0]}
           and date(rw.reporting_work_time) &lt;= #{dates[1]}
           and rw.this_worn_quantity > 0
           and dd.available = 0
           and reviewed_state != 2
           and rw.this_process != dd.responsible_process
+        GROUP BY dd.id
+        order by dd.id desc
+    </select>
+
+    <select id="exportNotCrossProcessBreakingMp">
+        select rw.reporting_work_id,
+               rw.reporting_work_time,
+               dd.responsible_process,
+               dd.responsible_team,
+               dd.breakage_type,
+               dd.breakage_reason,
+               ROUND((dd.breakage_quantity))                                                   as breakage_quantity,
+               round(ogd.child_width * ogd.child_height * (dd.breakage_quantity) / 1000000, 2) as area,
+               rw.this_process,
+               o.project,
+               o.order_id,
+               ogd.glass_child,
+               rw.this_process,
+               JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) AS code,
+               CONCAT(rw.process_id,'/',GROUP_CONCAT(distinct dd.technology_number SEPARATOR '')) as process_id,
+               rw.creator
+        from damage_details as dd
+                 left join reporting_work as rw
+                           on rw.reporting_work_id = dd.reporting_work_id
+                 left join sd.order as o
+                           on rw.order_id = o.order_id
+                 left join sd.order_glass_detail as ogd
+                           on ogd.order_id = o.order_id and ogd.order_number = dd.order_number
+                               and ogd.technology_number and dd.technology_number
+                 left join sd.order_detail as od on o.order_id = od.order_id and od.order_number=ogd.order_number
+        where date(rw.reporting_work_time) >= #{dates[0]}
+          and date(rw.reporting_work_time) &lt;= #{dates[1]}
+          and rw.this_worn_quantity > 0
+          and dd.available = 0
+          and reviewed_state != 2
+          and rw.this_process = dd.responsible_process
         GROUP BY dd.id
         order by dd.id desc
     </select>
@@ -1111,13 +1271,17 @@
                IFNULL(dd.responsible_personnel, '')                                          as personnel,
                ogd.glass_child,
                ogd.child_width,
-               ogd.child_height
+               ogd.child_height,
+               ifnull(JSON_UNQUOTE(JSON_EXTRACT(od.other_columns, '$.S01')),'') AS glassNumber,
+               rw.this_process,
+               rw.creator
         FROM sd.ORDER AS o
                  LEFT JOIN sd.order_glass_detail AS ogd ON ogd.order_id = o.order_id
                  LEFT JOIN reporting_work AS rw ON rw.order_id = o.order_id
                  LEFT JOIN damage_details AS dd ON dd.reporting_work_id = rw.reporting_work_id
             AND dd.order_number = ogd.order_number
             AND dd.technology_number = ogd.technology_number
+            left join sd.order_detail as od on o.order_id = od.order_id and od.order_number=ogd.order_number
         WHERE rw.reporting_work_time >= #{dates[0]}
           and rw.reporting_work_time &lt;= #{dates[1]}
           AND dd.available = 0 and rw.reviewed_state>=0

--
Gitblit v1.8.0