瀏覽代碼

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

新疆影视学院高职
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())
{


Loading…
取消
儲存