feat(delivery): 添加发货计划ID字段支持按计划查询发货单明细
- 在WmsDeliveryWaybillDetailBo中新增planId字段 - 在查询条件中增加planId过滤逻辑 - 实现根据发货计划ID查询所有关联发货单明细的功能
This commit is contained in:
@@ -263,6 +263,9 @@
|
||||
<if test="bo.unitPrice != null">
|
||||
AND d.unit_price = #{bo.unitPrice}
|
||||
</if>
|
||||
<if test="bo.planId != null">
|
||||
AND w.plan_id = #{bo.planId}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user