bugfix:修复撤回中不生效的问题

release_1.0.0
liu 10 months ago
parent 9c99d93488
commit 0aaf410670

@ -46,8 +46,8 @@
where 1 = 1 where 1 = 1
<choose> <choose>
<when test="status == null"> <when test="status == null">
-- 如果为空,是查全部通过的,不分人(驳回的删除和撤回,其实也属于正常上线的) -- 如果为空,是查全部通过的,不分人(驳回的删除和撤回审核中的,其实也属于正常上线的)
and ( status = 2 or status = 16 or status = 17 ) and ( status in (2 , 16 , 17 , 11 , 12) )
</when> </when>
<when test="status == 1"> <when test="status == 1">
-- 如果是1,只查自己的草稿 -- 如果是1,只查自己的草稿
@ -92,12 +92,12 @@
</select> </select>
<select id="queryKnowledgeInvalidList" resultType="com.supervision.knowsub.dto.knowledge.CheckInvalidDTO"> <select id="queryKnowledgeInvalidList" resultType="com.supervision.knowsub.dto.knowledge.CheckInvalidDTO">
select t1.id as knowledgeId, select t1.id as knowledgeId,
t1.title as title, t1.title as title,
t1.status as status, t1.status as status,
t2.timeliness as timeliness, t2.timeliness as timeliness,
t2.exec_time_begin as execTimeBegin, t2.exec_time_begin as execTimeBegin,
t2.exec_time_end as execTimeEnd t2.exec_time_end as execTimeEnd
from ks_knowledge t1 from ks_knowledge t1
left join ks_knowledge_info t2 on t1.info_id = t2.id left join ks_knowledge_info t2 on t1.info_id = t2.id
where status = 2 where status = 2

Loading…
Cancel
Save