DegreeConditionServices.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Linq.Expressions;
  6. using Bowin.Common.Linq.Entity;
  7. using Bowin.Common.Linq;
  8. using EMIS.ViewModel;
  9. using EMIS.Entities;
  10. using EMIS.ViewModel.DegreeManage.DegreeSetting;
  11. using EMIS.DataLogic.DegreeManage.DegreeSetting;
  12. using EMIS.DataLogic.GraduationManage.GraduationSetting;
  13. using EMIS.CommonLogic.ScoreManage.LevelScoreManage;
  14. using EMIS.CommonLogic.SystemServices;
  15. namespace EMIS.CommonLogic.DegreeManage.DegreeSetting
  16. {
  17. public class DegreeConditionServices : BaseServices, IDegreeConditionServices
  18. {
  19. public DegreeConditionDAL DegreeConditionDAL { get; set; }
  20. public Lazy<GraduationConditionDAL> GraduationConditionDAL { get; set; }
  21. public Lazy<IParameterServices> ParameterServices { get; set; }
  22. public Lazy<ILevelScoreServices> LevelScoreServices { get; set; }
  23. /// <summary>
  24. /// 查询学位条件信息View
  25. /// </summary>
  26. /// <param name="configuretView"></param>
  27. /// <param name="isCurrent"></param>
  28. /// <param name="pageIndex"></param>
  29. /// <param name="pageSize"></param>
  30. /// <returns></returns>
  31. public IGridResultSet<DegreeConditionView> GetDegreeConditionViewGrid(ConfiguretView configuretView, int? isCurrent, int pageIndex, int pageSize)
  32. {
  33. //学位条件
  34. Expression<Func<ER_DegreeCondition, bool>> exp = (x => true);
  35. if (isCurrent.HasValue)
  36. {
  37. if (isCurrent == 1)
  38. {
  39. exp = exp.And(x => x.RecordStatus >= (int)SYS_STATUS.USABLE);
  40. }
  41. if (isCurrent == 0)
  42. {
  43. exp = exp.And(x => x.RecordStatus <= (int)SYS_STATUS.UNUSABLE);
  44. }
  45. }
  46. var query = DegreeConditionDAL.GetDegreeConditionViewQueryable(exp);
  47. //查询条件
  48. if (!string.IsNullOrEmpty(configuretView.ConditionValue))
  49. {
  50. query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim());
  51. }
  52. return query.OrderBy(x => x.OrderNo).ToGridResultSet<DegreeConditionView>(pageIndex, pageSize);
  53. }
  54. /// <summary>
  55. /// 查询学位条件信息List
  56. /// </summary>
  57. /// <param name="configuretView"></param>
  58. /// <param name="isCurrent"></param>
  59. /// <returns></returns>
  60. public List<DegreeConditionView> GetDegreeConditionViewList(ConfiguretView configuretView, int? isCurrent)
  61. {
  62. //学位条件
  63. Expression<Func<ER_DegreeCondition, bool>> exp = (x => true);
  64. if (isCurrent.HasValue)
  65. {
  66. if (isCurrent == 1)
  67. {
  68. exp = exp.And(x => x.RecordStatus >= (int)SYS_STATUS.USABLE);
  69. }
  70. if (isCurrent == 0)
  71. {
  72. exp = exp.And(x => x.RecordStatus <= (int)SYS_STATUS.UNUSABLE);
  73. }
  74. }
  75. var query = DegreeConditionDAL.GetDegreeConditionViewQueryable(exp);
  76. //查询条件
  77. if (!string.IsNullOrEmpty(configuretView.ConditionValue))
  78. {
  79. query = query.DynamicWhere(configuretView.Attribute, configuretView.Condition, configuretView.ConditionValue.Trim());
  80. }
  81. return query.OrderBy(x => x.OrderNo).ToList();
  82. }
  83. /// <summary>
  84. /// 根据学位条件ID查询对应学位条件DegreeConditionView
  85. /// </summary>
  86. /// <param name="DegreeConditionID"></param>
  87. /// <returns></returns>
  88. public DegreeConditionView GetDegreeConditionView(Guid? DegreeConditionID)
  89. {
  90. try
  91. {
  92. var query = DegreeConditionDAL.GetDegreeConditionViewQueryable(x => x.DegreeConditionID == DegreeConditionID).SingleOrDefault();
  93. return query;
  94. }
  95. catch (Exception ex)
  96. {
  97. throw new Exception(ex.Message);
  98. }
  99. }
  100. /// <summary>
  101. /// 编辑
  102. /// </summary>
  103. /// <param name="degreeConditionView"></param>
  104. public void DegreeConditionEdit(DegreeConditionView degreeConditionView)
  105. {
  106. try
  107. {
  108. //查询数据库进行验证
  109. var degreeConditionVerify = DegreeConditionDAL.DegreeConditionRepository.GetList(x => x.DegreeConditionID != degreeConditionView.DegreeConditionID && x.Title == degreeConditionView.Title).SingleOrDefault();
  110. if (degreeConditionVerify == null)
  111. {
  112. //数据有误验证
  113. if (degreeConditionView.DegreeConditionID != Guid.Empty)
  114. {
  115. var degreeCondition = DegreeConditionDAL.DegreeConditionRepository.GetList(x => x.DegreeConditionID == degreeConditionView.DegreeConditionID).SingleOrDefault();
  116. if (degreeCondition == null)
  117. {
  118. throw new Exception("数据有误,请核查");
  119. }
  120. else
  121. {
  122. //表示修改
  123. degreeCondition.OrderNo = (short?)degreeConditionView.OrderNo;
  124. degreeCondition.Title = degreeConditionView.Title;
  125. degreeCondition.RecordStatus = degreeConditionView.IsEnable ? (int)SYS_STATUS.USABLE : (int)SYS_STATUS.UNUSABLE;
  126. SetModifyStatus(degreeCondition);
  127. }
  128. }
  129. else
  130. {
  131. //表示新增
  132. ER_DegreeCondition degreeCondition = new ER_DegreeCondition();
  133. degreeCondition.DegreeConditionID = Guid.NewGuid();
  134. degreeCondition.OrderNo = (short?)degreeConditionView.OrderNo;
  135. degreeCondition.Title = degreeConditionView.Title;
  136. degreeCondition.MethodFullName = degreeConditionView.MethodFullName;
  137. SetNewStatus(degreeCondition);
  138. UnitOfWork.Add(degreeCondition);
  139. }
  140. }
  141. else
  142. {
  143. throw new Exception("已存在相同条件名称的学位条件,请核查");
  144. }
  145. //事务提交
  146. UnitOfWork.Commit();
  147. }
  148. catch (Exception ex)
  149. {
  150. throw new Exception(ex.Message);
  151. }
  152. }
  153. /// <summary>
  154. /// 无条件
  155. /// </summary>
  156. /// <param name="userID"></param>
  157. /// <returns></returns>
  158. public string NoCondition(Guid? userID)
  159. {
  160. return "Pass";
  161. }
  162. /// <summary>
  163. /// 毕业审核通过(此处毕业审核通过表示学生信息中在校状态为毕业)
  164. /// </summary>
  165. /// <param name="userID"></param>
  166. /// <returns></returns>
  167. public string GraduationApprovePass(Guid? userID)
  168. {
  169. try
  170. {
  171. //查询对应的学生信息
  172. var student = DegreeConditionDAL.StudentRepository.GetList(x => x.UserID == userID).SingleOrDefault();
  173. if (student == null)
  174. {
  175. return "数据有误,请核查";
  176. }
  177. else
  178. {
  179. if (student.InSchoolStatusID != (int)CF_InschoolStatus.Graduation)
  180. {
  181. return "毕业审核未通过";
  182. }
  183. }
  184. return "Pass";
  185. }
  186. catch (Exception ex)
  187. {
  188. throw new Exception(ex.Message);
  189. }
  190. }
  191. /// <summary>
  192. /// 毕业设计(论文)成绩通过(匹配配置信息表--优、良,通常大于等于80分)
  193. /// 注:成绩类型明细划分
  194. /// 小于60-不及格、大于等于60且小于70-及格、大于等于70且小于80-中等、大于等于80且小于90-良好、大于等于90优秀以上
  195. /// </summary>
  196. /// <param name="userID"></param>
  197. /// <returns></returns>
  198. public string GraduateDesignCoursePass(Guid? userID)
  199. {
  200. try
  201. {
  202. var degreeGraDesignCoursePassScore = ParameterServices.Value.GetParameterValue(CF_ParameterType.DegreeGraDesignCoursePass);
  203. if (string.IsNullOrEmpty(degreeGraDesignCoursePassScore))
  204. {
  205. throw new Exception("未设置学位审核毕设成绩通过分数,请设置。");
  206. }
  207. //学生信息
  208. Expression<Func<CF_Student, bool>> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE);
  209. expStudent = expStudent.And(x => x.UserID == userID);
  210. //查询对应的毕业设计课程信息List
  211. var graduateDesignCourseList = GraduationConditionDAL.Value.GraduateDesignCoursematerialRepository.GetList(x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE).ToList();
  212. if (graduateDesignCourseList == null || graduateDesignCourseList.Count() <= 0)
  213. {
  214. return "未设置毕业设计课程,请设置";
  215. }
  216. //查询对应的毕业设计课程成绩信息List
  217. var graduateDesignCourseViewList = GraduationConditionDAL.Value.GetGraduateDesignCourseViewQueryable(expStudent).ToList();
  218. if (graduateDesignCourseViewList == null || graduateDesignCourseViewList.Count() <= 0)
  219. {
  220. return "毕设成绩未录入";
  221. }
  222. foreach (var graduateDesignCourseView in graduateDesignCourseViewList)
  223. {
  224. if (graduateDesignCourseView.TotalScore < Convert.ToDecimal(degreeGraDesignCoursePassScore))
  225. {
  226. return "毕设成绩未达优、良以上";
  227. }
  228. }
  229. return "Pass";
  230. }
  231. catch (Exception ex)
  232. {
  233. throw new Exception(ex.Message);
  234. }
  235. }
  236. /// <summary>
  237. /// 学位外语考试通过(匹配配置信息表--学位外语设置信息表)
  238. /// </summary>
  239. /// <param name="userID"></param>
  240. /// <returns></returns>
  241. public string DegreeForeignLanguagePass(Guid? userID)
  242. {
  243. try
  244. {
  245. //查询对应的学位外语设置信息
  246. var degreeForeignLanguage = DegreeConditionDAL.DegreeForeignLanguageRepository.GetList(x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE).SingleOrDefault();
  247. if (degreeForeignLanguage == null)
  248. {
  249. return "学位外语设置信息未设置,请设置";
  250. }
  251. else
  252. {
  253. if (degreeForeignLanguage.PassScore == null)
  254. {
  255. return "学位外语成绩通过分数为空,请设置";
  256. }
  257. }
  258. var levelScorePassStatus = LevelScoreServices.Value.GetCorrectEndStatus();
  259. if (levelScorePassStatus == null)
  260. {
  261. throw new Exception("工作流平台中,科目成绩录入流程结束环节未配置,请核查。");
  262. }
  263. //学生信息
  264. Expression<Func<CF_Student, bool>> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE);
  265. expStudent = expStudent.And(x => x.UserID == userID);
  266. //查询对应的学位外语成绩信息List
  267. var degreeForeignLanguageViewList = DegreeConditionDAL.GetDegreeForeignLanguageScoreViewQueryable(expStudent).ToList();
  268. if (degreeForeignLanguageViewList == null || degreeForeignLanguageViewList.Count() <= 0)
  269. {
  270. return "学位外语成绩未录入";
  271. }
  272. else
  273. {
  274. degreeForeignLanguageViewList = degreeForeignLanguageViewList.Where(x => x.ApprovalStatus == levelScorePassStatus).ToList();
  275. if (degreeForeignLanguageViewList == null || degreeForeignLanguageViewList.Count() <= 0)
  276. {
  277. return "学位外语成绩未进行审核";
  278. }
  279. else if (degreeForeignLanguageViewList.Count() > 1)
  280. {
  281. return "存在多门审核通过的学位外语成绩";
  282. }
  283. else
  284. {
  285. var degreeForeignLanguageView = degreeForeignLanguageViewList.Where(x => true).SingleOrDefault();
  286. if (degreeForeignLanguageView.TotalScore < degreeForeignLanguage.PassScore)
  287. {
  288. return "学位外语成绩未通过";
  289. }
  290. return "Pass";
  291. }
  292. }
  293. }
  294. catch (Exception ex)
  295. {
  296. throw new Exception(ex.Message);
  297. }
  298. }
  299. /// <summary>
  300. /// 学位课成绩平均分通过(通常不低于75分)
  301. /// </summary>
  302. /// <param name="userID"></param>
  303. /// <returns></returns>
  304. public string DegreeCourseAvgPass(Guid? userID)
  305. {
  306. try
  307. {
  308. var degreeDegCourseAvgPassScore = ParameterServices.Value.GetParameterValue(CF_ParameterType.DegreeDegCourseAvgPass);
  309. if (string.IsNullOrEmpty(degreeDegCourseAvgPassScore))
  310. {
  311. throw new Exception("未设置学位审核学位课成绩平均分通过分数,请设置。");
  312. }
  313. //学生信息
  314. Expression<Func<CF_Student, bool>> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE);
  315. expStudent = expStudent.And(x => x.UserID == userID);
  316. //查询对应的学生学位课程执行计划信息List
  317. var studentExecutablePlanViewList = DegreeConditionDAL
  318. .GetStudentDegreeCourseExecutablePlanViewQueryable(expStudent).ToList();
  319. if (studentExecutablePlanViewList == null || studentExecutablePlanViewList.Count() <= 0)
  320. {
  321. return "执行计划中学位课信息为空,请检查";
  322. }
  323. //查询对应的学生学位课程最终成绩信息List
  324. var studentDegreeCourseScoreViewList = DegreeConditionDAL
  325. .GetDegreeCourseFinallyScoreExecutablePlanViewQueryable(expStudent).ToList();
  326. if (studentDegreeCourseScoreViewList == null || studentDegreeCourseScoreViewList.Count() <= 0)
  327. {
  328. return "学位课成绩未录入";
  329. }
  330. else
  331. {
  332. decimal? degreeDegCourseAvg = 0;
  333. var studentDegreeCourseGroupList = studentDegreeCourseScoreViewList.GroupBy(x => x.UserID).ToList();
  334. foreach (var studentDegreeCourseGroup in studentDegreeCourseGroupList)
  335. {
  336. degreeDegCourseAvg = studentDegreeCourseGroup.Average(x => x.TotalScore);
  337. if (degreeDegCourseAvg < Convert.ToDecimal(degreeDegCourseAvgPassScore))
  338. {
  339. return "学位平均分低于" + degreeDegCourseAvgPassScore
  340. + "分(" + Math.Round(degreeDegCourseAvg.Value, 1).ToString()
  341. + "分)";
  342. }
  343. }
  344. }
  345. return "Pass";
  346. }
  347. catch (Exception ex)
  348. {
  349. throw new Exception(ex.Message);
  350. }
  351. }
  352. /// <summary>
  353. /// 补考需及格且门数符合要求(通常门数为小于4门)
  354. /// </summary>
  355. /// <param name="userID"></param>
  356. /// <returns></returns>
  357. public string ResitScoreComplete(Guid? userID)
  358. {
  359. try
  360. {
  361. var degreeResitLessThanNum = ParameterServices.Value.GetParameterValue(CF_ParameterType.DegreeResitLessThanNum);
  362. if (string.IsNullOrEmpty(degreeResitLessThanNum))
  363. {
  364. throw new Exception("未设置学位审核补考小于门数,请设置。");
  365. }
  366. //学生信息
  367. Expression<Func<CF_Student, bool>> expStudent = (x => x.RecordStatus > (int)SYS_STATUS.UNUSABLE);
  368. expStudent = expStudent.And(x => x.UserID == userID);
  369. //查询对应的学生补考成绩信息List(暂时只查询补考一、毕业前补考,后期考虑根据配置表定义补考)
  370. var studentResitScoreViewList = GraduationConditionDAL.Value
  371. .GetFinallyScoreViewQueryable(expStudent)
  372. .Where(x => x.ExamsCategoryID == (int)CF_ExamsCategory.Resit
  373. || x.ExamsCategoryID == (int)CF_ExamsCategory.GraduationExam).ToList();
  374. if (studentResitScoreViewList != null && studentResitScoreViewList.Count() > 0)
  375. {
  376. if (studentResitScoreViewList.Count() >= Convert.ToInt32(degreeResitLessThanNum))
  377. {
  378. return "补考门数未小于" + degreeResitLessThanNum
  379. + "门(补考" + studentResitScoreViewList.Count().ToString()
  380. + "门)";
  381. }
  382. else
  383. {
  384. foreach (var studentResitScoreView in studentResitScoreViewList)
  385. {
  386. if (studentResitScoreView.TotalScore < 60)
  387. {
  388. return studentResitScoreView.CourseName + "未及格("
  389. + studentResitScoreView.StarttermName + ","
  390. + studentResitScoreView.ExamsCategoryName + ")";
  391. }
  392. }
  393. }
  394. }
  395. return "Pass";
  396. }
  397. catch (Exception ex)
  398. {
  399. throw new Exception(ex.Message);
  400. }
  401. }
  402. }
  403. }