Browse Source

1.增加在库订单查询

single_db
pref_mail@163.com 1 year ago
parent
commit
ea560a4d08
  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

@ -678,6 +678,13 @@
<if test="par.consigneeUnit != null and par.consigneeUnit != '' ">
and ldsa.consignee_unit like concat('%',#{par.consigneeUnit},'%')
</if>
<if test="par.totalNumber !=null ">
and ldsa.total_number = #{par.totalNumber}
</if>
<if test="par.customerAddress !=null and par.customerAddress !=''">
and ldsa.customer_address like concat('%',#{par.customerAddress},'%')
</if>
</where>
</select>
<select id="selectListGrounding" resultType="com.logpm.distribution.vo.DistributionStockArticleGroundingVO">

Loading…
Cancel
Save