123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using EMIS.CommonLogic.Students;
- using EMIS.ViewModel;
- using Bowin.Web.Controls.Mvc;
- using EMIS.Web.Controls;
- using EMIS.ViewModel.DifferentDynamic;
- using Bowin.Common.Linq.Entity;
- using Bowin.Common.JSON;
- using EMIS.ViewModel.WorkflowManage;
- using Bowin.Common.Mapping;
- using Bowin.Common.Utility;
- using Bowin.Common.Linq;
- using Bowin.Common.Mvc;
- using EMIS.CommonLogic.CalendarManage;
- using EMIS.Utility.FormValidate;
- namespace EMIS.Web.Controllers.DifferentDynamic
- {
- /// <summary>
- /// 异动审批
- /// </summary>
- [Authorization]
- public class DifferentDynamicApprovalController : DifferentDynamicController
- {
- public ISchoolYearServices SchoolYearServices { get; set; }
- //[StaticFileWriteFilter]
- public ActionResult List()
- {
- var schoolYear = SchoolYearServices.GetSchoolYearIsCurrent(true);
- ViewBag.SchoolYearID = schoolYear == null ? "-1" : schoolYear.SchoolyearID.ToString();//默认当前学年
- return View();
- }
- /// <summary>
- /// 列表查询
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult List(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var campusID = pararms.getExtraGuid("CampusDropdown"); //校区
- var collegeID = pararms.getExtraGuid("CollegeDropdown"); //院系所
- var year = CheckIsSelectAll(pararms.getExtraInt("SchoolyearDictionaryDropDown")); //年级
- var standard = CheckIsSelectAll(pararms.getExtraInt("StandardDictionaryDropDown")); //专业名称
- var education = CheckIsSelectAll(pararms.getExtraInt("DictionaryEducation")); //培养层次
- var learningform = CheckIsSelectAll(pararms.getExtraInt("DictionaryLearningform")); //学习形式
- var classmajorID = pararms.getExtraGuid("ClassmajorDropdown"); //班级名称
- var schoolYearID = pararms.getExtraGuid("SchoolYearDropdown"); //异动学期
- var differentDynamicType = CheckIsSelectAll(pararms.getExtraInt("DictionaryDifferentDynamicType")); //异动类型
- var LearnSystem = pararms.getExtraString("DictionaryLearnSystem");
- var result = DifferentDynamicServices.GetApprovalDifferentDynamicViewGrid(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType,LearnSystem, (int)pararms.page, (int)pararms.rows);
- return Json(result);
- }
- public ActionResult CollegeApproveList()
- {
- var schoolYear = SchoolYearServices.GetSchoolYearIsCurrent(true);
- ViewBag.SchoolYearID = schoolYear == null ? "-1" : schoolYear.SchoolyearID.ToString();//默认当前学年
- return View();
- }
- /// <summary>
- /// 列表查询
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult CollegeApproveList(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var campusID = pararms.getExtraGuid("CampusDropdown"); //校区
- var collegeID = pararms.getExtraGuid("CollegeDropdown"); //院系所
- var year = CheckIsSelectAll(pararms.getExtraInt("SchoolyearDictionaryDropDown")); //年级
- var standard = CheckIsSelectAll(pararms.getExtraInt("StandardDictionaryDropDown")); //专业名称
- var education = CheckIsSelectAll(pararms.getExtraInt("DictionaryEducation")); //培养层次
- var learningform = CheckIsSelectAll(pararms.getExtraInt("DictionaryLearningform")); //学习形式
- var classmajorID = pararms.getExtraGuid("ClassmajorDropdown"); //班级名称
- var schoolYearID = pararms.getExtraGuid("SchoolYearDropdown"); //异动学期
- var differentDynamicType = CheckIsSelectAll(pararms.getExtraInt("DictionaryDifferentDynamicType")); //异动类型
- var LearnSystem = pararms.getExtraString("DictionaryLearnSystem");
- var result = DifferentDynamicServices.GetCollegeApprovalDifferentDynamicViewGrid(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType, LearnSystem, (int)pararms.page, (int)pararms.rows);
- return Json(result);
- }
- public ActionResult AdminApproveList()
- {
- var schoolYear = SchoolYearServices.GetSchoolYearIsCurrent(true);
- ViewBag.SchoolYearID = schoolYear == null ? "-1" : schoolYear.SchoolyearID.ToString();//默认当前学年
- return View();
- }
- /// <summary>
- /// 列表查询
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult AdminApproveList(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var campusID = pararms.getExtraGuid("CampusDropdown"); //校区
- var collegeID = pararms.getExtraGuid("CollegeDropdown"); //院系所
- var year = CheckIsSelectAll(pararms.getExtraInt("SchoolyearDictionaryDropDown")); //年级
- var standard = CheckIsSelectAll(pararms.getExtraInt("StandardDictionaryDropDown")); //专业名称
- var education = CheckIsSelectAll(pararms.getExtraInt("DictionaryEducation")); //培养层次
- var learningform = CheckIsSelectAll(pararms.getExtraInt("DictionaryLearningform")); //学习形式
- var classmajorID = pararms.getExtraGuid("ClassmajorDropdown"); //班级名称
- var schoolYearID = pararms.getExtraGuid("SchoolYearDropdown"); //异动学期
- var differentDynamicType = CheckIsSelectAll(pararms.getExtraInt("DictionaryDifferentDynamicType")); //异动类型
- var LearnSystem = pararms.getExtraString("DictionaryLearnSystem");
- var result = DifferentDynamicServices.GetAdminApprovalDifferentDynamicViewGrid(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType, LearnSystem, (int)pararms.page, (int)pararms.rows);
- return Json(result);
- }
- [HttpPost]
- public ActionResult AdminApprove(string ids, Guid actionID, string comment)
- {
- var list = ids.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(s => Guid.Parse(s)).ToList();
- try
- {
- DifferentDynamicServices.Approve(list, CustomPrincipal.Current.UserID, actionID, comment);
- return Json(new ReturnMessage { IsSuccess = true, Message = "审核成功。" });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage { IsSuccess = false, Message = ex.Message });
- }
- }
- public ActionResult Edit(Guid id)
- {
- var vm = new DifferentDynamicApprovalView();
- var user = EMIS.Utility.FormValidate.CustomPrincipal.Current;
- try
- {
- var result = DifferentDynamicServices.GetActionView(id, user.UserID);
- if (result.Count == 0)
- {
- return RedirectToAction("MsgShow", "Common", new
- {
- WindowID = Request["WindowID"],
- msg = "抱歉,因流程或操作权限限制,您无权限审核该数据,请检查后重新选择!",
- url = Url.Action("List").AddMenuParameter()
- });
- }
- var dropList = result.Select(s => new DropdownListItem { Text = s.ActionName, Value = s.ToJson() }).ToList();
- ViewBag.ListAction = dropList;
- if (id != null && id != Guid.Empty)
- {
- var resultView = DifferentDynamicServices.GetDifferentDynamicView(id);
- resultView.DynamicCloneTo(vm);
- }
- }
- catch (Exception ex)
- {
- return RedirectToAction("MsgShow", "Common", new
- {
- WindowID = Request["WindowID"],
- msg = "操作失败原因:" + ex.Message,
- url = Url.Action("List").AddMenuParameter()
- });
- }
- return View(vm);
- }
- [HttpPost]
- public ActionResult Edit(DifferentDynamicApprovalView vm)
- {
- try
- {
- string action = Request.Form["ddlAction"];
- var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal;
- var actionView = action.JsonToObject<ActionView>();
- string comment = Request.Form["txtComment"];
- var differentDynamicView = new DifferentDynamicView();
- vm.DynamicCloneTo(differentDynamicView);
- DifferentDynamicServices.Approve(differentDynamicView, user.UserID, actionView, comment);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "审核成功!"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "审核失败,原因:" + ex.Message
- });
- }
- }
- [HttpPost]
- public ActionResult Excel()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- //避开全选值
- //var roleID = Request.Form["Role"].ParseStrTo<Guid>();
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>(); //校区
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>(); //院系所
- var year = CheckIsSelectAll(Request.Form["DictionarySchoolyear"].ParseStrTo<int>()); //年级
- var standard = CheckIsSelectAll(Request.Form["DictionaryStandard"].ParseStrTo<int>()); //专业名称
- var education = CheckIsSelectAll(Request.Form["DictionaryEducation"].ParseStrTo<int>()); //培养层次
- var learningform = CheckIsSelectAll(Request.Form["DictionaryLearningform"].ParseStrTo<int>()); //学习形式
- var classmajorID = Request.Form["ClassmajorDropdown"].ParseStrTo<Guid>(); //班级名称
- var schoolYearID = Request.Form["SchoolYearDropdown"].ParseStrTo<Guid>(); //异动学期
- var differentDynamicType = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicType"].ParseStrTo<int>()); //异动类型
- //var differentDynamicStatus = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicStatus"].ParseStrTo<int>()); //审批状态
- var LearnSystem = Request.Form["DictionaryLearnSystem"].ToString();
- var result = DifferentDynamicServices.GetApprovalDifferentDynamicViewList(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType, LearnSystem);
- var dt = result.OrderBy(x => x.EntityCreateTime).Select(s => new
- {
- s.SchoolyearCode,
- s.LoginID,
- s.Name,
- s.DifferentDynamicTypeName,
- s.ReasonName,
- s.InSchoolStatusName,
- s.StudentStatusName,
- s.StandardName,
- s.ClassmajorName,
- s.AfterStandardName,
- s.AfterClassmajorName,
- s.AfterInSchoolStatusName,
- s.AfterStudentStatusName,
- s.EntityCreateTimeStr,
- s.ApprovalStatusName,
- s.ReportStatusName,
- }).ToTable();
- string[] liststring = { "异动学期", "学号", "姓名", "异动类型", "异动原因", "在校状态", "学籍状态",
- "异动前专业", "异动前班级", "异动后专业", "异动后班级", "异动后在校状态", "异动后学籍状态",
- "异动日期", "审批状态", "注册状态" };
- neh.Export(dt, liststring, "异动审核");
- return RedirectToAction("MsgShow", "Common", new
- {
- msg = "导出成功!",
- url = Url.Action("List").AddMenuParameter()
- });
- }
- [HttpPost]
- public ActionResult CollegeApproveExcel()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- //避开全选值
- //var roleID = Request.Form["Role"].ParseStrTo<Guid>();
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>(); //校区
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>(); //院系所
- var year = CheckIsSelectAll(Request.Form["DictionarySchoolyear"].ParseStrTo<int>()); //年级
- var standard = CheckIsSelectAll(Request.Form["DictionaryStandard"].ParseStrTo<int>()); //专业名称
- var education = CheckIsSelectAll(Request.Form["DictionaryEducation"].ParseStrTo<int>()); //培养层次
- var learningform = CheckIsSelectAll(Request.Form["DictionaryLearningform"].ParseStrTo<int>()); //学习形式
- var classmajorID = Request.Form["ClassmajorDropdown"].ParseStrTo<Guid>(); //班级名称
- var schoolYearID = Request.Form["SchoolYearDropdown"].ParseStrTo<Guid>(); //异动学期
- var differentDynamicType = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicType"].ParseStrTo<int>()); //异动类型
- //var differentDynamicStatus = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicStatus"].ParseStrTo<int>()); //审批状态
- var LearnSystem = Request.Form["DictionaryLearnSystem"].ToString();
- var result = DifferentDynamicServices.GetCollegeApprovalDifferentDynamicViewList(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType, LearnSystem);
- var dt = result.OrderBy(x => x.EntityCreateTime).Select(s => new
- {
- s.SchoolyearCode,
- s.LoginID,
- s.Name,
- s.DifferentDynamicTypeName,
- s.ReasonName,
- s.InSchoolStatusName,
- s.StudentStatusName,
- s.StandardName,
- s.ClassmajorName,
- s.AfterStandardName,
- s.AfterClassmajorName,
- s.AfterInSchoolStatusName,
- s.AfterStudentStatusName,
- s.EntityCreateTimeStr,
- s.ApprovalStatusName,
- s.ReportStatusName,
- }).ToTable();
- string[] liststring = { "异动学期", "学号", "姓名", "异动类型", "异动原因", "在校状态", "学籍状态",
- "异动前专业", "异动前班级", "异动后专业", "异动后班级", "异动后在校状态", "异动后学籍状态",
- "异动日期", "审批状态", "注册状态" };
- neh.Export(dt, liststring, "异动审核");
- return RedirectToAction("MsgShow", "Common", new
- {
- msg = "导出成功!",
- url = Url.Action("List").AddMenuParameter()
- });
- }
- [HttpPost]
- public ActionResult AdminApproveExcel()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- //避开全选值
- //var roleID = Request.Form["Role"].ParseStrTo<Guid>();
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>(); //校区
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>(); //院系所
- var year = CheckIsSelectAll(Request.Form["DictionarySchoolyear"].ParseStrTo<int>()); //年级
- var standard = CheckIsSelectAll(Request.Form["DictionaryStandard"].ParseStrTo<int>()); //专业名称
- var education = CheckIsSelectAll(Request.Form["DictionaryEducation"].ParseStrTo<int>()); //培养层次
- var learningform = CheckIsSelectAll(Request.Form["DictionaryLearningform"].ParseStrTo<int>()); //学习形式
- var classmajorID = Request.Form["ClassmajorDropdown"].ParseStrTo<Guid>(); //班级名称
- var schoolYearID = Request.Form["SchoolYearDropdown"].ParseStrTo<Guid>(); //异动学期
- var differentDynamicType = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicType"].ParseStrTo<int>()); //异动类型
- //var differentDynamicStatus = CheckIsSelectAll(Request.Form["DictionaryDifferentDynamicStatus"].ParseStrTo<int>()); //审批状态
- var LearnSystem = Request.Form["DictionaryLearnSystem"].ToString();
- var result = DifferentDynamicServices.GetAdminApprovalDifferentDynamicViewList(configuretView, campusID, collegeID, year, standard, education, learningform, classmajorID, schoolYearID, differentDynamicType, LearnSystem);
- var dt = result.OrderBy(x => x.EntityCreateTime).Select(s => new
- {
- s.SchoolyearCode,
- s.LoginID,
- s.Name,
- s.DifferentDynamicTypeName,
- s.ReasonName,
- s.InSchoolStatusName,
- s.StudentStatusName,
- s.StandardName,
- s.ClassmajorName,
- s.AfterStandardName,
- s.AfterClassmajorName,
- s.AfterInSchoolStatusName,
- s.AfterStudentStatusName,
- s.EntityCreateTimeStr,
- s.ApprovalStatusName,
- s.ReportStatusName,
- }).ToTable();
- string[] liststring = { "异动学期", "学号", "姓名", "异动类型", "异动原因", "在校状态", "学籍状态",
- "异动前专业", "异动前班级", "异动后专业", "异动后班级", "异动后在校状态", "异动后学籍状态",
- "异动日期", "审批状态", "注册状态" };
- neh.Export(dt, liststring, "异动审核");
- return RedirectToAction("MsgShow", "Common", new
- {
- msg = "导出成功!",
- url = Url.Action("List").AddMenuParameter()
- });
- }
- /// <summary>
- /// 添加更新前验证
- /// </summary>
- /// <param name="activitiesID"></param>
- /// <param name="Name"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Verification(Guid? ID)
- {
- return base.Json("成功");
- }
- //[HttpPost]
- //public ActionResult AuditingActionDropdownList(Guid id)
- //{
- // var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal;
- // var result = DifferentDynamicServices.GetActionView(id, user.UserID);
- // //if (result.Count == 0)
- // //{
- // // return RedirectToAction("MsgShow", "Common", new
- // // {
- // // msg = "你没有审核权限!",
- // // url = Url.Action("List").AddMenuParameter()
- // // });
- // //}
- // var dropList = result.Select(s => new DropdownListItem { Text = s.ActionName, Value = s.ToJson() });
- // return Json(dropList);
- //}
- }
- }
|