入库修改入库类型

This commit is contained in:
2026-03-12 14:56:28 +08:00
parent ef0c52b6df
commit 676ab34c1b
3 changed files with 34 additions and 1 deletions

View File

@@ -676,5 +676,22 @@
AND ri.cangku = #{warehouseCode}
AND ri.scene = #{sceneId}
</select>
<update id="updateInfoByBillNo">
UPDATE rk_info
<set>
<if test="operationType != null">
operation_type = #{operationType},
</if>
<if test="teamCode != null">
team_code = #{teamCode},
</if>
<if test="operator != null">
operator = #{operator},
</if>
<if test="isDelivery != null">
is_delivery = #{isDelivery},
</if>
</set>
WHERE bill_no = #{billNo}
</update>
</mapper>