|
|
|
@ -31,11 +31,11 @@
|
|
|
|
|
|
|
|
|
|
<select id="findFeeByDate" resultType="com.alibaba.fastjson.JSONObject"> |
|
|
|
|
select IFNULL(sum(IFNULL(x_pay,0)+IFNULL(d_pay,0)+IFNULL(y_pay,0)+IFNULL(h_pay,0)),0) fee, |
|
|
|
|
IFNULL(sum(IFNULL(total_freight,0)),0) trunklineFee, |
|
|
|
|
IFNULL(sum(IFNULL(storage_fee,0)),0) warehouseFee, |
|
|
|
|
IFNULL(sum(IFNULL(delivery_fee,0)),0) distributionFee, |
|
|
|
|
IFNULL(sum(IFNULL(pickup_fee,0)),0) billladingFee, |
|
|
|
|
IFNULL(sum(IFNULL(install_fee,0)),0) installFee |
|
|
|
|
IFNULL(sum(IFNULL(total_freight,0)),0) trunklineFee, |
|
|
|
|
IFNULL(sum(IFNULL(storage_fee,0)),0) warehouseFee, |
|
|
|
|
IFNULL(sum(IFNULL(delivery_fee,0)),0) distributionFee, |
|
|
|
|
IFNULL(sum(IFNULL(pickup_fee,0)),0) billladingFee, |
|
|
|
|
IFNULL(sum(IFNULL(install_fee,0)),0) installFee |
|
|
|
|
from logpm_warehouse_waybill |
|
|
|
|
where 1=1 |
|
|
|
|
<if test="param.startDate != null"> |
|
|
|
@ -53,11 +53,11 @@
|
|
|
|
|
|
|
|
|
|
<select id="handOrderData" resultType="com.logpm.report.vo.IndexHandOrderDataVO"> |
|
|
|
|
select IFNULL(sum(hand_quantity),0) totalNum, |
|
|
|
|
IFNULL(SUM(IF(is_zero=1,hand_quantity,0)),0) zeroNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='1',hand_quantity,0)),0) mallNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='2',hand_quantity,0)),0) cityNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='3',hand_quantity,0)),0) billNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='4',hand_quantity,0)),0) thirdTransferNum |
|
|
|
|
IFNULL(SUM(IF(is_zero=1,hand_quantity,0)),0) zeroNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='1',hand_quantity,0)),0) mallNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='2',hand_quantity,0)),0) cityNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='3',hand_quantity,0)),0) billNum, |
|
|
|
|
IFNULL(SUM(IF(type_service='4',hand_quantity,0)),0) thirdTransferNum |
|
|
|
|
from logpm_distribution_stock_article |
|
|
|
|
WHERE 1=1 |
|
|
|
|
and warehouse_id in |
|
|
|
@ -121,12 +121,13 @@
|
|
|
|
|
|
|
|
|
|
<select id="findPackageTrunklineHandOrderData" resultType="com.alibaba.fastjson.JSONObject"> |
|
|
|
|
select IFNULL(count(distinct lww.id),0) waybillNum, |
|
|
|
|
IFNULL(sum(ldpl.quantity),0) handleNum, |
|
|
|
|
IFNULL(sum(ldpl.weight),0) handleWeight, |
|
|
|
|
IFNULL(sum(ldpl.volume),0) handleVolume |
|
|
|
|
IFNULL(sum(ldpl.quantity),0) handleNum, |
|
|
|
|
IFNULL(sum(ldpl.weight),0) handleWeight, |
|
|
|
|
IFNULL(sum(ldpl.volume),0) handleVolume |
|
|
|
|
from logpm_distribution_parcel_list ldpl |
|
|
|
|
left join logpm_distribution_stock_article ldsa on ldsa.id = ldpl.stock_article_id |
|
|
|
|
left join logpm_warehouse_waybill lww on ldpl.waybill_number = lww.waybill_no and lww.departure_warehouse_id = ldpl.warehouse_id |
|
|
|
|
left join logpm_warehouse_waybill lww on ldpl.waybill_number = lww.waybill_no and lww.departure_warehouse_id = |
|
|
|
|
ldpl.warehouse_id |
|
|
|
|
where 1=1 |
|
|
|
|
and ldsa.is_zero = 0 |
|
|
|
|
and ldpl.order_package_status = '20' |
|
|
|
@ -138,11 +139,12 @@
|
|
|
|
|
|
|
|
|
|
<select id="findZeroTrunklineHandOrderData" resultType="com.alibaba.fastjson.JSONObject"> |
|
|
|
|
select IFNULL(count(distinct lww.waybill_no),0) waybillNum, |
|
|
|
|
IFNULL(sum(ldsa.hand_quantity),0) handleNum, |
|
|
|
|
0 handleWeight, |
|
|
|
|
0 handleVolume |
|
|
|
|
IFNULL(sum(ldsa.hand_quantity),0) handleNum, |
|
|
|
|
0 handleWeight, |
|
|
|
|
0 handleVolume |
|
|
|
|
from logpm_distribution_stock_article ldsa |
|
|
|
|
left join logpm_warehouse_waybill lww on lww.departure_warehouse_id = ldsa.warehouse_id and lww.waybill_no = ldsa.order_code |
|
|
|
|
left join logpm_warehouse_waybill lww on lww.departure_warehouse_id = ldsa.warehouse_id and lww.waybill_no = |
|
|
|
|
ldsa.order_code |
|
|
|
|
where 1=1 |
|
|
|
|
and ldsa.hand_quantity > 0 |
|
|
|
|
and ldsa.is_zero = 1 |
|
|
|
@ -154,9 +156,9 @@
|
|
|
|
|
|
|
|
|
|
<select id="trunklineCarsData" resultType="com.logpm.report.vo.IndexTrunklineCarsDataVO"> |
|
|
|
|
select IFNULL(count(distinct load_id),0) totalNum, |
|
|
|
|
IFNULL(sum(if(node_status = '0',1,0)),0) inTransitNum, |
|
|
|
|
IFNULL(sum(if(node_status != '0',1,0)),0) workNum, |
|
|
|
|
IFNULL(sum(if(unload_status != '0',1,0)),0) unloadNum |
|
|
|
|
IFNULL(sum(if(node_status = '0',1,0)),0) inTransitNum, |
|
|
|
|
IFNULL(sum(if(node_status != '0',1,0)),0) workNum, |
|
|
|
|
IFNULL(sum(if(unload_status != '0',1,0)),0) unloadNum |
|
|
|
|
from logpm_trunkline_cars_load_line |
|
|
|
|
where 1=1 |
|
|
|
|
and is_deleted = 0 |
|
|
|
@ -168,15 +170,15 @@
|
|
|
|
|
|
|
|
|
|
<select id="findAbnormalData" resultType="com.alibaba.fastjson.JSONObject"> |
|
|
|
|
select IFNULL(count(id),0) sendNum, |
|
|
|
|
IFNULL(sum(abnormal_status),0) dealNum |
|
|
|
|
IFNULL(sum(abnormal_status),0) dealNum |
|
|
|
|
from logpm_aftersales_abnormal_record |
|
|
|
|
where 1=1 |
|
|
|
|
<if test="param.startDate != null"> |
|
|
|
|
and create_time >= #{param.startDate} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.endDate != null"> |
|
|
|
|
<if test="param.endDate != null"> |
|
|
|
|
and create_time <= #{param.endDate} |
|
|
|
|
</if> |
|
|
|
|
</if> |
|
|
|
|
and warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
@ -192,13 +194,265 @@
|
|
|
|
|
<if test="param.startDate != null"> |
|
|
|
|
and unload_date >= #{param.startDate} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.endDate != null"> |
|
|
|
|
<if test="param.endDate != null"> |
|
|
|
|
and unload_date <= #{param.endDate} |
|
|
|
|
</if> |
|
|
|
|
</if> |
|
|
|
|
and node_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</select> |
|
|
|
|
<select id="findDeliveryTotal" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
SELECT |
|
|
|
|
type AS type, |
|
|
|
|
count( 1 ) AS totalNum |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 AND type IS NOT NULL |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
and warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
GROUP BY |
|
|
|
|
type |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingTotal" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
SELECT |
|
|
|
|
3 AS type, |
|
|
|
|
count( 1 ) |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_lading |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 |
|
|
|
|
<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="findDeLiveryTotalNum" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
sum( reservation_num + reservation_stock_list_num ) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_reservation |
|
|
|
|
<where> |
|
|
|
|
reservation_status != 40 |
|
|
|
|
AND is_deleted = 0 |
|
|
|
|
AND delivery_type = #{type} |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|
<select id="findDeliveryTotalWeight" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum( ldpl.weight ),0) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_reservation AS ldr |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldr.id = ldrp.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldpl.id = ldrp.parce_list_id |
|
|
|
|
<where> |
|
|
|
|
ldr.reservation_status != 40 |
|
|
|
|
AND ldr.is_deleted = 0 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
AND ldr.delivery_type = #{type} |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldr.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findDeliveryTotalVolume" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum( ldpl.volume ),0) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_reservation AS ldr |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldr.id = ldrp.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldpl.id = ldrp.parce_list_id |
|
|
|
|
<where> |
|
|
|
|
ldr.reservation_status != 40 |
|
|
|
|
AND ldr.is_deleted = 0 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
AND ldr.delivery_type = #{type} |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldr.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findDeLiveryTotalRoadNum" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum( ldl.package_nub ),0) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_reservation AS ldr |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package AS ldrp ON ldr.id = ldrp.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_loadscan AS ldl ON ldl.package_id = ldrp.parce_list_id |
|
|
|
|
<where> |
|
|
|
|
ldr.reservation_status != 40 |
|
|
|
|
AND ldr.is_deleted = 0 |
|
|
|
|
AND ldrp.packet_bar_status != 2 |
|
|
|
|
AND ldl.signfor_state = 1 |
|
|
|
|
AND ldl.is_deleted = 0 |
|
|
|
|
AND ldr.delivery_type = #{type} |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldr.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingTotalNum" resultType="java.lang.Integer"> |
|
|
|
|
SELECT |
|
|
|
|
count(1) AS num |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_package AS ldbp |
|
|
|
|
LEFT JOIN logpm_distrilbution_bill_lading AS ldbl ON ldbp.bill_lading_id = ldbl.id |
|
|
|
|
<where> |
|
|
|
|
ldbp.packet_bar_status != 2 |
|
|
|
|
AND ldbp.is_deleted = 0 |
|
|
|
|
AND ldbl.is_deleted = 0 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldbl.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingTotalWeight" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.weight),0) AS weight |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_package AS ldbp |
|
|
|
|
LEFT JOIN logpm_distrilbution_bill_lading AS ldbl ON ldbp.bill_lading_id = ldbl.id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldpl.id = ldbp.parce_list_id |
|
|
|
|
<where> |
|
|
|
|
ldbp.packet_bar_status != 2 |
|
|
|
|
AND ldbp.is_deleted = 0 |
|
|
|
|
AND ldbl.is_deleted = 0 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldbl.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findBillLadingTotalVolume" resultType="java.math.BigDecimal"> |
|
|
|
|
SELECT |
|
|
|
|
IFNULL(sum(ldpl.volume),0) AS volume |
|
|
|
|
FROM |
|
|
|
|
logpm_distrilbution_bill_package AS ldbp |
|
|
|
|
LEFT JOIN logpm_distrilbution_bill_lading AS ldbl ON ldbp.bill_lading_id = ldbl.id |
|
|
|
|
LEFT JOIN logpm_distribution_parcel_list AS ldpl ON ldpl.id = ldbp.parce_list_id |
|
|
|
|
<where> |
|
|
|
|
ldbp.packet_bar_status != 2 |
|
|
|
|
AND ldbp.is_deleted = 0 |
|
|
|
|
AND ldbl.is_deleted = 0 |
|
|
|
|
<if test="param.warehouseIds != null"> |
|
|
|
|
AND ldbl.warehouse IN |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
</select> |
|
|
|
|
<select id="findTripartiteTotal" resultType="com.logpm.report.vo.indexCount.IndexDeliveryDataVO"> |
|
|
|
|
SELECT |
|
|
|
|
4 AS type, |
|
|
|
|
count( 1 ) AS totalNum |
|
|
|
|
FROM |
|
|
|
|
logpm_distribution_delivery_list |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 AND type IS NOT NULL |
|
|
|
|
AND kind = 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="findTripartiteTotalNum" 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 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="findTripartiteTotalWeight" 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 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="findTripartiteTotalVolume" 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 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> |
|
|
|
|
|
|
|
|
|
</mapper> |
|
|
|
|