|
@@ -44,7 +44,6 @@
|
|
|
a.remarks,
|
|
|
a.proc_ins_id,
|
|
|
a.process_definition_id,
|
|
|
- a.first_submit_time,
|
|
|
so.name as office,
|
|
|
so.id,
|
|
|
art.ID_ as task_id
|
|
@@ -52,7 +51,7 @@
|
|
|
left join sys_user su on a.create_by_id = su.id
|
|
|
left join sys_office so on su.office_id=so.id
|
|
|
left join act_ru_task art ON a.proc_ins_id = art.PROC_INST_ID_
|
|
|
- where a.first_submit_time < #{newDate} and a.status != '5' and a.type_status = '2'
|
|
|
+ where a.create_time < #{newDate} and a.status != '5' and a.type_status = '2'
|
|
|
</select>
|
|
|
|
|
|
<update id="updateExceedTimeStatus">
|
|
@@ -73,7 +72,6 @@
|
|
|
a.remarks,
|
|
|
a.proc_ins_id,
|
|
|
a.process_definition_id,
|
|
|
- a.first_submit_time,
|
|
|
so.name as office,
|
|
|
so.id,
|
|
|
art.ID_ as task_id
|
|
@@ -81,7 +79,7 @@
|
|
|
left join sys_user su on a.create_by_id = su.id
|
|
|
left join sys_office so on su.office_id=so.id
|
|
|
left join act_ru_task art ON a.proc_ins_id = art.PROC_INST_ID_
|
|
|
- where a.first_submit_time >= #{newDate} and a.status != '5' and a.type_status = '2'
|
|
|
+ where a.create_time >= #{newDate} and a.status != '5' and a.type_status = '2'
|
|
|
</select>
|
|
|
|
|
|
</mapper>
|