From 9c0dbc95b469f9f28184afa83fedaaba7a0b8d49 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期四, 12 三月 2026 13:51:43 +0800
Subject: [PATCH] erp出库作业完善 1.出库任务下发给wcs之前会先卡住,等erp发立即出库时再给wcs下发(补丁,后需要删掉) 2.给wcs自动下发出库任务 3.新增出库任务完成后上报erp接口(三次上报失败后直接转历史档这个地方有点问题)
---
src/main/resources/mapper/BasArmRulesMapper.xml | 22 +++++++++++++++++++++-
1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/BasArmRulesMapper.xml b/src/main/resources/mapper/BasArmRulesMapper.xml
index c3d5725..df06193 100644
--- a/src/main/resources/mapper/BasArmRulesMapper.xml
+++ b/src/main/resources/mapper/BasArmRulesMapper.xml
@@ -17,7 +17,7 @@
<select id="AllStatusSatisfyBasArmRules" resultMap="BaseResultMap">
- select top 10 from asr_bas_arm_rules where 1=1 and status = #{status}
+ select top 10 * from asr_bas_arm_rules where 1=1 and status = #{status}
</select>
<update id="updateStatus">
@@ -31,4 +31,24 @@
and material_weight = #{materialWeight}
</update>
+ <select id="getNumber" resultType="Integer">
+ select material_number
+ from asr_bas_arm_rules
+ where 1=1
+ and material_length = #{length}
+ and material_width = #{width}
+ and material_height = #{height}
+ and material_weight = #{weight}
+ </select>
+
+ <select id="getStatus" resultType="Integer">
+ select status
+ from asr_bas_arm_rules
+ where 1=1
+ and material_length = #{length}
+ and material_width = #{width}
+ and material_height = #{height}
+ and material_weight = #{weight}
+ </select>
+
</mapper>
--
Gitblit v1.9.1