From c049ebf81d6f27cbd16647ee1e0b013fe4e753d6 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期二, 30 七月 2024 08:22:45 +0800
Subject: [PATCH] 修改成品入库记录增加箱号
---
north-glass-erp/src/main/resources/mapper/sd/OrderMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/resources/mapper/sd/OrderMapper.xml b/north-glass-erp/src/main/resources/mapper/sd/OrderMapper.xml
index be5d178..2960472 100644
--- a/north-glass-erp/src/main/resources/mapper/sd/OrderMapper.xml
+++ b/north-glass-erp/src/main/resources/mapper/sd/OrderMapper.xml
@@ -148,6 +148,9 @@
<if test="order.warehousing != null ">
and o.warehousing = #{order.warehousing}
</if>
+ <if test="order.processingNote != null and order.processingNote != ''">
+ and o.processing_note REGEXP #{order.processingNote}
+ </if>
group by o.id
order by o.id desc
limit #{offset},#{pageSize}
@@ -233,6 +236,9 @@
<if test="order.warehousing != null ">
and o.warehousing = #{order.warehousing}
</if>
+ <if test="order.processingNote != null and order.processingNote != ''">
+ and o.processing_note REGEXP #{order.processingNote}
+ </if>
order by o.id desc
</select>
--
Gitblit v1.8.0