|
|
|
@ -374,7 +374,7 @@
|
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotal" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
<select id="findTripartiteTotalByMerchant" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
SELECT |
|
|
|
|
4 AS type, |
|
|
|
|
count( 1 ) AS totalNum |
|
|
|
@ -383,6 +383,7 @@
|
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 AND type IS NOT NULL |
|
|
|
|
AND kind = 2 |
|
|
|
|
AND type = 1 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
@ -392,7 +393,26 @@
|
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalNum" resultType="java.lang.Integer"> |
|
|
|
|
<select id="findTripartiteTotalByCity" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
SELECT |
|
|
|
|
5 AS type, |
|
|
|
|
count( 1 ) AS totalNum |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 AND type IS NOT NULL |
|
|
|
|
AND kind = 2 |
|
|
|
|
AND type = 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalNumByMerchant" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count(ldrp.id) |
|
|
|
|
FROM |
|
|
|
@ -403,6 +423,7 @@
|
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 1 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
@ -412,7 +433,50 @@
|
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalWeight" resultType="java.math.BigDecimal"> |
|
|
|
|
<select id="findTripartiteTotalNumByCity" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count(ldrp.id) |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list AS lddl |
|
|
|
|
LEFT JOIN logpm_distribution_signfor AS lds ON lddl.id = lds.delivery_id |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldrp.reservation_id = lds.reservation_id |
|
|
|
|
<where> |
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 2 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalWeightByMerchant" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.weight),0) AS weight |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list AS lddl |
|
|
|
|
LEFT JOIN logpm_distribution_signfor AS lds ON lddl.id = lds.delivery_id |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldrp.reservation_id = lds.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldrp.parce_list_id = ldpl.id |
|
|
|
|
<where> |
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 1 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalWeightByCity" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.weight),0) AS weight |
|
|
|
|
FROM |
|
|
|
@ -424,6 +488,29 @@
|
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 2 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalVolumeByMerchant" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.volume),0) AS volume |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list AS lddl |
|
|
|
|
LEFT JOIN logpm_distribution_signfor AS lds ON lddl.id = lds.delivery_id |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldrp.reservation_id = lds.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldrp.parce_list_id = ldpl.id |
|
|
|
|
<where> |
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 1 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
@ -433,7 +520,7 @@
|
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotalVolume" resultType="java.math.BigDecimal"> |
|
|
|
|
<select id="findTripartiteTotalVolumeByCity" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.volume),0) AS volume |
|
|
|
|
FROM |
|
|
|
@ -445,6 +532,7 @@
|
|
|
|
|
lddl.is_deleted = 0 |
|
|
|
|
AND lddl.type IS NOT NULL |
|
|
|
|
AND lddl.kind = 2 |
|
|
|
|
AND lddl.type = 2 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and lddl.warehouse_id in |
|
|
|
@ -671,5 +759,81 @@
|
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingSignforByDay" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count( 1 ) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_bill_lading_scan |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 |
|
|
|
|
AND DATE_FORMAT( create_time, '%y%m%d' ) = DATE_FORMAT( |
|
|
|
|
#{param.dayStr}, |
|
|
|
|
'%y%m%d') |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND warehouse_id |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="in (" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="findBillLadingSignforByMonth" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count( 1 ) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_bill_lading_scan |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 |
|
|
|
|
AND DATE_FORMAT( create_time, '%y%m' ) = DATE_FORMAT( |
|
|
|
|
#{param.dayStr}, |
|
|
|
|
'%y%m') |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND warehouse_id |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="in (" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="findBillLadingUnSignforByDay" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count( 1 ) |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_package AS ldbp |
|
|
|
|
INNER JOIN logpm_distribution_parcel_list AS ldpl ON ldbp.parce_list_id = ldpl.id |
|
|
|
|
<where> |
|
|
|
|
ldbp.is_deleted = 0 |
|
|
|
|
AND ldpl.order_package_status != 70 |
|
|
|
|
AND DATE_FORMAT( ldbp.create_time, '%y%m%d' ) = DATE_FORMAT( #{param.dayStr}, '%y%m%d' ) |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldpl.warehouse_id |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="in (" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingUnSignforByMonth" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count( 1 ) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_package AS ldbp |
|
|
|
|
INNER JOIN logpm_distribution_parcel_list AS ldpl ON ldbp.parce_list_id = ldpl.id |
|
|
|
|
<where> |
|
|
|
|
ldbp.is_deleted = 0 |
|
|
|
|
AND ldpl.order_package_status != 70 |
|
|
|
|
AND DATE_FORMAT( ldbp.create_time, '%y%m' ) = DATE_FORMAT( #{param.dayStr}, '%y%m' ) |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldpl.warehouse_id |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="in (" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper> |
|
|
|
|