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.Web.Controls.Mvc; using EMIS.Utility; using EMIS.Web.Controls; using EMIS.ViewModel; using EMIS.ViewModel.StudentManage.StudentChange; using EMIS.CommonLogic.StudentManage.StudentChange; using EMIS.CommonLogic.StudentManage.StudentProfile; namespace EMIS.Web.Controllers.StudentManage.StudentChange { [Authorization] public class ChangeApplyController : Controller { public Lazy ChangeApplyServices { get; set; } public Lazy StudentServices { get; set; } /// /// 异动申请页面 /// /// public ActionResult List() { return View(); } /// /// 异动申请列表查询 /// /// /// [HttpPost] public ActionResult List(QueryParamsModel pararms) { ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms); 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 classmajorID = pararms.getExtraGuid("ClassmajorComboGrid"); var schoolyearID = pararms.getExtraGuid("SchoolyearDropdown"); var changeTypeID = pararms.getExtraInt("DictionaryChangeType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryChangeType"); 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(ChangeApplyServices.Value.GetChangeApplyViewGrid(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, classmajorID, schoolyearID, changeTypeID, inSchoolStatus, approvalStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 复制新增 /// /// /// public ActionResult CopyAdd(Guid studentChangeID) { StudentChangeView studentChangeView = new StudentChangeView(); studentChangeView = ChangeApplyServices.Value.GetStudentChangeView(studentChangeID); return View("Edit", studentChangeView); } /// /// 复制新增 /// /// /// [HttpPost] public ActionResult CopyAdd(StudentChangeView studentChangeView) { studentChangeView.StudentChangeID = Guid.Empty; studentChangeView.SchoolyearID = BaseExtensions.GetCurrentSchoolYearID(); return this.Edit(studentChangeView); } /// /// 编辑 /// /// /// [HttpGet] public ActionResult Edit(Guid? studentChangeID) { StudentChangeView studentChangeView = new StudentChangeView(); if (studentChangeID.HasValue && studentChangeID != Guid.Empty) { studentChangeView = ChangeApplyServices.Value.GetStudentChangeView(studentChangeID); } return View(studentChangeView); } /// /// 编辑 /// /// /// [HttpPost] public ActionResult Edit(StudentChangeView studentChangeView) { try { ChangeApplyServices.Value.ChangeApplyEdit(studentChangeView); return Json(new ReturnMessage() { IsSuccess = true, Message = "保存成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "保存失败,原因:" + ex.Message }); } } /// /// 删除 /// /// /// [HttpPost] public ActionResult Delete(string studentChangeIDs) { try { List list = studentChangeIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList(); ChangeApplyServices.Value.ChangeApplyDelete(list); return Json(new ReturnMessage() { IsSuccess = true, Message = "删除成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "删除失败,原因:" + ex.Message }); } } /// /// 提交 /// /// /// [HttpPost] public ActionResult ChangeApplySubmit(string studentChangeIDs) { try { var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal; List list = studentChangeIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => new Guid(x)).ToList(); string result = ChangeApplyServices.Value.ChangeApplySubmit(list, user.UserID, ""); return Json(new ReturnMessage() { IsSuccess = true, Message = "提交成功" + result + "。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "提交失败,原因:" + ex.Message }); } } /// /// 申请表报表 /// /// public ActionResult ApplyReport() { var curUser = EMIS.Utility.FormValidate.CustomPrincipal.Current; ViewBag.LoginUserID = curUser.UserID.ToString(); var dataRangeID = StudentServices.Value.GetDataRangeID(); ViewBag.DataRangeID = dataRangeID; return View(); } /// /// Excel导出 /// /// [HttpPost] public ActionResult Excel() { NpoiExcelHelper neh = new NpoiExcelHelper(); ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null); 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 classmajorID = Request.Form["ClassmajorComboGrid"].ParseStrTo(); var schoolyearID = Request.Form["SchoolyearDropdown"] == DropdownList.SELECT_ALL.ToString() ? null : Request.Form["SchoolyearDropdown"].ParseStrTo(); var changeTypeID = Request.Form["DictionaryChangeType"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryChangeType"].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 = ChangeApplyServices.Value.GetChangeApplyViewList(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, classmajorID, schoolyearID, changeTypeID, inSchoolStatus, approvalStatus) .Select(x => new { x.StudentNo, x.Name, x.SexName, BirthDate = (x.BirthDate.HasValue ? x.BirthDate.Value.ToString("yyyyMMdd") : ""), x.NationName, x.PoliticsName, x.InSchoolStatusName, x.StudentStatusName, x.GradeID, x.SemesterName, x.StandardCode, x.StandardID, x.StandardName, x.EducationName, x.LearningformName, LearnSystem = x.LearnSystem.HasValue ? x.LearnSystem.Value.ToString("#.#") : "", x.ClassNum, x.ClassmajorNo, x.ClassmajorName, x.GrademajorCode, x.GrademajorName, x.FacultymajorCode, x.FacultymajorName, x.CollegeNo, x.CollegeName, x.CampusCode, x.CampusName, x.StartSchoolyearCode, x.SchoolyearCode, x.GraduateSchoolyearCode, x.ChangeTypeName, x.BeforeStandardName, x.BeforeClassmajorName, x.BeforeInSchoolStatusName, x.BeforeStudentStatusName, x.AfterStandardName, x.AfterClassmajorName, x.AfterInSchoolStatusName, x.AfterStudentStatusName, x.ReturnSchoolyearCode, x.ChangeApplyTypeName, x.ChangeReasonName, ChangeDate = (x.ChangeDate.HasValue ? x.ChangeDate.Value.ToString("yyyyMMdd") : ""), x.Description, x.ReportStatusName, x.ApprovalStatusName, x.Remark }).ToTable(); string[] liststring = { "学号", "姓名", "性别", "出生日期", "民族", "政治面貌", "在校状态", "学籍状态", "年级", "入学学期", "专业代码", "专业ID(Value)", "专业名称", RSL.Get("EducationID"), "学习形式", "学制", "班序", "班级编号", "班级名称", "年级专业编号", "年级专业名称", "院系专业编号", "院系专业名称", RSL.Get("CollegeCode"), RSL.Get("College"), RSL.Get("CampusCode"), RSL.Get("Campus"), "入学学年学期", "异动学期", "毕业学期", "异动类型", "异动前专业", "异动前班级", "在校状态(前)", "学籍状态(前)", "异动后专业", "异动后班级", "在校状态(后)", "学籍状态(后)", "返校学期", "异动渠道", "异动原因", "异动日期", "申请说明", "注册状态", "审核状态", "备注" }; neh.Export(dt, liststring, "异动申请信息" + DateTime.Now.ToString("yyyyMMdd")); return Json(new ReturnMessage() { IsSuccess = true, Message = "导出成功。" }); } } }