UAT问题清单 序号72 法规待办中心排序问题。
This commit is contained in:
+19
-6
@@ -19,9 +19,10 @@
|
|||||||
|
|
||||||
<sql id="BaseQuerySql">
|
<sql id="BaseQuerySql">
|
||||||
<where>
|
<where>
|
||||||
<if test="params.querySource == '2'">
|
and temp.project_name is not null
|
||||||
and project_name is not null
|
<!--<if test="params.querySource == '2'">
|
||||||
</if>
|
and temp.project_name is not null
|
||||||
|
</if>-->
|
||||||
<if test="params.projectName != null and params.projectName !=''">
|
<if test="params.projectName != null and params.projectName !=''">
|
||||||
and (
|
and (
|
||||||
temp.project_name like CONCAT(CONCAT('%',#{params.projectName}),'%')
|
temp.project_name like CONCAT(CONCAT('%',#{params.projectName}),'%')
|
||||||
@@ -112,7 +113,10 @@
|
|||||||
order by temp.create_time desc
|
order by temp.create_time desc
|
||||||
</select>
|
</select>
|
||||||
<select id="queryProjectProcessTodoTaskListList" resultType="com.jero.modules.todoCenter.vo.ProcessInfoVO">
|
<select id="queryProjectProcessTodoTaskListList" resultType="com.jero.modules.todoCenter.vo.ProcessInfoVO">
|
||||||
select temp.* from (
|
select
|
||||||
|
temp.*,
|
||||||
|
(case temp.flow_type when '10' THEN '1' when '21' THEN '2' when '2' THEN '3' when '4' THEN '4' END) as "flowTypeShowOrderBy"
|
||||||
|
from (
|
||||||
SELECT
|
SELECT
|
||||||
pi.id,
|
pi.id,
|
||||||
pi.project_library_id,
|
pi.project_library_id,
|
||||||
@@ -244,7 +248,15 @@
|
|||||||
</foreach>
|
</foreach>
|
||||||
)temp
|
)temp
|
||||||
<include refid="BaseQuerySql"/>
|
<include refid="BaseQuerySql"/>
|
||||||
order by temp.end_time ASC,temp.project_name ASC,standard_info ASC,temp.flow_type ASC
|
order by
|
||||||
|
temp.end_time IS NULL,
|
||||||
|
temp.end_time,
|
||||||
|
temp.project_name IS NULL,
|
||||||
|
temp.project_name,
|
||||||
|
standard_info IS NULL,
|
||||||
|
standard_info,
|
||||||
|
flowTypeShowOrderBy
|
||||||
|
ASC
|
||||||
</select>
|
</select>
|
||||||
<select id="queryLawsAssessPageList" resultType="com.jero.modules.todoCenter.vo.ProcessInfoVO">
|
<select id="queryLawsAssessPageList" resultType="com.jero.modules.todoCenter.vo.ProcessInfoVO">
|
||||||
select temp.* from (
|
select temp.* from (
|
||||||
@@ -267,7 +279,8 @@
|
|||||||
pi.prc_name,
|
pi.prc_name,
|
||||||
pi.create_by,
|
pi.create_by,
|
||||||
pi.acti_proc_inst_id,
|
pi.acti_proc_inst_id,
|
||||||
pi.create_time
|
pi.create_time,
|
||||||
|
"project_name" as project_name
|
||||||
FROM
|
FROM
|
||||||
process_info pi
|
process_info pi
|
||||||
LEFT JOIN buss_document_library bdl ON pi.buss_document_library_id = bdl.id
|
LEFT JOIN buss_document_library bdl ON pi.buss_document_library_id = bdl.id
|
||||||
|
|||||||
Reference in New Issue
Block a user