Browse Source

订单增加运单收货人、收货单位搜索

single_db
汤建军 1 year ago
parent
commit
731dc0c935
  1. 7
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionStockArticleMapper.xml

7
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistributionStockArticleMapper.xml

@ -669,7 +669,12 @@
<if test="par.waybillNumber != null and par.waybillNumber != '' "> <if test="par.waybillNumber != null and par.waybillNumber != '' ">
and ldsa.waybill_number like concat('%',#{par.waybillNumber},'%') and ldsa.waybill_number like concat('%',#{par.waybillNumber},'%')
</if> </if>
<if test="par.customerName != null and par.customerName != '' ">
and ldsa.customer_name like concat('%',#{par.customerName},'%')
</if>
<if test="par.consigneeUnit != null and par.consigneeUnit != '' ">
and ldsa.consignee_unit like concat('%',#{par.consigneeUnit},'%')
</if>
</where> </where>
</select> </select>
<select id="selectListGrounding" resultType="com.logpm.distribution.vo.DistributionStockArticleGroundingVO"> <select id="selectListGrounding" resultType="com.logpm.distribution.vo.DistributionStockArticleGroundingVO">

Loading…
Cancel
Save