Ver código fonte

【修改】补考名单/重修名单,学制是‘弹性学制’的过滤不显示,学籍信息里不存在的也过滤不显示

新疆影视学院高职
dyy 2 anos atrás
pai
commit
78053ec29a
2 arquivos alterados com 6 adições e 2 exclusões
  1. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuScoreNotPass/StuScoreNotPassService.cs
  2. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuScoreNotPassTwo/StuScoreNotPassTwoService.cs

+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuScoreNotPass/StuScoreNotPassService.cs Ver arquivo

@@ -195,7 +195,9 @@ left join ClassInfo c on c.ClassNo=a.ClassNo
left join StuInfoBasic b on b.StuNo=a.StuNo
where 1=1 and a.StuNo not in (select StuNo from StuInfoBasic where ChangeStatus =1)
and a.LessonSortNo='1'
and a.Score<60 ");
and a.Score<60
and b.StuId is not null
and (b.EduSystem is null or b.EduSystem != '6') ");

if (!queryParam["AcademicYearNo"].IsEmpty())
{


+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuScoreNotPassTwo/StuScoreNotPassTwoService.cs Ver arquivo

@@ -288,7 +288,9 @@ left join StuInfoBasic b on b.StuNo = a.StuNo
where 1 = 1
and a.StuNo not in (select StuNo from StuInfoBasic where ChangeStatus = 1)
and a.LessonSortNo = '1'
and a.Score < 60");
and a.Score < 60
and b.StuId is not null
and (b.EduSystem is null or b.EduSystem != '6') ");

if (!queryParam["AcademicYearNo"].IsEmpty())
{


Carregando…
Cancelar
Salvar