Compare commits
2 Commits
f0cdc12d7e
...
c9ce661d55
Author | SHA1 | Date | |
---|---|---|---|
c9ce661d55 | |||
e17a4aae66 |
@@ -523,6 +523,12 @@
|
||||
select concat('xjbjt-',count(a.id)) as `all`
|
||||
from cph_new_good_class_apply as a
|
||||
WHERE a.apply_status = 3
|
||||
where a.xgstatus = 0
|
||||
<!-- 知无涯 "中职升高职" 学校终审 -->
|
||||
union
|
||||
select concat('zsg-',count(a.id)) as `all`
|
||||
from knzz_zsg_apply as a
|
||||
where a.apply_status = 3
|
||||
</select>
|
||||
|
||||
<select id="countStuUnDo" resultType="String" parameterType="String">
|
||||
@@ -627,8 +633,18 @@
|
||||
left join srs_majors as e on c.major_id = e.major_id
|
||||
left join sys_dept as f on e.college_id = f.dept_id
|
||||
WHERE a.apply_status = 2 and f.dept_id = #{id}
|
||||
|
||||
|
||||
<!-- 知无涯"中职升高职" 学务审核 -->
|
||||
union
|
||||
select concat('jx-',count(a.id)) as `all`
|
||||
from sys_performance as a
|
||||
left join sys_user as b on a.credit_pass = b.user_name
|
||||
where a.xwstatus IS NULL and b.dept_id = #{id}
|
||||
<!-- 知无涯"铺导员综合绩效" (第1步:学务初审) -->
|
||||
union
|
||||
select concat('jx-',count(a.id)) as `all`
|
||||
from sys_performance as a
|
||||
left join sys_user as b on a.credit_pass = b.user_name
|
||||
where a.xwstatus IS NULL and b.dept_id = #{id}
|
||||
</select>
|
||||
|
||||
<select id="countFdyUnDo" resultType="String" parameterType="String">
|
||||
@@ -730,6 +746,19 @@
|
||||
left join view_stu_info as b on a.submitter_id = b.stu_id
|
||||
WHERE status_code = 1 and t_no=#{tNo}
|
||||
|
||||
where d.t_no = #{tNo} and a.status = 0
|
||||
<!-- 知无涯"中职升高职" 辅导员审核 -->
|
||||
union
|
||||
select concat('zsg-',count(a.id)) as `all`
|
||||
from knzz_zsg_apply as a
|
||||
left join view_stu_info as b on a.stu_no = b.stu_no
|
||||
where a.apply_status = 1 and b.t_no = #{tNo}
|
||||
<!--知无涯 "铺导员综合绩效" 待办 (第3步:科室复核 和 第4步:学工处长终审) -->
|
||||
union
|
||||
select concat('jx-',count(a.id)) as `all`
|
||||
from sys_performance as a
|
||||
where (a.shstatus IS NOT NULL and a.ksstatus IS NULL) -- 科室复核待办
|
||||
or (a.ksstatus IS NOT NULL and a.xgstatus IS NULL) -- 学工处长待办
|
||||
</select>
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user