From a491941cece9a90d72c9c6b0aab0e718e39dbd3c Mon Sep 17 00:00:00 2001
From: zhongrj <123456>
Date: Mon, 22 Aug 2022 15:54:22 +0800
Subject: [PATCH] 从业记录新增同步sql 修改,用户新增审查逻辑修改,外网部门只更新状态,不更新审查明细,内网状态和明细都更新

---
 src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.xml |   16 ++++------------
 1 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.xml b/src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.xml
index e94e6ba..6454882 100644
--- a/src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.xml
+++ b/src/main/java/org/springblade/modules/apply/mapper/ApplyMapper.xml
@@ -291,10 +291,8 @@
         sa.user_id = bu.id
         WHERE
         1=1
-        and is_exam = 1
         and sa.apply_status = 2
-        and bu.is_apply = 1
-        and sa.exam_id is not null
+        and sa.exam_id = #{id}
     </select>
 
     <!-- 查询培训考试人数-->
@@ -309,10 +307,8 @@
         sr.user_id = bu.id
         WHERE
         1=1
-        and is_exam = 1
         and sr.cancel = 1
-        and bu.is_train = 1
-        and sr.train_exam_id is not null
+        and sr.train_exam_id = #{id}
     </select>
 
     <!--查询已报名的的人信息集合-->
@@ -338,10 +334,8 @@
         bd.id = bu.dept_id
         WHERE
         1=1
-        and is_exam = 1
         and sa.apply_status = 2
-        and bu.is_apply = 1
-        and sa.exam_id is not null
+        and sa.exam_id = #{id}
     </select>
 
     <!--查询已培训报名的的人信息集合-->
@@ -367,10 +361,8 @@
         bd.id = bu.dept_id
         WHERE
         1=1
-        and is_exam = 1
         and sr.cancel = 1
-        and bu.is_train = 1
-        and sr.train_exam_id is not null
+        and sr.train_exam_id = #{id}
     </select>
 
 

--
Gitblit v1.9.3