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