Commit a6efef05 authored by joy's avatar joy

增加目的仓搜索

parent 53f5ebcb
......@@ -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