新增库存列表接口,根据订单编号排序

追加入库接口逻辑修改
This commit is contained in:
2026-02-05 16:25:28 +08:00
parent 6ffafc81f4
commit 27a105b4f6
9 changed files with 170 additions and 19 deletions

View File

@@ -104,7 +104,6 @@
<select id="selectRkBillList" parameterType="RkBill" resultMap="RkBillResult">
<include refid="selectRkBillVo"/>
<where>
AND rb.is_delivery ='1'
<if test="wlType != null and wlType != ''">
AND rb.wl_type = #{wlType}
</if>
@@ -121,7 +120,7 @@
AND rb.operation_type = #{operationType}
</if>
<if test="bizTypeList != null and bizTypeList.size > 0">
<if test="bizTypeList != null and bizTypeList.size() > 0">
AND rb.biz_type IN
<foreach collection="bizTypeList" item="bt" open="(" separator="," close=")">
#{bt}