查询待办数据接口修改。

This commit is contained in:
wangzhijiang
2023-03-08 17:04:50 +08:00
parent 74b39431a5
commit 77374f668f
@@ -172,13 +172,41 @@
'' as title_en,
pi.flow_type,
pi.create_by,
(
<!--(
select
pid.end_time
from
process_info_detail pid
where pid.process_info_id = pi.id and pid.STATUS = 'NotDone' order by pid.end_time asc limit 1
) as end_time,
) as end_time,-->
(
case when flow_type = '21' then
(
SELECT
pci.end_time
FROM
project_certification_inventory pci
WHERE
pci.project_library_id = pi.id
AND ( pci.flow_status = 'List to be checked' OR pci.flow_status = 'Refusal of responsible person' )
ORDER BY
pci.end_time ASC
LIMIT 1
)
when flow_type = '10' then
(
SELECT
pid.end_time
FROM
process_info_detail pid
WHERE
pid.process_info_id = pi.id
AND pid.STATUS = 'NotDone'
ORDER BY
pid.end_time ASC
LIMIT 1
) end
)AS end_time,
pi.STATUS,
pi.prc_num,
pi.prc_name,