入库调整备注;

This commit is contained in:
王奎兴
2026-08-08 11:36:58 +08:00
parent add7ef60db
commit 1c29c7e5e4
10 changed files with 174 additions and 3 deletions
@@ -609,4 +609,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
WHERE warehouse_id = #{warehouseId} AND del_flag = 1 AND organization_id = #{organizationId} AND top_organization_id = #{topOrganizationId}
</select>
<update id="updateExecution" parameterType="java.lang.String">
update NGWL_TEST_OMS.EXECUTION_STOCK_IN_ORDER
<set>
<if test="remark != null and remark != ''">NOTICE_REMARK = #{remark},</if>
update_time = sysdate()
</set>
where in_order_number = #{inOrderNumber} and del_flag = 1
</update>
</mapper>