综合评价铺导员导入显示
This commit is contained in:
@@ -81,7 +81,7 @@ public class SrsSportTestServiceImpl extends ServiceImpl<SrsSportTestMapper,Srs
|
||||
temp.setCreateTime(new Date());
|
||||
int res = srsSportTestMapper.insertSrsSportTest(temp);
|
||||
if(res == 1){
|
||||
cphTestForService.testMethod(Integer.parseInt(param.getStuYearId().toString()));
|
||||
// cphTestForService.testMethod(Integer.parseInt(param.getStuYearId().toString()));
|
||||
return AjaxResult.success();
|
||||
}else{
|
||||
throw new Exception("添加成绩失败");
|
||||
@@ -91,7 +91,7 @@ public class SrsSportTestServiceImpl extends ServiceImpl<SrsSportTestMapper,Srs
|
||||
temp.setTestScore(param.getTestScore());
|
||||
int res = srsSportTestMapper.updateSrsSportTest(temp);
|
||||
if(res == 1){
|
||||
cphTestForService.testMethod(Integer.parseInt(param.getStuYearId().toString()));
|
||||
// cphTestForService.testMethod(Integer.parseInt(param.getStuYearId().toString()));
|
||||
return AjaxResult.success();
|
||||
}else{
|
||||
throw new Exception("修改成绩失败");
|
||||
|
@@ -175,16 +175,14 @@
|
||||
b.stu_year_name,
|
||||
a.ce_score as score,
|
||||
a.stu_no,
|
||||
e.`name` as stu_name,
|
||||
e.`status`,
|
||||
c.stu_name,
|
||||
c.`status`,
|
||||
c.class_name
|
||||
from cph_total_score as a
|
||||
from srs_ce_score as a
|
||||
left join srs_stu_year as b on a.stu_year_id = b.id
|
||||
left join srs_class as c on a.class_code = c.class_code
|
||||
left join cph_teacher as d on c.teacher_id = d.teacher_id
|
||||
left join srs_student as e on a.stu_no = e.stu_no
|
||||
where d.employee_id = #{tno}
|
||||
ORDER BY a.class_id asc, b.stu_year_name desc, a.stu_no asc
|
||||
left join view_stu_info as c on a.stu_no = c.stu_no
|
||||
where c.t_no = #{tno}
|
||||
ORDER BY c.class_id asc, b.stu_year_name desc, a.stu_no asc
|
||||
</select>
|
||||
|
||||
<select id="listSport" resultType="com.srs.comprehensive.domain.Vo.CphTeacherLookScore">
|
||||
|
Reference in New Issue
Block a user