From b0c60452329a61c32db74a1c7d7753d383d6310a Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期五, 05 九月 2025 08:20:53 +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 | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 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 e6b0814..d69806f 100644
--- a/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml
+++ b/north-glass-erp/src/main/resources/mapper/pp/PatchLogMapper.xml
@@ -26,8 +26,8 @@
ogd.glass_address,
ogd.glass_child,
r.patch_num,
- od.width,
- od.height,
+ ogd.child_width as width,
+ ogd.child_height as height,
od.shape,
r.patch_type,
r.patch_reason,
@@ -82,10 +82,10 @@
and r.quality_inspector regexp #{patchLog.qualityInspector}
</if>
<if test="patchLog.width != null and patchLog.width != ''">
- and od.width regexp #{patchLog.width}
+ and ogd.child_width regexp REGEXP_REPLACE(#{patchLog.width},'\\.0+$','')
</if>
<if test="patchLog.height != null and patchLog.height != ''">
- and od.height regexp #{patchLog.height}
+ and ogd.child_height regexp REGEXP_REPLACE(#{patchLog.height},'\\.0+$','')
</if>
<if test="patchLog.shape != null and patchLog.shape != ''">
and od.shape regexp #{patchLog.shape}
@@ -175,10 +175,10 @@
and r.quality_inspector regexp #{patchLog.qualityInspector}
</if>
<if test="patchLog.width != null and patchLog.width != ''">
- and od.width regexp #{patchLog.width}
+ and ogd.child_width regexp REGEXP_REPLACE(#{patchLog.width},'\\.0+$','')
</if>
<if test="patchLog.height != null and patchLog.height != ''">
- and od.height regexp #{patchLog.height}
+ and ogd.child_height regexp REGEXP_REPLACE(#{patchLog.height},'\\.0+$','')
</if>
<if test="patchLog.shape != null and patchLog.shape != ''">
and od.shape regexp #{patchLog.shape}
@@ -293,8 +293,8 @@
dd.technology_number as technologyNumber,
ogd.glass_address as glassAddress,
dd.breakage_quantity-dd.quantity as patchNum,
- od.width,
- od.height,
+ ogd.child_width as width,
+ ogd.child_height as height,
od.shape,
dd.responsible_process as responsibleProcess,
rw.this_process as patchProcesses,
@@ -352,10 +352,10 @@
and rw.quality_inspector regexp #{patchLogAddDTO.qualityInspector}
</if>
<if test="patchLogAddDTO.width != null and patchLogAddDTO.width != ''">
- and od.width regexp #{patchLogAddDTO.width}
+ and ogd.child_width regexp REGEXP_REPLACE(#{patchLogAddDTO.width},'\\.0+$','')
</if>
<if test="patchLogAddDTO.height != null and patchLogAddDTO.height != ''">
- and od.height regexp #{patchLogAddDTO.height}
+ and ogd.child_height regexp REGEXP_REPLACE(#{patchLogAddDTO.height},'\\.0+$','')
</if>
<if test="patchLogAddDTO.shape != null and patchLogAddDTO.shape != ''">
and od.shape regexp #{patchLogAddDTO.shape}
--
Gitblit v1.8.0