fix(oms):出入库预约单单号

This commit is contained in:
zhaoqing
2026-07-21 21:20:56 +08:00
parent 7bd2e0b87c
commit 496548558b
10 changed files with 62 additions and 0 deletions
@@ -649,4 +649,10 @@
<select id="getCustomerOrgCode" resultType="java.lang.String">
select ORG_CODE from "NGWL_TEST_USER".USER_SHIPPER where 1 = 1 and DEL_FLAG = 1 and USER_ID = #{id}
</select>
<select id="countByOrderNumberPrefix" resultType="java.lang.Integer" parameterType="java.lang.String">
SELECT COUNT(1)
FROM reservation_stock_in_order
WHERE in_order_number LIKE concat(#{prefix}, '%')
</select>
</mapper>