<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.ruoyi.order.mapper.TChargingOrderMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="com.ruoyi.order.api.model.TChargingOrder">
|
<id column="id" property="id" />
|
<result column="code" property="code" />
|
<result column="order_type" property="orderType" />
|
<result column="order_classification" property="orderClassification" />
|
<result column="app_user_id" property="appUserId" />
|
<result column="app_user_car_id" property="appUserCarId" />
|
<result column="site_id" property="siteId" />
|
<result column="parking_lot_id" property="parkingLotId" />
|
<result column="charging_pile_id" property="chargingPileId" />
|
<result column="charging_gun_id" property="chargingGunId" />
|
<result column="charging_capacity" property="chargingCapacity"/>
|
<result column="charging_power" property="chargingPower"/>
|
<result column="start_time" property="startTime" />
|
<result column="end_time" property="endTime" />
|
<result column="status" property="status" />
|
<result column="end_mode" property="endMode"/>
|
<result column="recharge_amount" property="rechargeAmount" />
|
<result column="recharge_payment_type" property="rechargePaymentType" />
|
<result column="recharge_payment_status" property="rechargePaymentStatus" />
|
<result column="recharge_serial_number" property="rechargeSerialNumber" />
|
<result column="residual_amount" property="residualAmount" />
|
<result column="order_amount" property="orderAmount" />
|
<result column="app_coupon_id" property="appCouponId" />
|
<result column="coupon_discount_amount" property="couponDiscountAmount" />
|
<result column="vip_discount" property="vipDiscount" />
|
<result column="vip_discount_amount" property="vipDiscountAmount" />
|
<result column="payment_amount" property="paymentAmount" />
|
<result column="refund_code" property="refundCode" />
|
<result column="refund_amount" property="refundAmount" />
|
<result column="refund_status" property="refundStatus" />
|
<result column="refund_serial_number" property="refundSerialNumber" />
|
<result column="refund_time" property="refundTime" />
|
<result column="need_elec" property="needElec" />
|
<result column="create_time" property="createTime" />
|
<result column="del_flag" property="delFlag" />
|
<result column="total_electricity" property="totalElectricity" />
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
id, code, order_type, order_classification, app_user_id, app_user_car_id,site_id, parking_lot_id, charging_pile_id, charging_gun_id,
|
start_time, end_time, status, recharge_amount, recharge_payment_type, recharge_payment_status, recharge_serial_number,
|
order_amount, app_coupon_id, coupon_discount_amount, vip_discount, vip_discount_amount, payment_amount, refund_code,
|
refund_amount, refund_status, refund_serial_number, refund_time, create_time, del_flag,need_elec,total_electricity
|
</sql>
|
|
|
<select id="getMyChargingOrderList" resultMap="BaseResultMap">
|
select * from t_charging_order where del_flag = 0 and app_user_id = #{appUserId} and recharge_payment_status = 2
|
<if test="1 == type">
|
and id not in (select order_id from t_order_evaluate where order_type = 1 and app_user_id = #{appUserId} and del_flag = 0)
|
</if>
|
order by create_time desc
|
<if test="null != pageCurr and null != pageSize">
|
limit #{pageCurr}, #{pageSize}
|
</if>
|
</select>
|
<select id="getNoInvoicedOrder" resultMap="BaseResultMap">
|
select * from t_charging_order where del_flag = 0 and status = 5 and recharge_payment_status = 2 and payment_amount is not null and app_user_id = #{appUserId}
|
<if test="null != month and '' != month">
|
and DATE_FORMAT(end_time, '%Y-%m') = #{month}
|
</if>
|
and id not in (select order_id from t_order_invoice_detail where order_type = 1)
|
order by create_time desc
|
<if test="null != pageCurr and null != pageSize">
|
limit #{pageCurr}, #{pageSize}
|
</if>
|
</select>
|
|
<select id="chargingOrder" resultType="com.ruoyi.order.api.vo.ChargingOrderVO">
|
select t1.*
|
from t_charging_order t1
|
where t1.del_flag = 0
|
<if test="null != req.code and req.code!=''">
|
and t1.code LIKE CONCAT('%',#{req.code},'%')
|
</if>
|
<if test="null != req.userIds and req.userIds.size()>0" >
|
and t1.app_user_id in
|
<foreach collection="req.userIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="null != req.siteIds and req.siteIds.size()>0" >
|
and t1.site_id in
|
<foreach collection="req.siteIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="req.orderType != null ">
|
and t1.order_type = #{req.orderType}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 1 ">
|
and (t1.order_source = 0 or t1.order_source = 1 )
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 2 ">
|
and t1.tripartite_platform_name = 'KuaiDian'
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 3 ">
|
and t1.tripartite_platform_name = 'XinDianTu'
|
</if>
|
<if test="req.siteId != null ">
|
and t1.site_id = #{req.siteId}
|
</if>
|
<if test="req.pileId != null ">
|
and t1.charging_pile_id = #{req.pileId}
|
</if>
|
<if test="req.gunId != null ">
|
and t1.charging_gun_id = #{req.gunId}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.pay_time between #{startTime1} and #{startTime2})
|
</if>
|
<if test="endTime1 != null and endTime1!=''">
|
and (t1.end_time between #{endTime1} and #{endTime2})
|
</if>
|
and t1.del_flag = 0
|
order by t1.create_time desc
|
</select>
|
<select id="payOrderQuery" resultType="com.ruoyi.order.dto.PayOrderDto">
|
SELECT o.*,i.phone FROM (SELECT
|
a.id,
|
a.`code`,
|
1 as type,
|
a.title,
|
a.`status`,
|
a.recharge_amount as order_amount,
|
a.recharge_amount as payment_amount ,
|
a.create_time,
|
a.end_time,
|
a.pay_time,
|
b.refund_status as refund_status,
|
(a.recharge_amount-a.refund_amount) as final_amount,
|
a.del_flag,
|
a.app_user_id
|
FROM
|
charging_pile_order.t_charging_order a
|
left join charging_pile_order.t_charging_order_refund b on (b.charging_order_id = a.id)
|
where a.recharge_payment_status = 2
|
UNION ALL
|
SELECT
|
a.id,
|
a.`code`,
|
2 as type,
|
a.title,
|
a.`status`,
|
a.order_amount,
|
a.payment_amount ,
|
a.create_time,
|
a.receiving_time as end_time,
|
a.pay_time,
|
b.refund_status as refund_status,
|
(a.payment_amount-a.refund_amount) as final_amount,
|
a.del_flag,
|
a.app_user_id
|
FROM
|
charging_pile_order.t_shopping_order a
|
left join charging_pile_order.t_shopping_order_refund b on (b.shopping_order_id = a.id)
|
where a.payment_status = 2
|
UNION ALL
|
SELECT
|
a.id,
|
a.`code`,
|
3 as type,
|
a.title,
|
a.payment_status AS `status`,
|
a.order_amount,
|
a.payment_amount ,
|
a.create_time,
|
a.create_time as end_time,
|
a.pay_time,
|
b.refund_status as refund_status,
|
(a.payment_amount-a.refund_amount) as final_amount,
|
a.del_flag,
|
a.app_user_id
|
FROM
|
charging_pile_order.t_vip_order a
|
left join charging_pile_order.t_vip_order_refund b on (a.id = b.vip_order_id)
|
where a.payment_status = 2
|
UNION ALL
|
SELECT
|
id,
|
`code`,
|
4 as type,
|
title,
|
`status`,
|
order_amount ,
|
order_amount as payment_amount,
|
create_time,
|
out_parking_time as end_time,
|
out_parking_time as pay_time,
|
null as refund_status,
|
0 as final_amount,
|
0 as del_flag,
|
app_user_id
|
FROM
|
charging_pile_service.t_parking_record ) o
|
LEFT JOIN `charging_pile_account`.`t_app_user` i on o.app_user_id = i.id
|
<where>
|
o.del_flag = 0
|
|
<if test="data.code != null and data.code != ''">
|
AND o.code LIKE CONCAT('%',#{data.code},'%')
|
</if>
|
<if test="data.phone != null and data.phone != ''">
|
AND i.phone LIKE CONCAT('%',#{data.phone},'%')
|
</if>
|
<if test="data.type != null">
|
AND o.type = #{data.type}
|
</if>
|
<if test="data.createTime1 != null">
|
AND o.create_time >= #{data.createTime1}
|
</if>
|
<if test="data.createTime2 != null">
|
AND o.create_time <= #{data.createTime2}
|
</if>
|
<if test="data.ids != null and data.ids.size() > 0">
|
AND o.id IN
|
<foreach collection="data.ids" item="id" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</if>
|
<if test="data.isRefund == 1">
|
AND o.refund_status is not null
|
</if>
|
<if test="data.isRefund == 2">
|
AND o.refund_status is null
|
</if>
|
|
</where>
|
ORDER BY o.create_time desc
|
|
</select>
|
<select id="getRefundList" resultType="com.ruoyi.order.api.model.TChargingOrderRefund">
|
select * from (
|
SELECT
|
re.id,
|
re.`code`,
|
re.refund_code,
|
re.refund_title,
|
re.refund_reason,
|
re.refund_amount,
|
re.refund_total_amount,
|
re.refund_time,
|
re.pay_type,
|
re.pay_amount,
|
re.refund_remark,
|
co.recharge_serial_number as serail_number,
|
co.payment_amount,
|
co.create_time as pay_time,
|
co.id as order_id,
|
co.app_user_id as user_id,
|
1 as type
|
FROM t_charging_order_refund re
|
LEFT JOIN t_charging_order co ON re.charging_order_id = co.id
|
UNION ALL
|
SELECT
|
re.id,
|
re.`code`,
|
re.refund_code,
|
re.refund_title,
|
re.refund_reason,
|
re.refund_amount,
|
re.refund_total_amount,
|
re.refund_time,
|
re.pay_type,
|
re.pay_amount,
|
re.refund_remark,
|
so.serial_number,
|
so.payment_amount,
|
so.create_time as pay_time,
|
so.id as order_id,
|
so.app_user_id as user_id,
|
2 as type
|
FROM t_shopping_order_refund re
|
LEFT JOIN t_shopping_order so on re.shopping_order_id = so.id
|
UNION ALL
|
SELECT
|
vr.id,
|
vr.`code`,
|
vr.refund_code,
|
vr.refund_title,
|
vr.refund_reason,
|
vr.refund_amount,
|
vr.refund_total_amount,
|
vr.refund_time,
|
vr.pay_type,
|
vr.pay_amount,
|
vr.refund_remark,
|
vo.serial_number,
|
vo.payment_amount,
|
vo.create_time as pay_time,
|
vo.id as order_id,
|
vo.app_user_id as user_id,
|
3 as type
|
FROM t_vip_order_refund vr
|
LEFT JOIN t_vip_order vo on vr.vip_order_id = vo.id
|
) o
|
<where>
|
<if test="data.code != null and data.code != ''">
|
AND o.code LIKE CONCAT('%',#{data.code},'%')
|
</if>
|
<if test="data.refundCode != null and data.refundCode != ''">
|
AND o.refund_code LIKE CONCAT('%',#{data.refundCode},'%')
|
</if>
|
</where>
|
order by o.refund_time desc
|
|
</select>
|
<select id="chargingOrderGroup" resultType="com.ruoyi.common.core.dto.ChargingOrderGroup">
|
SELECT SUM(tc.charging_capacity) as charging_capacity,tc.site_id
|
FROM t_charging_order tc
|
left join `charging_pile_service`.`t_site` ts on tc.site_id = ts.id
|
<where>
|
<if test="chargingPercentProvinceDto.date1 != null">
|
AND tc.create_time >= #{chargingPercentProvinceDto.date1}
|
</if>
|
<if test="chargingPercentProvinceDto.date2 != null">
|
AND tc.create_time <= #{chargingPercentProvinceDto.date2}
|
</if>
|
<if test="chargingPercentProvinceDto.provinceCode != null">
|
AND ts.province_code = #{chargingPercentProvinceDto.provinceCode}
|
</if>
|
<if test="chargingPercentProvinceDto.siteIds != null and chargingPercentProvinceDto.siteIds.size() > 0">
|
AND site_id IN
|
<foreach collection="chargingPercentProvinceDto.siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY site_id
|
|
|
|
</select>
|
<select id="charge" resultType="com.ruoyi.order.dto.SixChargingDto">
|
SELECT
|
DATE_FORMAT( subquery.create_time, '%m' ) AS MONTH,
|
SUM(electrovalence) AS electrovalence,
|
SUM(
|
CASE
|
WHEN subquery.order_source = 0 THEN subquery.service_charge
|
WHEN subquery.order_source = 1 THEN subquery.service_charge
|
ELSE subquery.service_charge * 0.8
|
END
|
) AS service_charge
|
|
FROM
|
(
|
SELECT
|
a.create_time,
|
b.period_electric_price as electrovalence,
|
b.period_service_price as service_charge,
|
a.order_source
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.recharge_payment_status = 2 and a.status = 5
|
<if test="sixBefore != null">
|
AND a.create_time >= #{sixBefore}
|
</if>
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND a.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
</where>
|
) AS subquery
|
GROUP BY
|
DATE_FORMAT( subquery.create_time, '%m' )
|
|
|
</select>
|
<select id="circle" resultType="com.ruoyi.order.dto.SixCircleDto">
|
SELECT
|
site_id as siteId,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymentAmount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.recharge_payment_status = 2 and a.status = 5
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND a.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="sixBefore != null">
|
AND create_time >= #{sixBefore}
|
</if>
|
</where>
|
GROUP BY a.site_id
|
|
|
</select>
|
<select id="countAll" resultType="java.util.Map">
|
select sum(electrovalence) as electrovalence,sum(service_charge) as service_charge,ROUND(sum(electrovalence+service_charge) * 0.006, 2) as commission_amount,sum(sharing_amount) as sharing_amount
|
from t_charging_order
|
where del_flag = 0 and recharge_payment_status = 2 and status = 5
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
</select>
|
<select id="getSumByType" resultType="java.util.Map">
|
SELECT
|
t1.type,
|
SUM( t1.charging_capacity ) as charging_capacity ,
|
SUM(
|
CASE
|
WHEN t2.order_source = 0 THEN t1.period_service_price
|
WHEN t2.order_source = 1 THEN t1.period_service_price
|
ELSE t1.period_service_price * 0.8
|
END
|
)as period_electric_price,
|
SUM(t1.period_electric_price) as total_amount,
|
SUM(CASE
|
WHEN t2.order_source = 0 THEN 0
|
WHEN t2.order_source = 1 THEN 0
|
ELSE t1.period_service_price * 0.2
|
END) AS commissionAmount,
|
t2.order_source
|
FROM
|
t_charging_order_accounting_strategy t1
|
LEFT JOIN t_charging_order t2 on t1.charging_order_id = t2.id
|
where t2.del_flag = 0 and t2.status = 5 and t2.recharge_payment_status = 2 and t2.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and t2.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
GROUP BY
|
t1.type, t2.order_source
|
</select>
|
<select id="getDateData" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT(a.create_time, '%H:00' ) as time,
|
SUM(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
SUM(a.charging_capacity) as electrovalence,
|
SUM(a.electrovalence) AS paymentAmount,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymoney,
|
count(1) as orderCount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and DATE(a.create_time) = CURDATE()
|
and a.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and a.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY
|
time
|
ORDER BY
|
time
|
|
</select>
|
<select id="getWeekData" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT(a.create_time, '%Y-%m-%d' ) as time,
|
SUM(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
SUM(a.charging_capacity) as electrovalence,
|
SUM(a.electrovalence) AS paymentAmount,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymoney,
|
count(1) as orderCount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and YEARWEEK(DATE_FORMAT(a.create_time, '%Y-%m-%d'), 1) = YEARWEEK(NOW(), 1)
|
and a.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and a.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY
|
time
|
ORDER BY
|
time
|
|
</select>
|
<select id="getMonthData" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT(a.create_time, '%Y-%m-%d' ) as time,
|
SUM(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
SUM(a.charging_capacity) as electrovalence,
|
SUM(a.electrovalence) AS paymentAmount,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymoney,
|
count(1) as orderCount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and MONTH(a.create_time) = MONTH(NOW()) AND YEAR(a.create_time) = YEAR(NOW())
|
and a.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and a.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY
|
time
|
ORDER BY
|
time
|
|
</select>
|
<select id="getYearData" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT(a.create_time, '%Y-%m-%d' ) as time,
|
SUM(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
SUM(a.charging_capacity) as electrovalence,
|
SUM(a.electrovalence) AS paymentAmount,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymoney,
|
count(1) as orderCount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and YEAR(a.create_time) = YEAR(NOW())
|
and a.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and a.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY
|
time
|
ORDER BY
|
time
|
</select>
|
<select id="getByDate" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT(a.create_time, '%Y-%m-%d' ) as time,
|
SUM(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
SUM(a.charging_capacity) as electrovalence,
|
SUM(a.electrovalence) AS paymentAmount,
|
ROUND(SUM(CASE
|
WHEN a.order_source = 0 THEN b.money
|
WHEN a.order_source = 1 THEN b.money
|
ELSE (b.period_electric_price + b.period_service_price * 0.8)
|
END), 2) AS paymoney,
|
count(1) as orderCount
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
<where>
|
a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2
|
and a.create_time between #{start} and #{end}
|
<if test="null != siteIds and siteIds.size() > 0">
|
and a.site_id in
|
<foreach collection="siteIds" separator="," open="(" close=")" item="item" index="index">
|
#{item}
|
</foreach>
|
</if>
|
</where>
|
GROUP BY
|
time
|
ORDER BY
|
time
|
|
</select>
|
<select id="queryPower" resultType="java.util.Map">
|
SELECT
|
'today' AS data_type,
|
DATE_FORMAT(create_time, '%H') AS TIME,
|
SUM(power) AS power
|
FROM
|
t_charging_order
|
WHERE
|
del_flag = 0
|
AND recharge_payment_status = 2
|
AND DATE(create_time) = CURDATE()
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
GROUP BY
|
TIME
|
|
UNION ALL
|
|
SELECT
|
'yesterday' AS data_type,
|
DATE_FORMAT(create_time, '%H') AS TIME,
|
SUM(power) AS power
|
FROM
|
t_charging_order
|
WHERE
|
del_flag = 0
|
AND recharge_payment_status = 2
|
AND DATE(create_time) = CURDATE() - INTERVAL 1 DAY
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
GROUP BY
|
TIME
|
|
ORDER BY
|
TIME;
|
|
|
</select>
|
<select id="queryPowerLevel" resultType="java.util.Map">
|
SELECT
|
SUM(CASE WHEN power BETWEEN 0 AND 30 THEN 1 ELSE 0 END) AS count_0_30,
|
SUM(CASE WHEN power BETWEEN 31 AND 60 THEN 1 ELSE 0 END) AS count_31_60,
|
SUM(CASE WHEN power BETWEEN 61 AND 120 THEN 1 ELSE 0 END) AS count_61_120,
|
SUM(CASE WHEN power BETWEEN 121 AND 300 THEN 1 ELSE 0 END) AS count_121_300,
|
SUM(CASE WHEN power > 300 THEN 1 ELSE 0 END) AS count_above_300
|
FROM
|
t_charging_order
|
WHERE
|
del_flag = 0
|
AND recharge_payment_status = 2
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType ==1">
|
AND DATE(create_time) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType ==2">
|
AND WEEKOFYEAR(create_time) = WEEKOFYEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==3">
|
AND MONTH(create_time) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==4">
|
AND YEAR(create_time) = YEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==5">
|
|
AND DATE(create_time) >= #{statisticsQueryDto.startTime}
|
|
|
AND DATE(create_time) <= #{statisticsQueryDto.endTime}
|
|
</if>
|
|
</select>
|
<select id="usersDay" resultType="java.util.Map">
|
|
SELECT
|
|
DATE_FORMAT( create_time, '%H:00' ) AS time,
|
count(1) AS counts
|
FROM
|
charging_pile_account.t_app_user
|
WHERE
|
del_flag = 0
|
AND DATE ( create_time ) = CURDATE()
|
GROUP BY
|
time
|
</select>
|
|
|
<select id="usersDay1" resultType="java.util.Map">
|
SELECT
|
'today' AS data_type,
|
'1' as type,
|
DATE_FORMAT( create_time, '%H:00' ) AS time,
|
count(DISTINCT app_user_id) AS counts
|
FROM
|
t_charging_order
|
WHERE
|
del_flag = 0
|
AND DATE ( create_time ) = CURDATE()
|
GROUP BY
|
time
|
</select>
|
|
<select id="usersByQuery1" resultType="java.util.Map">
|
|
SELECT
|
'today' AS data_type,
|
'1' as type,
|
DATE_FORMAT( create_time, '%Y-%m-%d' ) AS time,
|
count(DISTINCT app_user_id) AS counts
|
FROM
|
t_charging_order
|
WHERE
|
del_flag = 0
|
<if test="statisticsQueryDto.dayType ==1 ">
|
AND DATE(create_time) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType ==2 ">
|
AND WEEKOFYEAR(create_time) = WEEKOFYEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==3 ">
|
AND MONTH(create_time) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==4">
|
AND YEAR(create_time) = YEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==5">
|
<if test="statisticsQueryDto.startTime != null">
|
AND create_time >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
AND create_time <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
GROUP BY
|
time
|
|
|
</select>
|
|
|
<select id="usersByQuery" resultType="java.util.Map">
|
|
SELECT
|
|
DATE_FORMAT( create_time, '%Y-%m-%d' ) AS time,
|
count(1) AS counts
|
FROM
|
charging_pile_account.t_app_user
|
WHERE
|
del_flag = 0
|
<if test="statisticsQueryDto.dayType ==1 ">
|
AND DATE(create_time) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType ==2 ">
|
AND WEEKOFYEAR(create_time) = WEEKOFYEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==3 ">
|
AND MONTH(create_time) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==4">
|
AND YEAR(create_time) = YEAR(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType ==5">
|
<if test="statisticsQueryDto.startTime != null">
|
AND DATE(create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
AND DATE(create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
GROUP BY
|
time
|
|
|
</select>
|
<select id="getUserTagCount" resultType="java.util.Map">
|
SELECT
|
tt.`name`,
|
COUNT( 1 ) AS count
|
FROM
|
(
|
SELECT
|
a.app_user_id,
|
a.user_tag_id,
|
a.create_time
|
FROM
|
charging_pile_account.t_app_user_tag a
|
JOIN ( SELECT app_user_id, MAX( create_time ) AS max_create_time FROM charging_pile_account.t_app_user_tag GROUP BY app_user_id ) b ON a.app_user_id = b.app_user_id
|
AND a.create_time = b.max_create_time
|
LEFT JOIN `charging_pile_other`.`t_user_tag` ct on a.user_tag_id = ct.id
|
WHERE ct.del_flag = 0
|
) o
|
LEFT JOIN `charging_pile_other`.`t_user_tag` tt on o.user_tag_id = tt.id
|
GROUP BY
|
tt.name
|
</select>
|
<select id="getVipCount" resultType="java.util.Map">
|
SELECT
|
tv.`name`,
|
count(1) AS Counts
|
FROM
|
charging_pile_account.t_app_user ta
|
LEFT JOIN `charging_pile_other`.`t_vip` tv on ta.vip_id = tv.id
|
WHERE
|
ta.del_flag = 0
|
GROUP BY
|
tv.`name`
|
</select>
|
<select id="unitConsumption" resultType="java.util.Map">
|
SELECT
|
tc.`name`,
|
au.company_id as companyId,
|
SUM( co.charging_capacity ) as chargingCapacity
|
FROM
|
charging_pile_order.t_charging_order co
|
LEFT JOIN charging_pile_account.t_app_user au ON co.app_user_id = au.id
|
LEFT JOIN `charging_pile_other`.`t_company` tc on au.company_id = tc.id
|
|
<where>
|
co.del_flag = 0
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
<if test="statisticsQueryDto.startTime != null">
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
</where>
|
GROUP BY
|
tc.`name`, au.company_id
|
</select>
|
<select id="carUserMethod" resultType="java.util.Map">
|
SELECT
|
count(1) as counts,vehicle_use
|
from charging_pile_account.t_app_user_car
|
where del_flag = 0
|
GROUP BY vehicle_use
|
</select>
|
<select id="carUserBrand" resultType="java.util.Map">
|
SELECT
|
count(1) as counts,vehicle_brand
|
from charging_pile_account.t_app_user_car
|
where del_flag = 0
|
|
GROUP BY vehicle_brand
|
ORDER BY counts DESC
|
limit 5
|
</select>
|
<select id="countLocalCar" resultType="java.util.Map">
|
SELECT
|
SUM(CASE WHEN license_plate LIKE '%川J%' THEN 1 ELSE 0 END) AS localCar,
|
SUM(CASE WHEN license_plate NOT LIKE '%川J%' THEN 1 ELSE 0 END) AS notLocalCar
|
FROM
|
`charging_pile_account`.`t_app_user_car`
|
WHERE
|
del_flag = 0
|
</select>
|
<select id="getAver" resultType="java.lang.Double">
|
SELECT
|
ROUND(AVG(te.mark), 2) AS average_mark
|
FROM
|
`t_order_evaluate` te
|
LEFT JOIN t_charging_order co on te.order_id = co.id
|
WHERE
|
1 = 1
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
AND te.del_flag = 0
|
|
</select>
|
<select id="getLevelEvaluate" resultType="java.util.Map">
|
SELECT
|
CASE
|
WHEN te.mark BETWEEN 1 AND 2 THEN '1-2'
|
WHEN te.mark = 3 THEN '3'
|
WHEN te.mark BETWEEN 4 AND 5 THEN '4-5'
|
ELSE 'Other'
|
END AS score_range,
|
COUNT(*) AS count
|
FROM
|
`t_order_evaluate` te
|
LEFT JOIN t_charging_order co on te.order_id = co.id
|
WHERE
|
te.del_flag = 0
|
<if test="siteIds != null and siteIds.size() > 0">
|
AND co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
GROUP BY
|
score_range
|
|
</select>
|
<select id="chargingList" resultType="com.ruoyi.order.api.vo.ChargingOrderListVO">
|
select t1.*,
|
t1.current as chargingCapacity,t1.payment_amount as paymentAmount,t1.electricity as chargingCapacity from t_charging_order t1
|
where t1.del_flag = 0 and t1.status = 5 and t1.recharge_payment_status = 2
|
<if test="null != req.code and req.code!=''">
|
and t1.code LIKE CONCAT('%',#{req.code},'%')
|
</if>
|
<if test="null != req.carIds and req.carIds.size()>0" >
|
and t1.app_user_car_id in
|
<foreach collection="req.carIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="null != req.userIds and req.userIds.size()>0" >
|
and t1.app_user_id in
|
<foreach collection="req.userIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="null != req.siteIds and req.siteIds.size()>0" >
|
and t1.site_id in
|
<foreach collection="req.siteIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="req.orderType != null ">
|
and t1.order_type = #{req.orderType}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.siteId != null ">
|
and t1.site_id = #{req.siteId}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.create_time between #{startTime1} and #{startTime2})
|
</if>
|
<if test="endTime1 != null and endTime1!=''">
|
and (t1.end_time between #{endTime1} and #{endTime2})
|
</if>
|
and t1.start_time IS NOT NULL
|
order by t1.create_time desc
|
</select>
|
<select id="chargingListNoPage" resultType="com.ruoyi.order.api.vo.ChargingOrderListVO">
|
select t1.* from t_charging_order t1
|
where 1=1
|
<if test="null != req.code and req.code!=''">
|
and t1.code LIKE CONCAT('%',#{req.code},'%')
|
</if>
|
<if test="null != req.carIds and req.carIds.size()>0" >
|
and t1.app_user_car_id in
|
<foreach collection="req.carIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="null != req.userIds and req.userIds.size()>0" >
|
and t1.app_user_id in
|
<foreach collection="req.userIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="req.orderType != null ">
|
and t1.order_type = #{req.orderType}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.siteId != null ">
|
and t1.site_id = #{req.siteId}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.start_time between #{startTime1} and #{startTime2})
|
</if>
|
<if test="endTime1 != null and endTime1!=''">
|
and (t1.end_time between #{endTime1} and #{endTime2})
|
</if>
|
</select>
|
<select id="countBySource" resultType="java.util.Map">
|
select
|
count(1) as counts,
|
case
|
when tripartite_platform_name is null then '明星充电'
|
when tripartite_platform_name = 'KuaiDian' then '快电'
|
when tripartite_platform_name = 'XinDianTu' then '新电途'
|
else tripartite_platform_name
|
end as source
|
from t_charging_order
|
where 1=1
|
AND del_flag = 0
|
AND recharge_payment_status = 2 and status = 5
|
<if test="siteIds != null and siteIds.size() > 0">
|
and site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE(create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType != 1">
|
and DATE(create_time) >= #{statisticsQueryDto.startTime}
|
and DATE(create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
group by tripartite_platform_name
|
|
|
</select>
|
<select id="equipmentUserType1" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.start_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
|
), 2) AS percent,co.charging_gun_id,tc.name,cp.name as siteName
|
FROM
|
`charging_pile_order`.`t_charging_order` co
|
LEFT JOIN `charging_pile_service`.`t_charging_gun` tc on co.charging_gun_id = tc.id
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on tc.charging_pile_id = cp.id
|
WHERE co.del_flag = 0 and
|
co.start_time IS NOT NULL AND co.end_time IS NOT NULL and tc.type = 4
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
|
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
|
</if>
|
GROUP BY tc.name,cp.name,co.charging_gun_id
|
|
|
|
|
</select>
|
<select id="equipmentUserType2" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.start_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
|
), 2) AS percent,co.charging_gun_id,tc.name,cp.name as siteName
|
FROM
|
`charging_pile_order`.`t_charging_order` co
|
LEFT JOIN `charging_pile_service`.`t_charging_gun` tc on co.charging_gun_id = tc.id
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on tc.charging_pile_id = cp.id
|
WHERE co.del_flag = 0 and
|
co.start_time IS NOT NULL AND co.end_time IS NOT NULL and tc.type in (2,3)
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
<if test="statisticsQueryDto.startTime != null">
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
GROUP BY tc.name,cp.name,co.charging_gun_id
|
|
|
</select>
|
<select id="equipmentMapbroke1" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.down_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
), 2) AS percent,cp.name
|
FROM
|
`charging_pile_service`.`t_fault_message` co
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on co.charging_pile_id = cp.id
|
WHERE
|
co.down_time IS NOT NULL AND co.end_time IS NOT NULL and cp.type = 1 and co.status =2
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
|
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
|
</if>
|
GROUP BY cp.name
|
|
|
</select>
|
<select id="equipmentMapbroke2" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.down_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
), 2) AS percent,cp.name
|
FROM
|
`charging_pile_service`.`t_fault_message` co
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on co.charging_pile_id = cp.id
|
WHERE
|
co.down_time IS NOT NULL AND co.end_time IS NOT NULL and cp.type in (2,3) and co.status =2
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
|
</if>
|
GROUP BY cp.name
|
|
|
</select>
|
<select id="equipmentMapOut1" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.down_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
), 2) AS percent,cp.name
|
FROM
|
`charging_pile_service`.`t_fault_message` co
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on co.charging_pile_id = cp.id
|
WHERE
|
co.down_time IS NOT NULL AND co.end_time IS NOT NULL and cp.type = 1 and co.status =1
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
<if test="statisticsQueryDto.startTime != null">
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
GROUP BY cp.name
|
</select>
|
<select id="equipmentMapOut2" resultType="java.util.Map">
|
SELECT
|
FORMAT(SUM(TIME_TO_SEC(TIMEDIFF(co.end_time, co.down_time)) /
|
<if test="statisticsQueryDto.dayType == 1">
|
864
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
6048
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
25920
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
315360
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
(864*(SELECT TIMESTAMPDIFF(DAY, #{statisticsQueryDto.startTime}, #{statisticsQueryDto.endTime}) +1 AS days_difference
|
))
|
</if>
|
|
), 2) AS percent,cp.name
|
FROM
|
`charging_pile_service`.`t_fault_message` co
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp on co.charging_pile_id = cp.id
|
WHERE
|
co.down_time IS NOT NULL AND co.end_time IS NOT NULL and cp.type = 2 and co.status =1
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
<if test="statisticsQueryDto.startTime != null">
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
GROUP BY cp.name
|
|
</select>
|
<select id="needElec" resultType="java.util.Map">
|
SELECT
|
FORMAT((SUM(co.current)*100 / SUM(co.need_elec)), 2) AS percent,
|
co.charging_gun_id,
|
tc.name as name,
|
cp.name AS siteName
|
FROM
|
`charging_pile_order`.`t_charging_order` co
|
LEFT JOIN `charging_pile_service`.`t_charging_gun` tc ON co.charging_gun_id = tc.id
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp ON tc.charging_pile_id = cp.id
|
<where>
|
tc.type = 4 and co.need_elec != 0
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
|
</if>
|
</where>
|
GROUP BY
|
tc.name,
|
cp.name,
|
co.charging_gun_id;
|
|
|
</select>
|
<select id="getHourType" resultType="java.util.Map">
|
select
|
aa.time,
|
sum(aa.servicecharge) as servicecharge,
|
sum(aa.electrovalence) as electrovalence,
|
sum(aa.electricity) as electricity,
|
count(1) as orderCount
|
from (
|
SELECT
|
DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.start_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%H:00') as time,
|
(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
(b.period_electric_price) as electrovalence,
|
(b.charging_capacity) as electricity
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(charging_capacity) as charging_capacity, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
WHERE a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.create_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%Y-%m-%d') = #{statisticsQueryDto.hourDate}
|
<if test="siteIds != null and siteIds.size() > 0">
|
and a.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
) as aa GROUP BY aa.time ORDER BY aa.time
|
</select>
|
<select id="getDateType" resultType="java.util.Map">
|
select
|
aa.time,
|
sum(aa.servicecharge) as servicecharge,
|
sum(aa.electrovalence) as electrovalence,
|
sum(aa.electricity) as electricity,
|
count(1) as orderCount
|
from (
|
SELECT
|
DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.start_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%Y-%m-%d') as time,
|
(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
(b.period_electric_price) as electrovalence,
|
(b.charging_capacity) as electricity
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(charging_capacity) as charging_capacity, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
WHERE a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.start_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%Y-%m-%d') between #{statisticsQueryDto.startTime} and #{statisticsQueryDto.endTime}
|
<if test="siteIds != null and siteIds.size() > 0">
|
and a.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
) as aa GROUP BY aa.time ORDER BY aa.time
|
</select>
|
<select id="getMonthType" resultType="java.util.Map">
|
select
|
aa.time,
|
sum(aa.servicecharge) as servicecharge,
|
sum(aa.electrovalence) as electrovalence,
|
sum(aa.electricity) as electricity,
|
count(1) as orderCount
|
from (
|
SELECT
|
DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.start_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%Y-%m') as time,
|
(CASE
|
WHEN a.order_source = 0 THEN b.period_service_price
|
WHEN a.order_source = 1 THEN b.period_service_price
|
ELSE b.period_service_price * 0.8
|
END) as servicecharge,
|
(b.period_electric_price) as electrovalence,
|
(b.charging_capacity) as electricity
|
FROM
|
t_charging_order a
|
left join (select charging_order_id, sum(period_electric_price) as period_electric_price, sum(period_service_price) as period_service_price, sum(charging_capacity) as charging_capacity, sum(period_electric_price + period_service_price) as money from t_charging_order_accounting_strategy group by charging_order_id) b on (a.id = b.charging_order_id)
|
WHERE a.del_flag = 0 and a.status = 5 and a.recharge_payment_status = 2 and DATE_FORMAT(
|
<if test="statisticsQueryDto.type == 1">
|
a.start_time
|
</if>
|
<if test="statisticsQueryDto.type == 2">
|
a.end_time
|
</if>
|
, '%Y-%m-%d') between #{statisticsQueryDto.startTime} and #{statisticsQueryDto.endTime}
|
<if test="siteIds != null and siteIds.size() > 0">
|
and a.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
) as aa GROUP BY aa.time ORDER BY aa.time
|
</select>
|
<select id="getchargingCapacity" resultType="java.util.Map">
|
SELECT
|
DATE_FORMAT( create_time, '%Y-%m-%d' ) as time,
|
SUM(charging_capacity) as chargingCapacity
|
FROM
|
t_charging_order
|
WHERE del_flag = 0 and recharge_payment_status = 2
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( create_time ) between #{statisticsQueryDto.startTime} and #{statisticsQueryDto.endTime}
|
</if>
|
|
<if test="siteIds != null and siteIds.size() > 0">
|
and site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
GROUP BY
|
time
|
</select>
|
<select id="countAllUserData" resultType="java.util.Map">
|
SELECT
|
COUNT( DISTINCT app_user_id ) AS counts,
|
'1' AS type
|
FROM
|
`charging_pile_order`.`t_charging_order` UNION ALL
|
SELECT
|
COUNT(*) AS counts,
|
'2' AS type
|
FROM
|
`charging_pile_account`.`t_app_user`
|
WHERE
|
`vip_end_time` > NOW()
|
|
UNION ALL
|
SELECT
|
COUNT(*) AS counts,
|
'3' AS type
|
FROM
|
`charging_pile_account`.`t_app_user`
|
WHERE
|
del_flag = 0
|
|
|
</select>
|
<select id="needElec1" resultType="java.util.Map">
|
SELECT
|
FORMAT((SUM(co.current)*100 / SUM(co.need_elec)), 2) AS percent,
|
co.charging_gun_id,
|
tc.name as name,
|
cp.name AS siteName
|
FROM
|
(select site_id,create_time,charging_gun_id, charging_pile_id, current, (CASE WHEN need_elec = 0 THEN `current` ELSE need_elec END) as need_elec from `charging_pile_order`.`t_charging_order`) co
|
LEFT JOIN `charging_pile_service`.`t_charging_gun` tc ON co.charging_gun_id = tc.id
|
LEFT JOIN `charging_pile_service`.`t_charging_pile` cp ON tc.charging_pile_id = cp.id
|
<where>
|
tc.type in (2,3)
|
<if test="siteIds != null and siteIds.size() > 0">
|
and co.site_id IN
|
<foreach collection="siteIds" item="siteId" open="(" separator="," close=")">
|
#{siteId}
|
</foreach>
|
</if>
|
<if test="statisticsQueryDto.dayType == 1">
|
AND DATE( co.create_time ) = CURDATE()
|
</if>
|
<if test="statisticsQueryDto.dayType == 2">
|
AND WEEKOFYEAR( co.create_time ) = WEEKOFYEAR( CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 3">
|
AND MONTH( co.create_time ) = MONTH(CURDATE())
|
</if>
|
<if test="statisticsQueryDto.dayType == 4">
|
AND YEAR( co.create_time ) = YEAR(CURDATE() )
|
</if>
|
<if test="statisticsQueryDto.dayType == 5">
|
<if test="statisticsQueryDto.startTime != null">
|
and DATE(co.create_time) >= #{statisticsQueryDto.startTime}
|
</if>
|
<if test="statisticsQueryDto.endTime != null">
|
and DATE(co.create_time) <= #{statisticsQueryDto.endTime}
|
</if>
|
</if>
|
</where>
|
GROUP BY
|
tc.name,
|
cp.name,
|
co.charging_gun_id;
|
</select>
|
<select id="countNoTag" resultType="java.lang.Long">
|
SELECT count(1)
|
from `charging_pile_account`.`t_app_user` au
|
WHERE au.id not IN (
|
SELECT app_user_id
|
from `charging_pile_account`.`t_app_user_tag`
|
GROUP BY app_user_id
|
|
) and au.del_flag = 0
|
|
</select>
|
<select id="countCar" resultType="java.lang.Long">
|
select count(1)
|
from
|
charging_pile_account.t_app_user_car
|
where del_flag = 0
|
|
<if test="brands != null and brands.size() > 0">
|
and vehicle_brand not in
|
<foreach collection="brands" item="brand" open="(" separator="," close=")">
|
#{brand}
|
</foreach>
|
</if>
|
</select>
|
<select id="chargingOrderNolimit" resultType="map">
|
select
|
sum(charging_capacity) as total,
|
sum(charging_duration) as `time`,
|
sum(electric_price) as electronicMoney,
|
sum(income) as paymentMoney,
|
sum(service_price) as serviceMoney
|
from t_charging_order_summary_data
|
where charging_order_id in (
|
select t1.id
|
from t_charging_order t1
|
where 1=1
|
<if test="null != req.code and req.code!=''">
|
and t1.code LIKE CONCAT('%',#{req.code},'%')
|
</if>
|
<if test="null != req.userIds and req.userIds.size()>0" >
|
and t1.app_user_id in
|
<foreach collection="req.userIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="null != req.siteIds and req.siteIds.size()>0" >
|
and t1.site_id in
|
<foreach collection="req.siteIds" item="item" index="index" separator="," open="(" close=")">
|
#{item}
|
</foreach>
|
</if>
|
<if test="req.orderType != null ">
|
and t1.order_type = #{req.orderType}
|
</if>
|
<if test="req.status != null ">
|
and t1.status = #{req.status}
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 1 ">
|
and (t1.order_source = 0 or t1.order_source = 1 )
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 2 ">
|
and t1.tripartite_platform_name = 'KuaiDian'
|
</if>
|
<if test="req.orderSource != null and req.orderSource == 3 ">
|
and t1.tripartite_platform_name = 'XinDianTu'
|
</if>
|
<if test="req.siteId != null ">
|
and t1.site_id = #{req.siteId}
|
</if>
|
<if test="req.pileId != null ">
|
and t1.charging_pile_id = #{req.pileId}
|
</if>
|
<if test="req.gunId != null ">
|
and t1.charging_gun_id = #{req.gunId}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.pay_time between #{startTime1} and #{startTime2})
|
</if>
|
<if test="endTime1 != null and endTime1!=''">
|
and (t1.end_time between #{endTime1} and #{endTime2})
|
</if>
|
and t1.del_flag = 0
|
)
|
</select>
|
<select id="countOrdersByDate" resultType="com.ruoyi.order.vo.OrderCountByDate">
|
SELECT DATE_FORMAT(create_time, '%m/%d') AS `date`, COUNT(*) AS `count`
|
FROM t_charging_order
|
WHERE
|
del_flag = 0
|
and
|
status in (3,5)
|
|
and charging_gun_id in
|
<foreach item="item" index="index" collection="gunIds" open="(" separator="," close=")">
|
#{item}
|
</foreach>
|
and create_time BETWEEN #{startTime} AND #{endTime}
|
GROUP BY DATE(create_time, '%m/%d')
|
ORDER BY DATE(create_time, '%m/%d') ASC
|
</select>
|
|
<select id="getSumDegreeBySiteIds" resultType="java.math.BigDecimal">
|
select sum(t2.charging_capacity) from t_charging_order t1 left join t_charging_order_summary_data t2
|
on t1.id =t2. charging_order_id where t1.del_flag=0
|
and t1.site_id in
|
<foreach item="item" index="index" collection="siteIds" open="(" separator="," close=")">
|
#{item}
|
</foreach>
|
|
</select>
|
</mapper>
|