Bläddra i källkod

选修课课程:增加选课专业列

大厂分支
dyy 4 år sedan
förälder
incheckning
df72e78f61
4 ändrade filer med 29 tillägg och 1 borttagningar
  1. +13
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/OpenLessonPlanOfElective/MergeIndex.js
  2. +5
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/ElectiveMajor/ElectiveMajorEntity.cs
  3. +6
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/OpenLessonPlanOfElective/OpenLessonPlanOfElectiveEntity.cs
  4. +5
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/OpenLessonPlanOfElective/OpenLessonPlanOfElectiveService.cs

+ 13
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/OpenLessonPlanOfElective/MergeIndex.js Visa fil

@@ -217,7 +217,19 @@ var bootstrap = function ($, learun) {
{ label: "已报人数", name: "StuNumOfApply", width: 60, align: "left" },
{ label: "通过人数", name: "StuNum", width: 60, align: "left" },
{ label: "已报人数(预)", name: "StuNumOfApplyPre", width: 80, align: "left" },
{ label: "通过人数(预)", name: "StuNumPre", width: 80, align: "left" }
{ label: "通过人数(预)", name: "StuNumPre", width: 80, align: "left" },
{
label: "选课专业", name: "ElectiveMajorList", width: 150, align: "left",formatter: function (cellvalue,row) {
var str = "";
for (var i = 0; i < row.ElectiveMajorList.length; i++) {
str += row.ElectiveMajorList[i].Grade + "级" + row.ElectiveMajorList[i].MajorName;
if (i != row.ElectiveMajorList.length - 1) {
str += ",";
}
}
return str;
}
}
],
mainId: 'Id',
isPage: true,


+ 5
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/ElectiveMajor/ElectiveMajorEntity.cs Visa fil

@@ -69,6 +69,11 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
}
#endregion
#region 扩展字段
[NotMapped]
public string MajorNo { get; set; }
[NotMapped]
public string MajorName { get; set; }

#endregion
}
}


+ 6
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/OpenLessonPlanOfElective/OpenLessonPlanOfElectiveEntity.cs Visa fil

@@ -1,5 +1,6 @@
using Learun.Util;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace Learun.Application.TwoDevelopment.EducationalAdministration
@@ -221,6 +222,11 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
/// </summary>
[NotMapped] public string LessonNo2 { get; set; }
[NotMapped] public string EmpNo2 { get; set; }
/// <summary>
/// 选课专业列表
/// </summary>
[NotMapped]
public List<ElectiveMajorEntity> ElectiveMajorList { get; set; }
#endregion
}
}


+ 5
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/OpenLessonPlanOfElective/OpenLessonPlanOfElectiveService.cs Visa fil

@@ -362,6 +362,10 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
item.StuNumOfApply = aa.Where(x => (x.Status == 1 || x.Status == 2)).Count();
//审核通过人数
item.StuNum = aa.Where(x => x.Status == 2).Count();
//选课专业
var strSql2 = new StringBuilder();
strSql2.Append("select e.Id,e.OLPOEId,e.MajorId,e.Grade,m.MajorNo,m.MajorName from ElectiveMajor e left join CdMajor m on e.MajorId=m.ID where e.OLPOEId='" + item.Id + "' and e.MajorId is not null and e.Grade is not null ");
item.ElectiveMajorList = this.BaseRepository("CollegeMIS").FindList<ElectiveMajorEntity>(strSql2.ToString()).OrderBy(x => x.MajorNo).ThenBy(x => x.Grade).ToList();

//模式一:预选课
var aaa = this.BaseRepository("CollegeMIS").FindList<StuSelectLessonListOfElectivePreEntity>(x => x.OLPEId == item.Id);
@@ -370,6 +374,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
//审核通过人数
item.StuNumPre = aaa.Where(x => x.Status == 2).Count();


}

return list;


Laddar…
Avbryt
Spara