using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using Bowin.Common.Linq; using Bowin.Common.Linq.Entity; using Bowin.Common.Utility; using EMIS.Entities; using EMIS.ViewModel; using EMIS.ViewModel.EvaluationManage.EvaluationSetting; using EMIS.ViewModel.UniversityManage.SpecialtyClassManage; using EMIS.DataLogic.EvaluationManage.EvaluationSetting; using EMIS.CommonLogic.StudentManage.StudentStatistics; namespace EMIS.CommonLogic.EvaluationManage.EvaluationSetting { public class EvaluationGradeControlServices : BaseServices, IEvaluationGradeControlServices { public Lazy EvaluationGradeControlDAL { get; set; } public Lazy InSchoolSettingServices { get; set; } /// /// 查询对应的年级专业评价控制信息View /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// public IGridResultSet GetEvaluationGradeControlViewGrid(ConfiguretView configuretView, Guid? schoolyearID, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? semesterID, DateTime? dateRange, int? inSchoolStatus, int pageIndex, int pageSize) { Expression> expEvaluationGradeControl = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (schoolyearID.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.SchoolyearID == schoolyearID); } if (dateRange.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.StartTime <= dateRange); } if (dateRange.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.EndTime >= dateRange); } Expression> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (inSchoolStatus != null && inSchoolStatus > -1) { var inschoolStatusList = InSchoolSettingServices.Value.GetInschoolStatusList(true); if (inSchoolStatus == 1) { expStudent = expStudent.And(x => inschoolStatusList.Contains(x.InSchoolStatusID)); } if (inSchoolStatus == 0) { expStudent = expStudent.And(x => !inschoolStatusList.Contains(x.InSchoolStatusID)); } } var query = EvaluationGradeControlDAL.Value.GetEvaluationGradeControlViewQueryable(expEvaluationGradeControl, expStudent); if (campusID.HasValue) { query = query.Where(x => x.CampusID == campusID); } if (collegeID.HasValue) { query = query.Where(x => x.CollegeID == collegeID); } if (gradeID.HasValue) { query = query.Where(x => x.GradeID == gradeID); } if (standardID.HasValue) { query = query.Where(x => x.StandardID == standardID); } if (educationID.HasValue) { query = query.Where(x => x.EducationID == educationID); } if (learningformID.HasValue) { query = query.Where(x => x.LearningformID == learningformID); } if (!string.IsNullOrEmpty(learnSystem) && learnSystem != "-1") { var LearnSystems = Convert.ToDecimal(learnSystem); query = query.Where(x => x.LearnSystem == LearnSystems); } if (semesterID.HasValue) { query = query.Where(x => x.SemesterID == semesterID); } //查询条件 if (!string.IsNullOrEmpty(configuretView.ConditionValue)) { query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim()); } return this.GetQueryByDataRangeByCollege(query).OrderBy(x => x.CollegeNo.Length).ThenBy(x => x.CollegeNo).ThenBy(x => x.StandardID) .ThenBy(x => x.GrademajorCode.Length).ThenBy(x => x.GrademajorCode).OrderBy(x => x.SchoolyearValue).ToGridResultSet(pageIndex, pageSize); } /// /// 查询对应的年级专业评价控制信息List /// /// /// /// /// /// /// /// /// /// /// /// /// /// public IList GetEvaluationGradeControlViewList(ConfiguretView configuretView, Guid? schoolyearID, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? semesterID, DateTime? dateRange, int? inSchoolStatus) { Expression> expEvaluationGradeControl = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (schoolyearID.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.SchoolyearID == schoolyearID); } if (dateRange.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.StartTime <= dateRange); } if (dateRange.HasValue) { expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.EndTime >= dateRange); } Expression> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (inSchoolStatus != null && inSchoolStatus > -1) { var inschoolStatusList = InSchoolSettingServices.Value.GetInschoolStatusList(true); if (inSchoolStatus == 1) { expStudent = expStudent.And(x => inschoolStatusList.Contains(x.InSchoolStatusID)); } if (inSchoolStatus == 0) { expStudent = expStudent.And(x => !inschoolStatusList.Contains(x.InSchoolStatusID)); } } var query = EvaluationGradeControlDAL.Value.GetEvaluationGradeControlViewQueryable(expEvaluationGradeControl, expStudent); if (campusID.HasValue) { query = query.Where(x => x.CampusID == campusID); } if (collegeID.HasValue) { query = query.Where(x => x.CollegeID == collegeID); } if (gradeID.HasValue) { query = query.Where(x => x.GradeID == gradeID); } if (standardID.HasValue) { query = query.Where(x => x.StandardID == standardID); } if (educationID.HasValue) { query = query.Where(x => x.EducationID == educationID); } if (learningformID.HasValue) { query = query.Where(x => x.LearningformID == learningformID); } if (!string.IsNullOrEmpty(learnSystem) && learnSystem != "-1") { var LearnSystems = Convert.ToDecimal(learnSystem); query = query.Where(x => x.LearnSystem == LearnSystems); } if (semesterID.HasValue) { query = query.Where(x => x.SemesterID == semesterID); } //查询条件 if (!string.IsNullOrEmpty(configuretView.ConditionValue)) { query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim()); } return this.GetQueryByDataRangeByCollege(query).OrderBy(x => x.CollegeNo.Length).ThenBy(x => x.CollegeNo).ThenBy(x => x.StandardID) .ThenBy(x => x.GrademajorCode.Length).ThenBy(x => x.GrademajorCode).OrderBy(x => x.SchoolyearValue).ToList(); } /// /// 查询对应的年级专业评价控制信息EvaluationGradeControlView /// /// /// public EvaluationGradeControlView GetEvaluationGradeControlView(Guid? evaluationGradeControlID) { try { var query = EvaluationGradeControlDAL.Value.GetEvaluationGradeControlViewQueryable(x => x.EvaluationGradeControlID == evaluationGradeControlID).SingleOrDefault(); return query; } catch (Exception ex) { throw new Exception(ex.Message); } } /// /// 编辑(注:学年学期在入学学年学期和毕业学年学期范围内) /// /// public void EvaluationGradeControlEdit(EvaluationGradeControlView evaluationGradeControlView) { try { var evaluationGradeControlVerify = EvaluationGradeControlDAL.Value.EvaluationGradeControlRepository.GetList(x => x.EvaluationGradeControlID != evaluationGradeControlView.EvaluationGradeControlID && x.SchoolyearID == evaluationGradeControlView.SchoolyearID && x.GrademajorID == evaluationGradeControlView.GrademajorID).SingleOrDefault(); if (evaluationGradeControlVerify == null) { if (!evaluationGradeControlView.SchoolyearID.HasValue) { throw new Exception("学年学期不能为空。"); } var schoolyear = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => x.SchoolyearID == evaluationGradeControlView.SchoolyearID).SingleOrDefault(); if (!evaluationGradeControlView.GrademajorID.HasValue) { throw new Exception("年级专业不能为空。"); } var grademajor = EvaluationGradeControlDAL.Value.GrademajorRepository.GetList(x => x.GrademajorID == evaluationGradeControlView.GrademajorID).SingleOrDefault(); if (grademajor == null) { throw new Exception("年级专业信息不存在。"); } var startSchoolyear = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => x.Years == grademajor.GradeID && x.SchoolcodeID == grademajor.SemesterID).SingleOrDefault(); var graduateSchoolyear = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => x.SchoolyearID == grademajor.GraduateSchoolyearID).SingleOrDefault(); if (startSchoolyear.Value > schoolyear.Value) { throw new Exception("对应的年级专业中入学学年学期大于当前选择的学年学期(不在入学学年学期范围内)。"); } if (graduateSchoolyear.Value < schoolyear.Value) { throw new Exception("对应的年级专业中毕业学年学期小于当前选择的学年学期(不在毕业学年学期范围内)。"); } if (evaluationGradeControlView.EvaluationGradeControlID != Guid.Empty) { var evaluationGradeControl = EvaluationGradeControlDAL.Value.EvaluationGradeControlRepository.GetList(x => x.EvaluationGradeControlID == evaluationGradeControlView.EvaluationGradeControlID).SingleOrDefault(); if (evaluationGradeControl == null) { throw new Exception("数据有误,请核查。"); } else { //表示修改 evaluationGradeControl.SchoolyearID = evaluationGradeControlView.SchoolyearID; evaluationGradeControl.GrademajorID = evaluationGradeControlView.GrademajorID; evaluationGradeControl.Number = evaluationGradeControlView.Number; evaluationGradeControl.StartTime = evaluationGradeControlView.StartTime; evaluationGradeControl.EndTime = evaluationGradeControlView.EndTime; SetModifyStatus(evaluationGradeControl); } } else { //表示新增 var newEvaluationGradeControl = new EM_EvaluationGradeControl(); newEvaluationGradeControl.EvaluationGradeControlID = Guid.NewGuid(); newEvaluationGradeControl.SchoolyearID = evaluationGradeControlView.SchoolyearID; newEvaluationGradeControl.GrademajorID = evaluationGradeControlView.GrademajorID; newEvaluationGradeControl.Number = evaluationGradeControlView.Number; newEvaluationGradeControl.StartTime = evaluationGradeControlView.StartTime; newEvaluationGradeControl.EndTime = evaluationGradeControlView.EndTime; SetNewStatus(newEvaluationGradeControl); UnitOfWork.Add(newEvaluationGradeControl); } } else { throw new Exception("已存在相同的评价控制信息(学年学期、年级专业唯一),请核查。"); } UnitOfWork.Commit(); } catch (Exception ex) { throw new Exception(ex.Message); } } /// /// 批量新增(注:学年学期在入学学年学期和毕业学年学期范围内) /// /// /// /// public string EvaluationGradeControlBatchAdd(List grademajorIDList, EvaluationGradeControlView evaluationGradeControlView) { try { Expression> expEvaluationGradeControl = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); expEvaluationGradeControl = expEvaluationGradeControl.And(x => grademajorIDList.Contains(x.GrademajorID)); var evaluationGradeControlList = EvaluationGradeControlDAL.Value.EvaluationGradeControlRepository.GetList(expEvaluationGradeControl).ToList(); var schoolyearList = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => true).ToList(); var schoolyear = schoolyearList.Where(x => x.SchoolyearID == evaluationGradeControlView.SchoolyearID).SingleOrDefault(); if(schoolyear == null) { throw new Exception("学年学期信息不存在。"); } var grademajorList = EvaluationGradeControlDAL.Value.GrademajorRepository.GetList(x => grademajorIDList.Contains(x.GrademajorID)).ToList(); int success = 0; int fail = 0; string tipMessage = null; var evaluationGradeControlInList = new List(); foreach (var grademajorID in grademajorIDList) { var grademajor = grademajorList.Where(x => x.GrademajorID == grademajorID).SingleOrDefault(); if (grademajor == null) { throw new Exception("年级专业信息不存在。"); } var startSchoolyear = schoolyearList.Where(x => x.Years == grademajor.GradeID && x.SchoolcodeID == grademajor.SemesterID).SingleOrDefault(); if (startSchoolyear.Value <= schoolyear.Value) { var graduateSchoolyear = schoolyearList.Where(x => x.SchoolyearID == grademajor.GraduateSchoolyearID).SingleOrDefault(); if (graduateSchoolyear.Value >= schoolyear.Value) { var evaluationGradeControlVerify = evaluationGradeControlList.Where(x => x.GrademajorID == grademajorID && x.SchoolyearID == evaluationGradeControlView.SchoolyearID).SingleOrDefault(); if (evaluationGradeControlVerify == null) { //新增 var evaluationGradeControl = new EM_EvaluationGradeControl(); evaluationGradeControl.EvaluationGradeControlID = Guid.NewGuid(); evaluationGradeControl.SchoolyearID = evaluationGradeControlView.SchoolyearID; evaluationGradeControl.GrademajorID = grademajorID; evaluationGradeControl.Number = evaluationGradeControlView.Number; evaluationGradeControl.StartTime = evaluationGradeControlView.StartTime; evaluationGradeControl.EndTime = evaluationGradeControlView.EndTime; SetNewStatus(evaluationGradeControl); evaluationGradeControlInList.Add(evaluationGradeControl); success++; } else { //表示已存在相同的评价控制信息 fail++; } } else { //表示对应的年级专业中毕业学年学期小于当前选择的学年学期(不在毕业学年学期范围内) fail++; } } else { //表示对应的年级专业中入学学年学期大于当前选择的学年学期(不在入学学年学期范围内) fail++; } } UnitOfWork.BulkInsert(evaluationGradeControlInList); if (success > 0 && fail <= 0) { tipMessage = success + "条"; } else { tipMessage = success + "条," + fail + "条失败,原因:不在入学学年学期范围内、不在毕业学年学期范围内或已存在相同的评价控制信息(学年学期、年级专业唯一),请检查"; } return tipMessage; } catch (Exception ex) { throw new Exception(ex.Message); } } /// /// 查询年级专业评价控制中未新增年级专业信息View /// /// /// /// /// /// /// /// /// /// /// /// /// /// public IGridResultSet GetGrademajorViewNoAddGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? inSchoolStatus, Guid? schoolyearID, int pageIndex, int pageSize) { Expression> expEvaluationGradeControl = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.SchoolyearID == schoolyearID); Expression> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (inSchoolStatus != null && inSchoolStatus > -1) { var inschoolStatusList = InSchoolSettingServices.Value.GetInschoolStatusList(true); if (inSchoolStatus == 1) { expStudent = expStudent.And(x => inschoolStatusList.Contains(x.InSchoolStatusID)); } if (inSchoolStatus == 0) { expStudent = expStudent.And(x => !inschoolStatusList.Contains(x.InSchoolStatusID)); } } var query = EvaluationGradeControlDAL.Value.GetGrademajorViewNoAddQueryable(expEvaluationGradeControl, expStudent); if (schoolyearID.HasValue) { var schoolyear = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => x.SchoolyearID == schoolyearID).SingleOrDefault(); query = query.Where(x => x.StartValue <= schoolyear.Value); query = query.Where(x => x.GraduateValue >= schoolyear.Value); } if (campusID.HasValue) { query = query.Where(x => x.CampusID == campusID); } if (collegeID.HasValue) { query = query.Where(x => x.CollegeID == collegeID); } if (gradeID.HasValue) { query = query.Where(x => x.GradeID == gradeID); } if (standardID.HasValue) { query = query.Where(x => x.StandardID == standardID); } if (educationID.HasValue) { query = query.Where(x => x.EducationID == educationID); } if (learningformID.HasValue) { query = query.Where(x => x.LearningformID == learningformID); } if (!string.IsNullOrEmpty(learnSystem) && learnSystem != "-1") { var LearnSystems = Convert.ToDecimal(learnSystem); query = query.Where(x => x.LearnSystem == LearnSystems); } //查询条件 if (!string.IsNullOrEmpty(configuretView.ConditionValue)) { query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim()); } return this.GetQueryByDataRangeByCollege(query).OrderBy(x => x.CollegeCode.Length).ThenBy(x => x.CollegeCode).ThenBy(x => x.StandardID) .ThenBy(x => x.Code.Length).ThenBy(x => x.Code).ToGridResultSet(pageIndex, pageSize); } /// /// 查询年级专业评价控制中未新增年级专业信息List /// /// /// /// /// /// /// /// /// /// /// /// /// /// public IList GetGrademajorViewNoAddList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, int? gradeID, int? standardID, int? educationID, int? learningformID, string learnSystem, int? inSchoolStatus, Guid? schoolyearID, int pageIndex, int pageSize) { Expression> expEvaluationGradeControl = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); expEvaluationGradeControl = expEvaluationGradeControl.And(x => x.SchoolyearID == schoolyearID); Expression> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE); if (inSchoolStatus != null && inSchoolStatus > -1) { var inschoolStatusList = InSchoolSettingServices.Value.GetInschoolStatusList(true); if (inSchoolStatus == 1) { expStudent = expStudent.And(x => inschoolStatusList.Contains(x.InSchoolStatusID)); } if (inSchoolStatus == 0) { expStudent = expStudent.And(x => !inschoolStatusList.Contains(x.InSchoolStatusID)); } } var query = EvaluationGradeControlDAL.Value.GetGrademajorViewNoAddQueryable(expEvaluationGradeControl, expStudent); if (schoolyearID.HasValue) { var schoolyear = EvaluationGradeControlDAL.Value.SchoolyearRepository.GetList(x => x.SchoolyearID == schoolyearID).SingleOrDefault(); query = query.Where(x => x.StartValue <= schoolyear.Value); query = query.Where(x => x.GraduateValue >= schoolyear.Value); } if (campusID.HasValue) { query = query.Where(x => x.CampusID == campusID); } if (collegeID.HasValue) { query = query.Where(x => x.CollegeID == collegeID); } if (gradeID.HasValue) { query = query.Where(x => x.GradeID == gradeID); } if (standardID.HasValue) { query = query.Where(x => x.StandardID == standardID); } if (educationID.HasValue) { query = query.Where(x => x.EducationID == educationID); } if (learningformID.HasValue) { query = query.Where(x => x.LearningformID == learningformID); } if (!string.IsNullOrEmpty(learnSystem) && learnSystem != "-1") { var LearnSystems = Convert.ToDecimal(learnSystem); query = query.Where(x => x.LearnSystem == LearnSystems); } //查询条件 if (!string.IsNullOrEmpty(configuretView.ConditionValue)) { query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim()); } return this.GetQueryByDataRangeByCollege(query).OrderBy(x => x.CollegeCode.Length).ThenBy(x => x.CollegeCode).ThenBy(x => x.StandardID) .ThenBy(x => x.Code.Length).ThenBy(x => x.Code).ToList(); } /// /// 删除 /// /// /// public bool EvaluationGradeControlDelete(List evaluationGradeControlIDs) { try { UnitOfWork.Delete(x => evaluationGradeControlIDs.Contains(x.EvaluationGradeControlID)); return true; } catch (Exception) { throw; } } } }