Browse Source

Merge branch 'dev' into pre-production

newStockUp
zhenghaoyu 1 year ago
parent
commit
6f25b49056
  1. 10
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionDeliveryListMapper.xml

10
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionDeliveryListMapper.xml

@ -725,10 +725,12 @@
<where> <where>
lddl.is_deleted =0 lddl.is_deleted =0
<if test=" param.type != null and param.type != ''">and lddl.type = #{param.type}</if> <if test=" param.type != null and param.type != ''">and lddl.type = #{param.type}</if>
and lddl.id in <if test=" array != null ">
<foreach collection="array" item="item" open="(" close=")" separator=","> and lddl.id in
#{item} <foreach collection="array" item="item" open="(" close=")" separator=",">
</foreach> #{item}
</foreach>
</if>
<if test="param.createTime_query!=null and param.createTime_query!=''"> <if test="param.createTime_query!=null and param.createTime_query!=''">
and date_format(lddl.create_time,'%y%m%d%') = date_format(#{param.createTime_query},'%y%m%d%') and date_format(lddl.create_time,'%y%m%d%') = date_format(#{param.createTime_query},'%y%m%d%')
</if> </if>

Loading…
Cancel
Save