班会管理模块-修复了待办班会在辅导员变动后是否上传的显示bug
This commit is contained in:
@@ -74,7 +74,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
from (
|
||||
select cm.*,mc.cr_teacher_no,case when mc.cr_no is NULL then '0' else '1' end as is_complate
|
||||
from rt_class_metting_theme cm
|
||||
left join rt_class_metting_content mc on cm.cm_no=mc.cr_cm_no and mc.cr_teacher_no= #{userName} ) temp
|
||||
left join rt_class_metting_content mc on cm.cm_no=mc.cr_cm_no and mc.cr_class_no in (
|
||||
select class_id from srs_class sc
|
||||
left join cph_teacher ct on sc.teacher_id = ct.teacher_id
|
||||
where ct.employee_id = #{userName}
|
||||
) ) temp
|
||||
<where>
|
||||
<!--<if test="userName != null and userName != ''"> temp.rc_teacher_no= #{userName}</if>-->
|
||||
<if test="isComplate != null and isComplate != ''"> temp.is_complate=#{isComplate}</if>
|
||||
|
||||
Reference in New Issue
Block a user