|
|
|
@ -74,8 +74,8 @@
|
|
|
|
|
AND dbp2.packet_bar_status IN ( 1, 3 ) |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list ldpl2 ON dbp2.parce_list_id = ldpl2.id |
|
|
|
|
<where> |
|
|
|
|
1=1 |
|
|
|
|
<if test="collect != null and @org.apache.commons.collections4.CollectionUtils@isNotEmpty(collect)"> |
|
|
|
|
dbl2.is_deleted = 0 |
|
|
|
|
<if test="collect != null "> |
|
|
|
|
and dbl2.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
@ -126,16 +126,17 @@
|
|
|
|
|
dsa.storage_fee |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_lading aaa |
|
|
|
|
LEFT JOIN logpm_distrilbution_bill_stock lds ON lds.bill_lading_id = aaa.id AND lds.order status != 2 |
|
|
|
|
LEFT JOIN logpm_distrilbution_bill_stock lds ON lds.bill_lading_id = aaa.id AND lds.order_status != 2 |
|
|
|
|
LEFT JOIN logpm_distribution_stock_article dsa ON lds.stock_article_id = dsa.id |
|
|
|
|
WHERE |
|
|
|
|
aaa.is_deleted = 0 |
|
|
|
|
<if test="collect != null and @org.apache.commons.collections4.CollectionUtils@isNotEmpty(collect)"> |
|
|
|
|
and aaa.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
<where> |
|
|
|
|
aaa.is_deleted = 0 |
|
|
|
|
<if test="collect != null "> |
|
|
|
|
and aaa.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
GROUP BY |
|
|
|
|
aaa.id |
|
|
|
|
) AS k |
|
|
|
@ -155,14 +156,16 @@
|
|
|
|
|
AND lddd.is_deleted = 0 |
|
|
|
|
LEFT JOIN logpm_distribution_stock_list ldsl ON lddd.stock_list_id = ldsl.id |
|
|
|
|
LEFT JOIN logpm_basicdata_client lbc ON ldsl.market_id = lbc.id |
|
|
|
|
WHERE |
|
|
|
|
lddd.inventory_status != 2 |
|
|
|
|
<if test="collect != null and @org.apache.commons.collections4.CollectionUtils@isNotEmpty(collect)"> |
|
|
|
|
and bbb.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
<where> |
|
|
|
|
lddd.inventory_status != 2 |
|
|
|
|
<if test="collect != null "> |
|
|
|
|
and bbb.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
GROUP BY |
|
|
|
|
bbb.id |
|
|
|
|
) AS m ON m.id = k.id |
|
|
|
@ -179,7 +182,7 @@
|
|
|
|
|
<if test="param.pickUpTimeStart != null"> |
|
|
|
|
AND DATE_FORMAT(dbl.pick_up_time,'%y%m%d') BETWEEN DATE_FORMAT(#{param.pickUpTimeStart},'%y%m%d') AND DATE_FORMAT(#{param.pickUpTimeEnd},'%y%m%d') |
|
|
|
|
</if> |
|
|
|
|
<if test="collect != null and @org.apache.commons.collections4.CollectionUtils@isNotEmpty(collect)"> |
|
|
|
|
<if test="collect != null "> |
|
|
|
|
and dbl.warehouse_id in |
|
|
|
|
<foreach collection="collect" item="item" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|