From f60327c377097f67ed42c349bda2a54c3147b7be Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期四, 07 三月 2024 16:35:45 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/src/main/resources/mapper/pp/WordOrder.xml | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/north-glass-erp/src/main/resources/mapper/pp/WordOrder.xml b/north-glass-erp/src/main/resources/mapper/pp/WordOrder.xml
index ab55593..471389d 100644
--- a/north-glass-erp/src/main/resources/mapper/pp/WordOrder.xml
+++ b/north-glass-erp/src/main/resources/mapper/pp/WordOrder.xml
@@ -132,13 +132,13 @@
;
</select>
- <select id="SelectOrderNumber" >
+ <select id="selectOrderNumber" >
select ifnull(count(ogd.production_id),0)
from sd.order_glass_detail as ogd
where ogd.production_id = #{productIdVl}
</select>
- <update id="AddOrderWorkMp" >
+ <update id="addOrderWorkMp" >
update sd.order_detail as od left join sd.order_glass_detail as ogd
on od.order_id = ogd.order_id and od.order_number = ogd.order_number
@@ -152,7 +152,7 @@
</update>
<!-- 鍒犻櫎宸ュ崟-->
- <update id="DeleteOrderWorkMp">
+ <update id="deleteOrderWorkMp">
update sd.order_detail as od left join sd.order_glass_detail as ogd
on od.order_id = ogd.order_id and od.order_number = ogd.order_number
set ogd.production_id=null,
@@ -162,20 +162,20 @@
and od.product_name = #{productName}
</update>
- <select id="SelectWorkCount">
+ <select id="selectWorkCount">
select COUNT(distinct order_number)
from order_glass_detail
where ISNULL(production_id)
and order_id = #{orderId}
</select>
- <select id="SelectYesWorkCount">
+ <select id="selectYesWorkCount">
select COUNT(distinct order_number)
from order_glass_detail
where order_id = #{orderId}
</select>
- <update id="UpdateWorkType">
+ <update id="updateWorkType">
update sd.order as o set o.production_order=#{state} where o.order_id=#{orderId}
</update>
</mapper>
\ No newline at end of file
--
Gitblit v1.8.0