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 StudentEncourageController : Controller { public Lazy StudentEncourageServices { 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 encourageNameID = pararms.getExtraInt("DictionaryEncourageName") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryEncourageName"); var encourageTypeID = pararms.getExtraInt("DictionaryEncourageType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryEncourageType"); var encourageLevelID = pararms.getExtraInt("DictionaryEncourageLevel") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryEncourageLevel"); 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(StudentEncourageServices.Value.GetStudentEncourageViewGrid(configuretView, schoolyearID, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, encourageNameID, encourageTypeID, encourageLevelID, inSchoolStatus, approvalStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 复制新增 /// /// /// public ActionResult CopyAdd(Guid studentEncourageID) { var studentEncourageView = new StudentEncourageView(); studentEncourageView = StudentEncourageServices.Value.GetStudentEncourageView(studentEncourageID); return View("Edit", studentEncourageView); } /// /// 复制新增 /// /// /// [HttpPost] public ActionResult CopyAdd(StudentEncourageView studentEncourageView) { studentEncourageView.StudentEncourageID = Guid.Empty; return this.Edit(studentEncourageView); } /// /// 编辑(新增、修改) /// /// /// [HttpGet] public ActionResult Edit(Guid? studentEncourageID) { var studentEncourageView = new StudentEncourageView(); if (studentEncourageID.HasValue && studentEncourageID != Guid.Empty) { studentEncourageView = StudentEncourageServices.Value.GetStudentEncourageView(studentEncourageID); } else { studentEncourageView.EncourageDate = DateTime.Now; } return View(studentEncourageView); } /// /// 编辑(新增、修改) /// /// /// [HttpPost] public ActionResult Edit(StudentEncourageView studentEncourageView) { try { StudentEncourageServices.Value.StudentEncourageEdit(studentEncourageView); return Json(new ReturnMessage() { IsSuccess = true, Message = "保存成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "保存失败,原因:" + ex.Message }); } } /// /// 删除 /// /// /// [HttpPost] public ActionResult Delete(string studentEncourageIDs) { try { List list = studentEncourageIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); StudentEncourageServices.Value.StudentEncourageDelete(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 studentEncourageIDs) { try { List list = studentEncourageIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => new Guid(x)).ToList(); var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal; string result = StudentEncourageServices.Value.StudentEncourageSubmit(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? studentEncourageID) { var studentEncourageView = StudentEncourageServices.Value.GetStudentEncourageView(studentEncourageID); if (studentEncourageView == null) { return RedirectToAction("MsgShow", "Common", new { WindowID = Request["WindowID"], msg = "操作失败,原因:数据有误。", url = Url.Action("List").AddMenuParameter() }); } //对已结束的流程状态进行判断(包括正常结束、非正常结束[BP]标识) var endStatusList = StudentEncourageServices.Value.GetBackpointStatus(); var correctEndStatusID = StudentEncourageServices.Value.GetCorrectEndStatus(); endStatusList.Add(correctEndStatusID); foreach (var endStatus in endStatusList) { if (studentEncourageView.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 = StudentEncourageServices.Value.GetActionView((Guid)studentEncourageID, 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(studentEncourageView); } /// /// 审核页面(单个) /// /// /// [HttpPost] public ActionResult Approve(StudentEncourageView studentEncourageView) { 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(studentEncourageView.StudentEncourageID); StudentEncourageServices.Value.StudentEncourageApproveConfirm(list, user.UserID, actionID, studentEncourageView.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? studentEncourageID) { var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; //根据当前环节ID、用户ID查询下一步审批动作信息List(ActionView) var actionViewList = StudentEncourageServices.Value.GetActionView((Guid)studentEncourageID, user.UserID); var dropList = actionViewList.Select(x => new DropdownListItem { Text = x.ActionName, Value = x.ToJson() }).ToList(); return View(dropList); } /// /// 审批确定(批量) /// /// /// /// /// [HttpPost] public ActionResult ApproveConfirm(string studentEncourageIDs, Guid actionID, string comment) { try { List list = studentEncourageIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; StudentEncourageServices.Value.StudentEncourageApproveConfirm(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? studentEncourageID) { var studentEncourageView = new StudentEncourageView(); if (studentEncourageID.HasValue && studentEncourageID != Guid.Empty) { studentEncourageView = StudentEncourageServices.Value.GetStudentEncourageView(studentEncourageID); } return View(studentEncourageView); } /// /// 撤销页面(单个) /// /// /// [HttpPost] public ActionResult Cancel(StudentEncourageView studentEncourageView) { try { var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; List list = new List(); list.Add(studentEncourageView.StudentEncourageID); StudentEncourageServices.Value.StudentEncourageCancelConfirm(list, user.UserID, studentEncourageView.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 studentEncourageIDs, string comment) { try { List list = studentEncourageIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); var user = EMIS.Utility.FormValidate.CustomPrincipal.Current; StudentEncourageServices.Value.StudentEncourageCancelConfirm(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 encourageNameID = Request.Form["DictionaryEncourageName"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryEncourageName"].ParseStrTo(); var encourageTypeID = Request.Form["DictionaryEncourageType"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryEncourageType"].ParseStrTo(); var encourageLevelID = Request.Form["DictionaryEncourageLevel"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryEncourageLevel"].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 = StudentEncourageServices.Value.GetStudentEncourageViewList(configuretView, schoolyearID, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, encourageNameID, encourageTypeID, encourageLevelID, 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.EncourageName, x.EncourageTypeName, x.EncourageLevelName, x.DocNo, x.Unit, EncourageDate = x.EncourageDate.HasValue ? x.EncourageDate.Value.ToString("yyyy-MM-dd") : "", x.Amount, x.Reason, 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 }); } } } }