|
|
|
@ -247,23 +247,20 @@
|
|
|
|
|
where task_id = #{taskId}
|
|
|
|
|
and id = #{assetId}
|
|
|
|
|
</select>
|
|
|
|
|
<select id="dwHc" resultType="com.ruoyi.tc.entity.response.AssetdwHcResponse">
|
|
|
|
|
select
|
|
|
|
|
h.dwmc,h.task_id,h.total,h.checked,h.notChecked,h.dsp,h.shthcs,h.taskStatus,h.checkedRatio
|
|
|
|
|
from(
|
|
|
|
|
SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
SUM( s.notChecked ) AS notChecked,
|
|
|
|
|
SUM( s.dsp ) AS dsp,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
<select id="dwHc" resultType="com.ruoyi.tc.entity.response.AssetdwHcResponse">
|
|
|
|
|
select * from ( SELECT
|
|
|
|
|
h.dwmc,
|
|
|
|
|
h.task_id,
|
|
|
|
|
SUM(h.total) AS total,
|
|
|
|
|
SUM(h.checked) AS checked,
|
|
|
|
|
SUM(h.notChecked) AS notChecked,
|
|
|
|
|
SUM(h.dsp) AS dsp,
|
|
|
|
|
SUM(h.shthcs) AS shthcs,
|
|
|
|
|
ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
@ -271,153 +268,165 @@
|
|
|
|
|
CASE
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP < b.task_deadline THEN 2
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time) < MAX(h.task_deadline) THEN 2
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP >= b.task_deadline THEN 3
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time) >= MAX(h.task_deadline) THEN 3
|
|
|
|
|
ELSE 1
|
|
|
|
|
END AS taskStatus
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
SUM(s.notChecked) AS notChecked,
|
|
|
|
|
SUM(s.dsp) AS dsp,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
MAX(s.latest_update_time) as latest_update_time,
|
|
|
|
|
b.task_deadline -- 引入 task_deadline
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_current_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and dwmc like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
dwmc,
|
|
|
|
|
task_id
|
|
|
|
|
dwmc, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_mini_programs_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_app_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw ,task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
SELECT ssdw AS dwmc,
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_official_account_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_email_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
) AS s left join asset_task b on s.task_id=b.id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
) AS s
|
|
|
|
|
LEFT JOIN asset_task b ON s.task_id = b.id
|
|
|
|
|
GROUP BY
|
|
|
|
|
s.dwmc ,
|
|
|
|
|
s.task_id)h
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id
|
|
|
|
|
) h
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.taskStatus != null and req.taskStatus != ''">
|
|
|
|
|
h.taskStatus = #{req.taskStatus}
|
|
|
|
|
|
|
|
|
|
<if test="req.dwmc != null and req.dwmc != ''">
|
|
|
|
|
h.dwmc = #{req.dwmc}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
GROUP BY
|
|
|
|
|
h.dwmc, h.task_id)g
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.taskStatus != null and req.taskStatus != ''">
|
|
|
|
|
g.taskStatus = #{req.taskStatus}
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
<select id="findByTaskId" resultType="com.ruoyi.tc.entity.AssetTask">
|
|
|
|
@ -574,20 +583,18 @@
|
|
|
|
|
|
|
|
|
|
<select id="export" resultType="com.ruoyi.tc.entity.response.AssetdwHcResponse"
|
|
|
|
|
parameterType="com.ruoyi.tc.entity.request.AssetdwHcRequest">
|
|
|
|
|
SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
CURRENT_TIMESTAMP AS latest_create_time, -- 使用当前时间
|
|
|
|
|
b.task_deadline,
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
SUM( s.notChecked ) AS notChecked,
|
|
|
|
|
SUM( s.dsp ) AS dsp,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
select * from ( SELECT
|
|
|
|
|
h.dwmc,
|
|
|
|
|
h.task_id,
|
|
|
|
|
SUM(h.total) AS total,
|
|
|
|
|
SUM(h.checked) AS checked,
|
|
|
|
|
SUM(h.notChecked) AS notChecked,
|
|
|
|
|
SUM(h.dsp) AS dsp,
|
|
|
|
|
SUM(h.shthcs) AS shthcs,
|
|
|
|
|
ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
@ -595,172 +602,190 @@
|
|
|
|
|
CASE
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP < b.task_deadline THEN 2
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time) < MAX(h.task_deadline) THEN 2
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP >= b.task_deadline THEN 3
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time) >= MAX(h.task_deadline) THEN 3
|
|
|
|
|
ELSE 1
|
|
|
|
|
END AS taskStatus
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
SUM(s.notChecked) AS notChecked,
|
|
|
|
|
SUM(s.dsp) AS dsp,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
MAX(s.latest_update_time) as latest_update_time,
|
|
|
|
|
b.task_deadline -- 引入 task_deadline
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_current_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and dwmc like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
dwmc,
|
|
|
|
|
task_id
|
|
|
|
|
dwmc, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_mini_programs_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_app_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw ,task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
SELECT ssdw AS dwmc,
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_official_account_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM( CASE WHEN STATUS = 1 THEN 1 ELSE 0 END ) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_email_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
) AS s left join asset_task b on s.task_id=b.id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
) AS s
|
|
|
|
|
LEFT JOIN asset_task b ON s.task_id = b.id
|
|
|
|
|
GROUP BY
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id
|
|
|
|
|
) h
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.taskStatus != null and req.taskStatus != ''">
|
|
|
|
|
b.task_status = #{req.taskStatus}
|
|
|
|
|
|
|
|
|
|
<if test="req.dwmc != null and req.dwmc != ''">
|
|
|
|
|
h.dwmc = #{req.dwmc}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
GROUP BY
|
|
|
|
|
s.dwmc ,
|
|
|
|
|
s.task_id
|
|
|
|
|
h.dwmc, h.task_id)g
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.taskStatus != null and req.taskStatus != ''">
|
|
|
|
|
g.taskStatus = #{req.taskStatus}
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
<select id="dwHcBl" resultType="com.ruoyi.tc.entity.response.AssetdwHcBlResponse"
|
|
|
|
|
parameterType="com.ruoyi.tc.entity.request.AssetdwHcRequest">
|
|
|
|
|
select count(*) as count ,taskStatus from (
|
|
|
|
|
SELECT
|
|
|
|
|
count(*) AS count,
|
|
|
|
|
taskStatus
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
count(*) AS count,
|
|
|
|
|
g.taskStatus
|
|
|
|
|
FROM
|
|
|
|
|
( SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
CURRENT_TIMESTAMP AS latest_create_time, -- 使用当前时间
|
|
|
|
|
b.task_deadline,
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
h.dwmc,
|
|
|
|
|
h.task_id,
|
|
|
|
|
SUM(h.total) AS total,
|
|
|
|
|
SUM(h.checked) AS checked,
|
|
|
|
|
SUM(h.notChecked) AS notChecked,
|
|
|
|
|
SUM(h.dsp) AS dsp,
|
|
|
|
|
SUM(h.shthcs) AS shthcs,
|
|
|
|
|
ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
@ -768,152 +793,168 @@
|
|
|
|
|
CASE
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP < b.task_deadline THEN 2
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time)<MAX(h.task_deadline) THEN 2
|
|
|
|
|
WHEN ROUND(
|
|
|
|
|
CASE
|
|
|
|
|
WHEN SUM(s.total) > 0 THEN
|
|
|
|
|
SUM(s.checked) * 100.0 / SUM(s.total)
|
|
|
|
|
WHEN SUM(h.total) > 0 THEN
|
|
|
|
|
SUM(h.checked) * 100.0 / SUM(h.total)
|
|
|
|
|
ELSE 0
|
|
|
|
|
END,
|
|
|
|
|
2
|
|
|
|
|
) = 100
|
|
|
|
|
AND CURRENT_TIMESTAMP >= b.task_deadline THEN 3
|
|
|
|
|
) = 100 AND MAX(h.latest_update_time) >= MAX(h.task_deadline) THEN 3
|
|
|
|
|
ELSE 1
|
|
|
|
|
END AS taskStatus
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id,
|
|
|
|
|
SUM(s.total) AS total,
|
|
|
|
|
SUM(s.checked) AS checked,
|
|
|
|
|
SUM(s.notChecked) AS notChecked,
|
|
|
|
|
SUM(s.dsp) AS dsp,
|
|
|
|
|
COALESCE(SUM(s.returned), 0) AS shthcs,
|
|
|
|
|
MAX(s.latest_update_time) as latest_update_time,
|
|
|
|
|
b.task_deadline -- 引入 task_deadline
|
|
|
|
|
FROM
|
|
|
|
|
(
|
|
|
|
|
SELECT
|
|
|
|
|
dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_current_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and dwmc like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
GROUP BY
|
|
|
|
|
dwmc,
|
|
|
|
|
task_id
|
|
|
|
|
dwmc, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_mini_programs_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_app_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw ,task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
UNION ALL
|
|
|
|
|
SELECT ssdw AS dwmc,
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_official_account_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
|
|
|
|
|
UNION ALL
|
|
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
|
ssdw AS dwmc,
|
|
|
|
|
COUNT(*) AS total,
|
|
|
|
|
task_id,
|
|
|
|
|
MAX(create_time) AS latest_create_time,
|
|
|
|
|
COALESCE(MAX(update_time), '1970-01-01') AS latest_update_time,
|
|
|
|
|
SUM(CASE WHEN STATUS = 0 THEN 1 ELSE 0 END) AS notChecked,
|
|
|
|
|
SUM(CASE WHEN STATUS = 1 THEN 1 ELSE 0 END) AS dsp,
|
|
|
|
|
SUM(CASE WHEN STATUS = 3 OR STATUS = 5 THEN 1 ELSE 0 END) AS checked,
|
|
|
|
|
SUM(count) AS returned
|
|
|
|
|
FROM
|
|
|
|
|
asset_email_cp
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.dwmc!=null and req.dwmc!='' ">
|
|
|
|
|
and ssdw like concat('%',#{req.dwmc},'%')
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
<if test="req.taskId!=null and req.taskId!='' ">
|
|
|
|
|
and task_id =#{req.taskId}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw, task_id
|
|
|
|
|
) AS s
|
|
|
|
|
LEFT JOIN asset_task b ON s.task_id = b.id
|
|
|
|
|
GROUP BY
|
|
|
|
|
ssdw,
|
|
|
|
|
task_id
|
|
|
|
|
) AS s left join asset_task b on s.task_id=b.id
|
|
|
|
|
s.dwmc,
|
|
|
|
|
s.task_id
|
|
|
|
|
|
|
|
|
|
) h
|
|
|
|
|
GROUP BY
|
|
|
|
|
h.dwmc, h.task_id
|
|
|
|
|
) g
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
<if test="req.taskStatus != null and req.taskStatus != ''">
|
|
|
|
|
b.task_status = #{req.taskStatus}
|
|
|
|
|
g.taskStatus = #{req.taskStatus}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="req.dwmc != null and req.dwmc != ''">
|
|
|
|
|
g.dwmc = #{req.dwmc}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY
|
|
|
|
|
s.dwmc ,
|
|
|
|
|
s.task_id
|
|
|
|
|
) g
|
|
|
|
|
GROUP BY
|
|
|
|
|
dwmc,
|
|
|
|
|
taskStatus
|
|
|
|
|
)f group by taskStatus
|
|
|
|
|
) f
|
|
|
|
|
GROUP BY
|
|
|
|
|
taskStatus
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="getByTaskId" resultType="com.ruoyi.tc.entity.AssetTask" parameterType="int">
|
|
|
|
|