From 42f7c874cc8b5d4a5f0d2b9b71cc120f81e9e80a Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 15 七月 2024 12:13:41 +0800
Subject: [PATCH] 添加补片打印,修改流程卡打印为可勾选订单编辑
---
north-glass-erp/src/main/resources/mapper/pp/ProductionScheduling.xml | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/north-glass-erp/src/main/resources/mapper/pp/ProductionScheduling.xml b/north-glass-erp/src/main/resources/mapper/pp/ProductionScheduling.xml
index fdd147d..17de88e 100644
--- a/north-glass-erp/src/main/resources/mapper/pp/ProductionScheduling.xml
+++ b/north-glass-erp/src/main/resources/mapper/pp/ProductionScheduling.xml
@@ -68,7 +68,8 @@
ps.reviewer,
od.product_name,
if(od.shape=1,'鏅舰',if(od.shape=2,'寮傚舰','')) as shape,
- ps.scheduling_id
+ ps.scheduling_id,
+ ps.notes
from sd.order_detail as od
left join sd.order as o on od.order_id = o.order_id
left join production_scheduling as ps
@@ -195,7 +196,9 @@
<update id="examineSchedulingMp">
update production_scheduling
set review_status=1,
- reviewer=#{userName}
+ reviewer=#{userName},
+ scheduling_quantity=#{schedulingQuantity},
+ notes=#{notes}
where scheduling_id = #{schedulingId}
</update>
--
Gitblit v1.8.0