using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Bowin.Common.Utility; using Bowin.Common.Data; using Bowin.Common.Linq; using Bowin.Common.JSON; using Bowin.Web.Controls.Mvc; using EMIS.Utility; using EMIS.Web.Controls; using EMIS.ViewModel; using EMIS.ViewModel.WorkflowManage; using EMIS.ViewModel.StudentManage.StudentProfile; using EMIS.CommonLogic.StudentManage.StudentProfile; namespace EMIS.Web.Controllers.StudentManage.StudentProfile { [Authorization] public class StudentPunishController : Controller { public Lazy StudentPunishServices { get; set; } /// /// 学生处分页面 /// /// public ActionResult List() { return View(); } /// /// 学生处分列表查询 /// /// /// [HttpPost] public ActionResult List(QueryParamsModel pararms) { ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms); var schoolyearID = pararms.getExtraGuid("SchoolyearDropdown"); var campusID = pararms.getExtraGuid("CampusDropdown"); var collegeID = pararms.getExtraGuid("CollegeDropdown"); var gradeID = pararms.getExtraInt("DictionaryGrade") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryGrade"); var standardID = pararms.getExtraInt("DictionaryStandard") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryStandard"); var educationID = pararms.getExtraInt("DictionaryEducation") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryEducation"); var learningformID = pararms.getExtraInt("DictionaryLearningform") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryLearningform"); var learnSystem = pararms.getExtraString("DictionaryLearnSystem"); var punishTypeID = pararms.getExtraInt("DictionaryPunishType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryPunishType"); var punishLevelID = pararms.getExtraInt("DictionaryPunishLevel") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryPunishLevel"); var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus"); var approvalStatus = pararms.getExtraInt("DictionaryApprovalStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryApprovalStatus"); return base.Json(StudentPunishServices.Value.GetStudentPunishViewGrid(configuretView, schoolyearID, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, punishTypeID, punishLevelID, inSchoolStatus, approvalStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 复制新增 /// /// /// public ActionResult CopyAdd(Guid studentPunishID) { var studentPunishView = new StudentPunishView(); studentPunishView = StudentPunishServices.Value.GetStudentPunishView(studentPunishID); return View("Edit", studentPunishView); } /// /// 复制新增 /// /// /// [HttpPost] public ActionResult CopyAdd(StudentPunishView studentPunishView) { studentPunishView.StudentPunishID = Guid.Empty; return this.Edit(studentPunishView); } /// /// 编辑(新增、修改) /// /// /// [HttpGet] public ActionResult Edit(Guid? studentPunishID) { var studentPunishView = new StudentPunishView(); if (studentPunishID.HasValue && studentPunishID != Guid.Empty) { studentPunishView = StudentPunishServices.Value.GetStudentPunishView(studentPunishID); } else { studentPunishView.PunishDate = DateTime.Now; } return View(studentPunishView); } /// /// 编辑(新增、修改) /// /// /// [HttpPost] public ActionResult Edit(StudentPunishView studentPunishView) { try { StudentPunishServices.Value.StudentPunishEdit(studentPunishView); return Json(new ReturnMessage() { IsSuccess = true, Message = "保存成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "保存失败,原因:" + ex.Message }); } } /// /// 删除 /// /// /// [HttpPost] public ActionResult Delete(string studentPunishIDs) { try { List list = studentPunishIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); StudentPunishServices.Value.StudentPunishDelete(list); return base.Json(new ReturnMessage { IsSuccess = true, Message = "删除成功。" }); } catch (Exception ex) { return base.Json(new ReturnMessage() { IsSuccess = false, Message = "删除失败,原因:" + ex.Message }); } } /// /// 提交 /// /// /// [HttpPost] public ActionResult Submit(string studentPunishIDs) { try { List list = studentPunishIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => new Guid(x)).ToList(); var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal; string result = StudentPunishServices.Value.StudentPunishSubmit(list, user.UserID, ""); return Json(new ReturnMessage() { IsSuccess = true, Message = "提交成功" + result + "。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "提交失败,原因:" + ex.Message }); } } /// /// 审核页面(单个) /// /// /// [HttpGet] public ActionResult Approve(Guid? studentPunishID) { var studentPunishView = StudentPunishServices.Value.GetStudentPunishView(studentPunishID); if (studentPunishView == null) { return RedirectToAction("MsgShow", "Common", new { WindowID = Request["WindowID"], msg = "操作失败,原因:数据有误。", url = Url.Action("List").AddMenuParameter() }); } //对已结束的流程状态进行判断(包括正常结束、非正常结束[BP]标识) var endStatusList = StudentPunishServices.Value.GetBackpointStatus(); var correctEndStatusID = StudentPunishServices.Value.GetCorrectEndStatus(); endStatusList.Add(correctEndStatusID); foreach (var endStatus in endStatusList) { if (studentPunishView.ApprovalStatus == endStatus) { return RedirectToAction("MsgShow", "Common", new { WindowID = Request["WindowID"], msg = "无法对已结束的流程进行审核。", url = Url.Action("List").AddMenuParameter() }); } } var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; //根据当前环节ID、用户ID查询下一步审批动作信息List(ActionView) var actionViewList = StudentPunishServices.Value.GetActionView((Guid)studentPunishID, user.UserID); if (actionViewList == null || actionViewList.Count() <= 0) { return RedirectToAction("MsgShow", "Common", new { WindowID = Request["WindowID"], msg = "对不起,您没权限操作。", url = Url.Action("List").AddMenuParameter() }); } var dropList = actionViewList.Select(x => new DropdownListItem { Text = x.ActionName, Value = x.ToJson() }).ToList(); ViewBag.ListAction = dropList; return View(studentPunishView); } /// /// 审核页面(单个) /// /// /// [HttpPost] public ActionResult Approve(StudentPunishView studentPunishView) { try { var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; string action = Request.Form["ddlAction"]; if (string.IsNullOrEmpty(action)) { throw new Exception("请选择处理动作"); } var actionID = action.JsonToObject().ActionID; List list = new List(); list.Add(studentPunishView.StudentPunishID); StudentPunishServices.Value.StudentPunishApproveConfirm(list, user.UserID, actionID, studentPunishView.Comment); return Json(new ReturnMessage() { IsSuccess = true, Message = "审核成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "审核失败,原因:" + ex.Message }); } } /// /// 查询对应的流程环节动作List(ActionView) /// /// /// [HttpPost] public ActionResult ApprovalHandle(Guid? studentPunishID) { var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; //根据当前环节ID、用户ID查询下一步审批动作信息List(ActionView) var actionViewList = StudentPunishServices.Value.GetActionView((Guid)studentPunishID, user.UserID); var dropList = actionViewList.Select(x => new DropdownListItem { Text = x.ActionName, Value = x.ToJson() }).ToList(); return View(dropList); } /// /// 审批确定(批量) /// /// /// /// /// [HttpPost] public ActionResult ApproveConfirm(string studentPunishIDs, Guid actionID, string comment) { try { List list = studentPunishIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; StudentPunishServices.Value.StudentPunishApproveConfirm(list, user.UserID, actionID, comment); return Json(new ReturnMessage() { IsSuccess = true, Message = "审核成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "审核失败,原因:" + ex.Message }); } } /// /// 撤销页面(单个) /// /// /// [HttpGet] public ActionResult Cancel(Guid? studentPunishID) { var studentPunishView = new StudentPunishView(); if (studentPunishID.HasValue && studentPunishID != Guid.Empty) { studentPunishView = StudentPunishServices.Value.GetStudentPunishView(studentPunishID); } studentPunishView.CancelDate = DateTime.Now; return View(studentPunishView); } /// /// 撤销页面(单个) /// /// /// [HttpPost] public ActionResult Cancel(StudentPunishView studentPunishView) { try { var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; List list = new List(); list.Add(studentPunishView.StudentPunishID); StudentPunishServices.Value.StudentPunishCancelConfirm(list, user.UserID, studentPunishView.CancelDocNo, studentPunishView.CancelDate, studentPunishView.Comment); return Json(new ReturnMessage() { IsSuccess = true, Message = "撤销成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "撤销失败,原因:" + ex.Message }); } } /// /// 撤销确定(批量) /// /// /// /// [HttpPost] public ActionResult CancelConfirm(string studentPunishIDs, string comment) { try { List list = studentPunishIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; StudentPunishServices.Value.StudentPunishCancelConfirm(list, user.UserID, comment); return Json(new ReturnMessage() { IsSuccess = true, Message = "撤销成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "撤销失败,原因:" + ex.Message }); } } /// /// Excel导出 /// /// [HttpPost] public ActionResult Excel() { try { NpoiExcelHelper neh = new NpoiExcelHelper(); ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null); var schoolyearID = Request.Form["SchoolyearDropdown"] == DropdownList.SELECT_ALL.ToString() ? null : Request.Form["SchoolyearDropdown"].ParseStrTo(); var campusID = Request.Form["CampusDropdown"].ParseStrTo(); var collegeID = Request.Form["CollegeDropdown"].ParseStrTo(); var gradeID = Request.Form["DictionaryGrade"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryGrade"].ParseStrTo(); var standardID = Request.Form["DictionaryStandard"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryStandard"].ParseStrTo(); var educationID = Request.Form["DictionaryEducation"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryEducation"].ParseStrTo(); var learningformID = Request.Form["DictionaryLearningform"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryLearningform"].ParseStrTo(); var learnSystem = Request.Form["DictionaryLearnSystem"].ToString(); var punishTypeID = Request.Form["DictionaryPunishType"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryPunishType"].ParseStrTo(); var punishLevelID = Request.Form["DictionaryPunishLevel"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryPunishLevel"].ParseStrTo(); var inSchoolStatus = Request.Form["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryInschoolStatus"].ParseStrTo(); var approvalStatus = Request.Form["DictionaryApprovalStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryApprovalStatus"].ParseStrTo(); var dt = StudentPunishServices.Value.GetStudentPunishViewList(configuretView, schoolyearID, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, punishTypeID, punishLevelID, inSchoolStatus, approvalStatus) .Select(x => new { x.SchoolyearCode, x.StudentNo, x.Name, x.SexName, x.InSchoolStatusName, x.StudentStatusName, x.GradeID, x.StandardCode, x.StandardID, x.StandardName, x.EducationName, x.LearningformName, LearnSystem = x.LearnSystem.HasValue ? x.LearnSystem.Value.ToString("#.#") : null, x.ClassmajorNo, x.ClassmajorName, x.GrademajorCode, x.GrademajorName, x.CollegeNo, x.CollegeName, x.CampusCode, x.CampusName, x.PunishTypeName, x.PunishLevelName, x.DocNo, PunishDate = x.PunishDate.HasValue ? x.PunishDate.Value.ToString("yyyy-MM-dd") : "", x.Reason, x.CancelDocNo, CancelDate = x.CancelDate.HasValue ? x.CancelDate.Value.ToString("yyyy-MM-dd") : "", x.ApprovalStatusName }).ToTable(); string[] liststring = { "学年学期", "学号", "姓名", "性别", "在校状态", "学籍状态", "年级", "专业代码", "专业ID(Value)", "专业名称", RSL.Get("EducationID"), "学习形式", "学制", "班级编号", "班级名称", "年级专业编号", "年级专业名称", RSL.Get("CollegeCode"), RSL.Get("CollegeName"), RSL.Get("CampusCode"), RSL.Get("CampusName"), "处分类型", "处分级别", "处分文号", "处分日期", "处分原因", "撤销文号", "撤销日期", "审批状态" }; neh.Export(dt, liststring, "学生处分信息" + DateTime.Now.ToString("yyyyMMdd")); return Json(new ReturnMessage() { IsSuccess = true, Message = "导出成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "导出失败,原因:" + ex.Message }); } } } }