From 46bf33053daa5f2bfe163822ce4f793f669024f8 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期一, 10 三月 2025 08:28:13 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override

---
 north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml |  182 ++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 171 insertions(+), 11 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml b/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml
index d6324fe..7e9e30c 100644
--- a/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml
+++ b/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml
@@ -37,7 +37,7 @@
         r.quality_inspector,
         r.patch_processes,
         r.reviewer,
-        date(r.create_time) as create_time,
+        r.create_time as create_time,
         date(r.update_time) as update_time,
         JSON_UNQUOTE( JSON_EXTRACT( od.other_columns, '$.S01' )) AS glassNumber
         from pp.patch_log r left join sd.order_detail od on r.order_id=od.order_id and r.order_sort=od.order_number
@@ -47,6 +47,81 @@
         <where>
             date(r.create_time)>=#{startDate} and date(r.create_time) &lt;= #{endDate}
             and o.create_order>0
+            <if test="patchLog.patchId != null and patchLog.patchId != ''">
+                and r.patch_id regexp #{patchLog.patchId}
+            </if>
+            <if test="patchLog.orderId != null and patchLog.orderId != ''">
+                and r.order_id regexp #{patchLog.orderId}
+            </if>
+            <if test="patchLog.reportingWorkId != null and patchLog.reportingWorkId != ''">
+                and r.reporting_work_id regexp #{patchLog.reportingWorkId}
+            </if>
+            <if test="patchLog.processId != null and patchLog.processId != ''">
+                and r.process_id regexp #{patchLog.processId}
+            </if>
+            <if test="patchLog.project != null and patchLog.project != ''">
+                and o.project regexp #{patchLog.project}
+            </if>
+            <if test="patchLog.batch != null and patchLog.batch != ''">
+                and o.batch regexp #{patchLog.batch}
+            </if>
+            <if test="patchLog.orderSort != null and patchLog.orderSort != ''">
+                and r.order_sort regexp #{patchLog.orderSort}
+            </if>
+            <if test="patchLog.buildingNumber != null and patchLog.buildingNumber != ''">
+                and od.building_number regexp #{patchLog.buildingNumber}
+            </if>
+            <if test="patchLog.productName != null and patchLog.productName != ''">
+                and od.product_name regexp #{patchLog.productName}
+            </if>
+            <if test="patchLog.technologyNumber != null and patchLog.technologyNumber != ''">
+                and r.technology_number regexp #{patchLog.technologyNumber}
+            </if>
+            <if test="patchLog.qualityInspector != null and patchLog.qualityInspector != ''">
+                and r.quality_inspector regexp #{patchLog.qualityInspector}
+            </if>
+            <if test="patchLog.width != null and patchLog.width != ''">
+                and od.width regexp #{patchLog.width}
+            </if>
+            <if test="patchLog.height != null and patchLog.height != ''">
+                and od.height regexp #{patchLog.height}
+            </if>
+            <if test="patchLog.shape != null and patchLog.shape != ''">
+                and od.shape regexp #{patchLog.shape}
+            </if>
+            <if test="patchLog.patchNum != null and patchLog.patchNum != ''">
+                and r.patch_num regexp #{patchLog.patchNum}
+            </if>
+            <if test="patchLog.glassAddress != null and patchLog.glassAddress != ''">
+                and ogd.glass_address regexp #{patchLog.glassAddress}
+            </if>
+            <if test="patchLog.responsibleTeam != null and patchLog.responsibleTeam != ''">
+                and r.responsible_team regexp #{patchLog.responsibleTeam}
+            </if>
+            <if test="patchLog.responsibleEquipment != null and patchLog.responsibleEquipment != ''">
+                and r.responsible_equipment regexp #{patchLog.responsibleEquipment}
+            </if>
+            <if test="patchLog.responsiblePersonnel != null and patchLog.responsiblePersonnel != ''">
+                and r.responsible_personnel regexp #{patchLog.responsiblePersonnel}
+            </if>
+            <if test="patchLog.patchType != null and patchLog.patchType != ''">
+                and r.patch_type regexp #{patchLog.patchType}
+            </if>
+            <if test="patchLog.patchReason != null and patchLog.patchReason != ''">
+                and r.patch_reason regexp #{patchLog.patchReason}
+            </if>
+            <if test="patchLog.patchArea != null and patchLog.patchArea != ''">
+                and r.patch_area regexp #{patchLog.patchArea}
+            </if>
+            <if test="patchLog.qualityInspector != null and patchLog.qualityInspector != ''">
+                and r.quality_inspector regexp #{patchLog.qualityInspector}
+            </if>
+            <if test="patchLog.patchProcesses != null and patchLog.patchProcesses != ''">
+                and r.patch_processes regexp #{patchLog.patchProcesses}
+            </if>
+            <if test="patchLog.reviewer != null and patchLog.reviewer != ''">
+                and r.reviewer regexp #{patchLog.reviewer}
+            </if>
         </where>
          order by r.review_status,r.id desc
         limit #{offset},#{pageSize};
@@ -62,16 +137,94 @@
         on r.order_id = ogd.order_id and r.order_sort = ogd.order_number
         <where>
             date(r.create_time)>=#{startDate} and date(r.create_time) &lt;= #{endDate}
+            <if test="patchLog.patchId != null and patchLog.patchId != ''">
+                and r.patch_id regexp #{patchLog.patchId}
+            </if>
+            <if test="patchLog.orderId != null and patchLog.orderId != ''">
+                and r.order_id regexp #{patchLog.orderId}
+            </if>
+            <if test="patchLog.reportingWorkId != null and patchLog.reportingWorkId != ''">
+                and r.reporting_work_id regexp #{patchLog.reportingWorkId}
+            </if>
+            <if test="patchLog.processId != null and patchLog.processId != ''">
+                and r.process_id regexp #{patchLog.processId}
+            </if>
+            <if test="patchLog.project != null and patchLog.project != ''">
+                and o.project regexp #{patchLog.project}
+            </if>
+            <if test="patchLog.batch != null and patchLog.batch != ''">
+                and o.batch regexp #{patchLog.batch}
+            </if>
+            <if test="patchLog.orderSort != null and patchLog.orderSort != ''">
+                and r.order_sort regexp #{patchLog.orderSort}
+            </if>
+            <if test="patchLog.buildingNumber != null and patchLog.buildingNumber != ''">
+                and od.building_number regexp #{patchLog.buildingNumber}
+            </if>
+            <if test="patchLog.productName != null and patchLog.productName != ''">
+                and od.product_name regexp #{patchLog.productName}
+            </if>
+            <if test="patchLog.technologyNumber != null and patchLog.technologyNumber != ''">
+                and r.technology_number regexp #{patchLog.technologyNumber}
+            </if>
+            <if test="patchLog.qualityInspector != null and patchLog.qualityInspector != ''">
+                and r.quality_inspector regexp #{patchLog.qualityInspector}
+            </if>
+            <if test="patchLog.width != null and patchLog.width != ''">
+                and od.width regexp #{patchLog.width}
+            </if>
+            <if test="patchLog.height != null and patchLog.height != ''">
+                and od.height regexp #{patchLog.height}
+            </if>
+            <if test="patchLog.shape != null and patchLog.shape != ''">
+                and od.shape regexp #{patchLog.shape}
+            </if>
+            <if test="patchLog.patchNum != null and patchLog.patchNum != ''">
+                and r.patch_num regexp #{patchLog.patchNum}
+            </if>
+            <if test="patchLog.glassAddress != null and patchLog.glassAddress != ''">
+                and ogd.glass_address regexp #{patchLog.glassAddress}
+            </if>
+            <if test="patchLog.responsibleTeam != null and patchLog.responsibleTeam != ''">
+                and r.responsible_team regexp #{patchLog.responsibleTeam}
+            </if>
+            <if test="patchLog.responsibleEquipment != null and patchLog.responsibleEquipment != ''">
+                and r.responsible_equipment regexp #{patchLog.responsibleEquipment}
+            </if>
+            <if test="patchLog.responsiblePersonnel != null and patchLog.responsiblePersonnel != ''">
+                and r.responsible_personnel regexp #{patchLog.responsiblePersonnel}
+            </if>
+            <if test="patchLog.patchType != null and patchLog.patchType != ''">
+                and r.patch_type regexp #{patchLog.patchType}
+            </if>
+            <if test="patchLog.patchReason != null and patchLog.patchReason != ''">
+                and r.patch_reason regexp #{patchLog.patchReason}
+            </if>
+            <if test="patchLog.patchArea != null and patchLog.patchArea != ''">
+                and r.patch_area regexp #{patchLog.patchArea}
+            </if>
+            <if test="patchLog.qualityInspector != null and patchLog.qualityInspector != ''">
+                and r.quality_inspector regexp #{patchLog.qualityInspector}
+            </if>
+            <if test="patchLog.patchProcesses != null and patchLog.patchProcesses != ''">
+                and r.patch_processes regexp #{patchLog.patchProcesses}
+            </if>
+            <if test="patchLog.reviewer != null and patchLog.reviewer != ''">
+                and r.reviewer regexp #{patchLog.reviewer}
+            </if>
         </where>
-              ) as zu
-        limit #{offset},#{pageSize};
+        ) as zu
     </select>
 
 
 
 
     <select id="getMaximum" >
-        select count(*) from pp.patch_log where  date(create_time)=CURDATE()
+        SELECT IFNULL(patch_id,'00')
+        FROM patch_log
+        WHERE DATE(create_time) = CURDATE()
+        ORDER BY create_time DESC
+            LIMIT 1;
     </select>
 
 
@@ -157,7 +310,7 @@
                            on rw.order_id = ogd.order_id and dd.order_number = ogd.order_number
 
         <where>  dd.breakage_quantity-dd.quantity>0 and dd.available=0 and (dd.responsible_process=rw.this_process or (dd.quality_ins_status!=1)) and rw.reviewed_state!=-1
-                and o.create_order>0
+                and o.create_order>0 and dd.patch_status=0
             <if test="patchLogAddDTO.orderId != null and patchLogAddDTO.orderId != ''">
                 and o.order_id regexp #{patchLogAddDTO.orderId}
             </if>
@@ -165,10 +318,10 @@
                 and dd.reporting_work_id regexp #{patchLogAddDTO.reportingWorkId}
             </if>
             <if test="patchLogAddDTO.productionId != null and patchLogAddDTO.productionId != ''">
-                and rw.process_id regexp #{patchLogAddDTO.productionId}
+                and rw.production_id regexp #{patchLogAddDTO.productionId}
             </if>
             <if test="patchLogAddDTO.processId != null and patchLogAddDTO.processId != ''">
-                and o.order_id regexp #{patchLogAddDTO.processId}
+                and rw.process_id regexp #{patchLogAddDTO.processId}
             </if>
             <if test="patchLogAddDTO.project != null and patchLogAddDTO.project != ''">
                 and o.project regexp #{patchLogAddDTO.project}
@@ -223,13 +376,14 @@
     </select>
 
     <delete id="deleteReplenishMp">
-        delete from pp.patch_log where patch_id=#{patchId}
+        delete from pp.patch_log where id=#{id}
     </delete>
 
-    <update id="updatePatchDdMp">
-        update pp.damage_details set patch_status=0,quantity=quantity-#{qualityInspector}
+    <delete id="updatePatchDdMp">
+        delete from pp.damage_details
      where reporting_work_id=#{reportingWorkId} and order_number=#{orderSort} and technology_number=#{technologyNumber}
-    </update>
+        and breakage_reason=#{patchReason}
+    </delete>
 
     <update id="updatePatchBgMp">
         update pp.reporting_work_detail set patch_status=0
@@ -257,5 +411,11 @@
         update pp.patch_log set reviewer=null,review_status=0,update_time=now() where id=#{patchLog.id}
     </update>
 
+    <select id="selectProjectCount">
+        SELECT COUNT(*)
+        FROM patch_log
+        WHERE process_id= #{processId} and patch_id=#{patchId} and technology_number = #{technologyNumber}
+          and project_no IS not NULL;
+    </select>
 
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0