@@ -192,6 +192,9 @@
<if test="todoVO != null and todoVO.getNodeIsCheckArchiving">
AND wfni.code = 'CHECK_ARCHIVING'
</if>
+ <if test="todoVO != null and todoVO.getNodeIsCheckArchiving==false">
+ AND wfni.code != 'CHECK_ARCHIVING'
+ </if>
ORDER BY wtr.created DESC
</select>
@@ -105,4 +105,5 @@ public class TaskTodoVO {
*/
private Boolean getNodeIsCheckArchiving;
+
}