执行及取消执行;

This commit is contained in:
王奎兴
2026-06-26 10:52:57 +08:00
parent 92acdb4f20
commit ed4d6111a5
19 changed files with 928 additions and 14 deletions
@@ -629,4 +629,12 @@
and organization_name = #{organizationName}
and interface_type = #{interfaceType} limit 1
</select>
<update id="delWOrder">
update "NGWL_TEST_WMS".stock_in_order set DEL_FLAG = 2 where DEL_FLAG = 1 and in_order_number = #{inOrderNumber}
</update>
<update id="delWOrderDetail">
update "NGWL_TEST_WMS".IN_MATERIAL_DETAIL set DEL_FLAG = 2 where DEL_FLAG = 1 and in_order_number = #{inOrderNumber}
</update>
</mapper>