From 0d91c32f348565109b40c5e1c516bfdd28538bd3 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 02 七月 2024 11:50:17 +0800
Subject: [PATCH] 补充语言,修改成品标签打印

---
 north-glass-erp/src/main/resources/mapper/sd/DeliveryMapper.xml |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/sd/DeliveryMapper.xml b/north-glass-erp/src/main/resources/mapper/sd/DeliveryMapper.xml
index 587b1e5..bc3dad1 100644
--- a/north-glass-erp/src/main/resources/mapper/sd/DeliveryMapper.xml
+++ b/north-glass-erp/src/main/resources/mapper/sd/DeliveryMapper.xml
@@ -216,6 +216,19 @@
         </where>
     </select>
 
+    <select id="getSelectShippingOrderDetailPrinting" >
+        select
+        d.order_id,d.quantity,d.money,d.area,d.project,
+        d.customer_id,d.customer_name,d.creator,d.salesman,d.salesman_id
+        from sd.`order` d
+        <where>
+            <if test="orderDetail.orderId != null and orderDetail.orderId != ''">
+                and d.order_id like concat('%',#{orderDetail.orderId},'%')
+            </if>
+
+        </where>
+    </select>
+
 
     <select id="getSelectShippingOrderDetailDeliverys" >
         select customer_id,customer_name,project,salesman,salesman_id,contacts,contact_number,delivery_address from sd.`order`

--
Gitblit v1.8.0