Browse Source

1.商配订单列表查询

training
zhenghaoyu 1 year ago
parent
commit
d9d2951293
  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,12 +725,10 @@
<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>
<if test="array != null and @org.apache.commons.collections4.CollectionUtils@isNotEmpty(array)"> and lddl.id in
and lddl.id in <foreach collection="array" item="item" open="(" close=")" separator=",">
<foreach collection="array" item="item" open="(" close=")" separator=","> #{item}
#{item} </foreach>
</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