Commit 8c3b69ea authored by 332784038@qq.com's avatar 332784038@qq.com

Merge remote-tracking branch 'origin/master-shw' into dev

parents ddce604f a6efef05
......@@ -15,6 +15,8 @@ public class WarehouseLineSearchVO {
private Long destCityId;
/**目的地城市*/
private Long destCountryId;
/**目的仓*/
private Long destWarehouseId;
/**渠道id*/
private Long channelId;
......
......@@ -52,6 +52,9 @@
<if test="params.destCountryId != null and params.destCountryId != 0">
and ew_dest.guojia = #{params.destCountryId}
</if>
<if test="params.destWarehouseId != null and params.destWarehouseId != 0">
and ewl.dest_warehouse_id = #{params.destWarehouseId}
</if>
<if test="params.lineId != null and params.lineId != 0">
and ewl.id = #{params.lineId}
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment