소스 검색

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

新疆影视学院高职
dyy 2 년 전
부모
커밋
78053ec29a
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  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 파일 보기

@@ -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 파일 보기

@@ -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())
{


불러오는 중...
취소
저장