Commit f8cd9c5fdc86150507363059b4d13925ccd7a511

Authored by yeqianyong
1 parent 42855bab

楚江ERP-发货计划明细列表查询调整(兼容根据发货单查询)

... ... @@ -27,6 +27,12 @@ public class QueryShipmentsPlanDetailVo extends PageVo implements BaseVo, Serial
27 27 private String planId;
28 28
29 29 /**
  30 + * 发货单ID
  31 + */
  32 + @ApiModelProperty("发货单ID")
  33 + private String shipmentsOrderId;
  34 +
  35 + /**
30 36 * 发货日期
31 37 */
32 38 @ApiModelProperty("发货日期")
... ...
... ... @@ -83,6 +83,9 @@
83 83 <if test="vo.planId != null and vo.planId != ''">
84 84 AND tb.plan_id = #{vo.planId}
85 85 </if>
  86 + <if test="vo.shipmentsOrderId != null and vo.shipmentsOrderId != ''">
  87 + AND tb.shipment_order_id = #{vo.shipmentsOrderId}
  88 + </if>
86 89 <if test="vo.shipmentsDate != null">
87 90 AND tb.shipments_date = #{vo.shipmentsDate}
88 91 </if>
... ...