ソースを参照

首页-待办-我发起的修改

user5 4 年 前
コミット
4b14043ed1

+ 1 - 1
src/main/resources/mappings/modules/workactivity/WorkActivityProcessDao.xml

@@ -316,7 +316,7 @@
 	<update id="deleteProcessIdAuditUsers">
 		update work_activity_process_user
 		set
-		process_id = #{processInstanceId}
+		del_flag = 1
 		where
 		process_id = #{processInstanceId}
 	</update>

+ 2 - 0
src/main/resources/mappings/modules/workprojectnotify/WorkProjectNotifyDao.xml

@@ -578,6 +578,7 @@
 		</if>
 		<where>
 			a.del_flag = #{DEL_FLAG_NORMAL}
+			and a.process_instance_id is not null
 			<if test="title != null and title != ''">
 				AND a.title LIKE
 				<if test="dbName == 'oracle'">'%'||#{title}||'%'</if>
@@ -627,6 +628,7 @@
 		</if>
 		<where>
 			a.del_flag = #{DEL_FLAG_NORMAL}
+			and a.process_instance_id is not null
 			<if test="title != null and title != ''">
 				AND a.title LIKE
 				<if test="dbName == 'oracle'">'%'||#{title}||'%'</if>