123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- 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.JSON;
- using Bowin.Common.Exceptions;
- using Bowin.Web.Controls.Mvc;
- using EMIS.Web.Controls;
- using EMIS.Utility;
- using EMIS.ViewModel;
- using EMIS.ViewModel.EnrollManage.SpecialtyManage;
- using EMIS.CommonLogic.EnrollManage.SpecialtyManage;
- namespace EMIS.Web.Controllers.EnrollManage.SpecialtyManage
- {
- [Authorization]
- public class SpecialtyApplyController : Controller
- {
- public ISpecialtyApplyServices specialtyApplyServices { get; set; }
- /// <summary>
- /// 专业申请页面
- /// </summary>
- /// <returns></returns>
- public ActionResult List()
- {
- 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 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 approvalStatus = pararms.getExtraInt("DictionaryApprovalStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryApprovalStatus");
- return base.Json(specialtyApplyServices.GetSpecialtyApplyViewGrid(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, approvalStatus, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 编辑(提交)
- /// </summary>
- /// <param name="specialtyApplyID"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Edit(Guid? specialtyApplyID)
- {
- SpecialtyApplyView specialtyApplyView = new SpecialtyApplyView();
- if (specialtyApplyID.HasValue && specialtyApplyID != Guid.Empty)
- {
- specialtyApplyView = specialtyApplyServices.GetSpecialtyApplyView(specialtyApplyID);
- }
- return View(specialtyApplyView);
- }
- /// <summary>
- /// 编辑(提交)
- /// </summary>
- /// <param name="specialtyApplyView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Edit(SpecialtyApplyView specialtyApplyView)
- {
- try
- {
- var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal;
- List<Guid> list = new List<Guid>();
- list.Add(specialtyApplyView.SpecialtyApplyID);
- specialtyApplyServices.SpecialtyApplySubmit(list, user.UserID, specialtyApplyView.Comment);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "提交成功。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "提交失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 专业信息申请批量新增
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult SpecialtyApplyBatchAdd()
- {
- SpecialtyApplyView specialtyApplyView = new SpecialtyApplyView();
- var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal;
- specialtyApplyView.CollegeID = user.CollegeID;
- return View(specialtyApplyView);
- }
- /// <summary>
- /// 专业信息申请批量新增
- /// </summary>
- /// <param name="specialtyApplyView"></param>
- /// <returns></returns>
- public ActionResult SpecialtyApplyBatchAdd(SpecialtyApplyView specialtyApplyView)
- {
- try
- {
- var specialtyIDList = Request["specialtyIDs"].JsonToObject<List<Guid?>>();
- string result = specialtyApplyServices.SpecialtyApplyBatchAdd(specialtyIDList, specialtyApplyView);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "申请成功" + result + "。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "申请失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 查询专业申请中的未申请专业信息SpecialtyView
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult SpecialtyNoApplyList(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- 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 scienceclassID = pararms.getExtraInt("DictionaryScienceclass") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryScienceclass");
- var collegeID = pararms.getExtraGuid("CollegeID");
- var gradeID = pararms.getExtraInt("GradeID") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("GradeID");
- var semesterID = pararms.getExtraInt("SemesterID") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("SemesterID");
- return base.Json(specialtyApplyServices.GetSpecialtyViewNoApply(configuretView, collegeID, gradeID, semesterID, standardID, educationID,
- learningformID, learnSystem, scienceclassID, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="specialtyApplyIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Delete(string specialtyApplyIDs)
- {
- try
- {
- List<Guid?> list = specialtyApplyIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList();
- specialtyApplyServices.SpecialtyApplyDelete(list);
- return base.Json(new ReturnMessage { IsSuccess = true, Message = "删除成功。" });
- }
- catch (Exception ex)
- {
- string mge = ex.Message;
- System.Data.SqlClient.SqlException num = ExceptionHelper.GetSqlException(ex);
- if (num != null)
- {
- if (num.Number == 547)
- {
- mge = "请先删除与其关联的数据,如:招生专业等。";
- }
- }
- return base.Json(new ReturnMessage { IsSuccess = false, Message = "删除失败,原因:" + mge });
- }
- }
- /// <summary>
- /// 提交
- /// </summary>
- /// <param name="specialtyApplyIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Submit(string specialtyApplyIDs)
- {
- try
- {
- List<Guid> list = specialtyApplyIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => new Guid(x)).ToList();
- var user = HttpContext.User as EMIS.Utility.FormValidate.CustomPrincipal;
- string result = specialtyApplyServices.SpecialtyApplySubmit(list, user.UserID, "");
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "提交成功" + result + "。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "提交失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// Excel导出
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Excel()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>();
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>();
- var gradeID = Request.Form["DictionaryGrade"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryGrade"].ParseStrTo<int>();
- var standardID = Request.Form["DictionaryStandard"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryStandard"].ParseStrTo<int>();
- var educationID = Request.Form["DictionaryEducation"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryEducation"].ParseStrTo<int>();
- var learningformID = Request.Form["DictionaryLearningform"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryLearningform"].ParseStrTo<int>();
- var learnSystem = Request.Form["DictionaryLearnSystem"].ToString();
- var approvalStatus = Request.Form["DictionaryApprovalStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryApprovalStatus"].ParseStrTo<int>();
- var dt = specialtyApplyServices.GetSpecialtyApplyViewList(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, approvalStatus)
- .Select(x => new
- {
- x.Code,
- x.StandardID,
- x.StandardName,
- x.GradeID,
- x.SemesterName,
- x.EducationName,
- x.LearningformName,
- LearnSystem = x.LearnSystem.HasValue ? x.LearnSystem.Value.ToString("#.#") : null,
- x.ScienceclassName,
- x.PropertyName,
- x.StandardTitleName,
- x.StandardLevelName,
- x.CreateTime,
- x.CreateUserName,
- x.ApprovalStatusName,
- x.CollegeCode,
- x.CollegeName,
- x.CampusCode,
- x.CampusName
- }).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 = "导出成功。"
- });
- }
- }
- }
|