Commit a6efef05 authored by joy's avatar joy

增加目的仓搜索

parent 53f5ebcb
...@@ -15,6 +15,8 @@ public class WarehouseLineSearchVO { ...@@ -15,6 +15,8 @@ public class WarehouseLineSearchVO {
private Long destCityId; private Long destCityId;
/**目的地城市*/ /**目的地城市*/
private Long destCountryId; private Long destCountryId;
/**目的仓*/
private Long destWarehouseId;
/**渠道id*/ /**渠道id*/
private Long channelId; private Long channelId;
......
...@@ -52,6 +52,9 @@ ...@@ -52,6 +52,9 @@
<if test="params.destCountryId != null and params.destCountryId != 0"> <if test="params.destCountryId != null and params.destCountryId != 0">
and ew_dest.guojia = #{params.destCountryId} and ew_dest.guojia = #{params.destCountryId}
</if> </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"> <if test="params.lineId != null and params.lineId != 0">
and ewl.id = #{params.lineId} and ewl.id = #{params.lineId}
</if> </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