123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web;
- using System.Web.Mvc;
- using Bowin.Common.Data;
- using Bowin.Common.Exceptions;
- using Bowin.Common.Utility;
- using Bowin.Web.Controls.Mvc;
- using EMIS.Utility;
- using EMIS.Web.Controls;
- using EMIS.ViewModel;
- using EMIS.ViewModel.UniversityManage.SpecialtyClassManage;
- using EMIS.CommonLogic.UniversityManage.SpecialtyClassManage;
- namespace EMIS.Web.Controllers.UniversityManage.SpecialtyClassManage
- {
- [Authorization]
- public class GrademajorController : Controller
- {
- public IGrademajorServices GrademajorServices { 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 inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
- return base.Json(GrademajorServices.GetGrademajorViewGrid(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 年级专业列表查询(无数据范围)
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult ListWithoutRange(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");
- return base.Json(GrademajorServices.GetGrademajorViewWithoutRangeGrid(configuretView, campusID, collegeID, gradeID, standardID, educationID, learningformID, learnSystem, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 年级专业中的专业信息FacultymajorView(无数据范围)
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult StandardBindComboGridOptions(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var collegeID = pararms.getExtraGuid("CollegeDropdown");
- var gradeID = pararms.getExtraInt("DictionaryGrade") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryGrade");
- var result = GrademajorServices.GetStandardViewGrid(configuretView, collegeID, gradeID, (int)pararms.page, (int)pararms.rows);
- return base.Json(result);
- }
- /// <summary>
- /// 年级专业中的年级信息GrademajorView(无数据范围)
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult GradeBindComboGridOptions(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var collegeID = pararms.getExtraGuid("CollegeDropdown");
- var standardID = pararms.getExtraInt("DictionaryStandard") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryStandard");
- var result = GrademajorServices.GetGradeViewGrid(configuretView, collegeID, standardID, (int)pararms.page, (int)pararms.rows);
- return base.Json(result);
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="grademajorID"></param>
- /// <returns></returns>
- public ActionResult CopyAdd(Guid grademajorID)
- {
- GrademajorView grademajorView = new GrademajorView();
- grademajorView = GrademajorServices.GetGrademajorView(grademajorID);
- return View("Edit", grademajorView);
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="grademajorView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult CopyAdd(GrademajorView grademajorView)
- {
- grademajorView.GrademajorID = Guid.Empty;
- return this.Edit(grademajorView);
- }
- /// <summary>
- /// 编辑(新增、修改,业务主键:年级专业编号或年级专业名称唯一)
- /// </summary>
- /// <param name="grademajorID"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Edit(Guid? grademajorID)
- {
- GrademajorView grademajorView = new GrademajorView();
- if (grademajorID.HasValue && grademajorID != Guid.Empty)
- {
- grademajorView = GrademajorServices.GetGrademajorView(grademajorID);
- }
- else
- {
- grademajorView.GradeID = BaseExtensions.GetCurrentYearID();
- }
- return View(grademajorView);
- }
- /// <summary>
- /// 编辑(新增、修改,业务主键:年级专业编号或年级专业名称唯一)
- /// </summary>
- /// <param name="grademajorView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Edit(GrademajorView grademajorView)
- {
- try
- {
- GrademajorServices.GrademajorEdit(grademajorView);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "保存成功。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "保存失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 年级专业复制(批量添加)
- /// </summary>
- /// <returns></returns>
- public ActionResult BatchAdd()
- {
- return View();
- }
- /// <summary>
- /// 年级专业复制(批量添加)
- /// </summary>
- /// <param name="grademajorView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult BatchAdd(GrademajorView grademajorView)
- {
- try
- {
- var addCount = GrademajorServices.GrademajorBatchAdd(grademajorView);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "添加成功(共添加了:" + addCount + "条)。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "添加失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 批量修改
- /// </summary>
- /// <param name="grademajorIDs"></param>
- /// <param name="gradeID"></param>
- /// <param name="semesterID"></param>
- /// <returns></returns>
- public ActionResult BatchModifyControl(string grademajorIDs, int? gradeID, int? semesterID)
- {
- try
- {
- string result = GrademajorServices.BatchModify(grademajorIDs, gradeID, semesterID);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = result
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "批量修改失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="grademajorIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Delete(string grademajorIDs)
- {
- try
- {
- List<Guid?> list = grademajorIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList();
- GrademajorServices.GrademajorDelete(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>
- /// Excel导入
- /// </summary>
- /// <param name="errorFile"></param>
- /// <param name="operationTips"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Import(string errorFile, string operationTips)
- {
- ViewBag.ErrorFile = errorFile;
- if (string.IsNullOrEmpty(operationTips))
- {
- operationTips = "点击查看失败原因...";
- }
- ViewBag.operationTips = operationTips;
- return View();
- }
- /// <summary>
- /// Excel导入
- /// </summary>
- /// <param name="file"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Import(HttpPostedFileBase file)
- {
- try
- {
- if (!NpoiExcelHelper.GetIsCompatible(file.FileName))
- {
- throw new Exception("格式错误,只允许导入xls或xlsx格式的Excel文件。");
- }
- Dictionary<string, string> cellheader = new Dictionary<string, string>
- {
- { "Code", "年级专业编号" },
- { "Name", "年级专业名称" },
- { "Abbreviation", "简称" },
- { "FacultymajorCode", "院系专业编号" },
- { "GradeStr", "年级" },
- { "SemesterStr", "入学学期" },
- { "Professional", "专业方向" },
- { "Remark", "备注" },
- { "ErrorMessage", "未导入原因" }
- };
- StringBuilder errorMsg = new StringBuilder();
- string sourceWebPath = FileUploadHelper.UploadFile(file);
- var sourcePhysicalPath = Server.MapPath(sourceWebPath);
- List<GrademajorView> errList = new List<GrademajorView>();
- List<GrademajorView> dataList = new List<GrademajorView>();
- int? inCount = 0; //导入个数
- int? upCount = 0; //更新个数
- int? errCount = 0; //失败个数
- //导入
- GrademajorServices.GrademajorImport(cellheader, out inCount, out upCount, out errList, out errCount, sourcePhysicalPath);
- System.IO.File.Delete(sourcePhysicalPath);//删除本地缓存文件
- if (errList.Count() > 0)
- {
- //获取错误数据文件路径
- string errorWebPath = string.Format("{0}", NpoiExcelHelper.EntityListToExcel2003(cellheader, errList, "年级专业信息导入失败文件", sourcePhysicalPath));
- ViewBag.ErrorFile = errorWebPath;
- string Errinfo = string.Format("提示:{0}条年级专业信息导入成功,{1}条年级专业信息更新成功,{2}条年级专业信息导入失败,点击查看。", inCount, upCount, errCount);
- ViewBag.operationTips = Errinfo;
- return RedirectToAction("MsgShow", "Common", new
- {
- WindowID = "none",
- msg = Errinfo,
- url = Url.Action("Import").AddMenuParameter() + "&errorFile=" + errorWebPath + "&operationTips=" + Errinfo + "&WindowID=" + Request["WindowID"]
- });
- }
- else
- {
- string successInfo = string.Format("提示:{0}条年级专业信息导入成功,{1}条年级专业信息更新成功。", inCount, upCount);
- return RedirectToAction("MsgShow", "Common", new
- {
- WindowID = Request["WindowID"],
- msg = successInfo,
- url = Url.Action("List").AddMenuParameter()
- });
- }
- }
- catch (Exception ex)
- {
- return RedirectToAction("MsgShow", "Common", new
- {
- WindowID = "none",
- msg = "导入失败,原因:" + ex.Message,
- url = Url.Action("Import").AddMenuParameter() + "&WindowID=" + Request["WindowID"]
- });
- }
- }
- /// <summary>
- /// 班级信息页面(查询对应的班级信息)
- /// </summary>
- /// <returns></returns>
- public ActionResult ClassmajorList()
- {
- return View();
- }
- /// <summary>
- /// 班级信息页面(查询对应的班级信息)
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult ClassmajorList(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var grademajorID = Request["grademajorID"].ParseStrTo<Guid>();
- //int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo<int>();
- var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
- return Json(GrademajorServices.GetClassmajorViewGrid(configuretView, grademajorID, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 导出班级信息明细Excel
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Excel_Classmajor()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- var grademajorID = Request["grademajorID"].ParseStrTo<Guid>();
- int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo<int>();
- var dt = GrademajorServices.GetClassmajorViewList(configuretView, grademajorID, inSchoolStatus)
- .Select(x => new
- {
- x.No,
- x.Name,
- x.ClassNum,
- x.GradeID,
- x.SemesterName,
- x.GraduateSchoolyearCode,
- x.UserName,
- x.StudentCount,
- x.GrademajorCode,
- x.GrademajorName,
- x.FacultymajorCode,
- x.FacultymajorName
- }).ToTable();
- string[] liststring = {
- "班级编号", "班级名称", "班序", "年级", "入学学期", "毕业学期", "班主任",
- "人数", "年级专业编号", "年级专业名称", "院系专业编号", "院系专业名称"
- };
- var title = "年级专业班级信息";
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
- {
- title = "年级专业班级信息(非在校)";
- }
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
- {
- title = "年级专业班级信息(在校)";
- }
- neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "导出成功。"
- });
- }
- /// <summary>
- /// 查询年级专业所有班级学生
- /// </summary>
- /// <returns></returns>
- public ActionResult ClassStudentListView()
- {
- return View();
- }
- /// <summary>
- /// 查询年级专业所有班级学生
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult ClassStudentListView(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var grademajorID = Request["grademajorID"].ParseStrTo<Guid>();
- //int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo<int>();
- var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
- return Json(GrademajorServices.GetStudentBaseViewGrid(configuretView, grademajorID, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 导出学生明细Excel
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Excel_ClassStudent()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- var grademajorID = Request["grademajorID"].ParseStrTo<Guid>();
- int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo<int>();
- var dt = GrademajorServices.GetStudentBaseViewList(configuretView, grademajorID, inSchoolStatus)
- .Select(x => new
- {
- x.LoginID,
- x.UserName,
- x.SexName,
- x.InSchoolStatusName,
- x.StudentStatusName,
- x.ClassmajorNo,
- x.ClassmajorName,
- x.GradeID,
- x.GrademajorCode,
- x.GrademajorName,
- x.FacultymajorCode,
- x.FacultymajorName
- }).ToTable();
- string[] liststring = {
- "学号", "姓名", "性别", "在校状态", "学籍状态", "班级编号", "班级名称", "年级","年级专业编号",
- "年级专业名称", "院系专业编号", "院系专业名称"
- };
- var title = "年级专业学生信息";
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
- {
- title = "年级专业学生信息(非在校)";
- }
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
- {
- title = "年级专业学生信息(在校)";
- }
- neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "导出成功。"
- });
- }
- /// <summary>
- /// Excel导出
- /// </summary>
- /// <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 inSchoolStatus = Request.Form["DictionaryInschoolStatus"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryInschoolStatus"].ParseStrTo<int>();
- var dt = GrademajorServices.GetGrademajorViewList(configuretView, campusID, collegeID, gradeID, standardID,
- educationID, learningformID, learnSystem, inSchoolStatus)
- .Select(x => new
- {
- x.Code,
- x.Name,
- x.Abbreviation,
- x.FacultymajorCode,
- x.FacultymajorName,
- x.GradeID,
- x.StandardCode,
- x.StandardID,
- x.StandardName,
- x.EducationName,
- x.LearningformName,
- LearnSystem = x.LearnSystem.HasValue ? x.LearnSystem.Value.ToString("#.#") : null,
- x.SemesterID,
- x.CollegeCode,
- x.CollegeName,
- x.GraduateSchoolyearCode,
- x.Professional,
- x.ClassmajorCount,
- x.StudentCount,
- x.Remark
- }).ToTable();
- string[] liststring = {
- "年级专业编号", "年级专业名称", "简称", "院系专业编号", "院系专业名称", "年级", "专业代码",
- "专业ID(Value)", "专业名称", RSL.Get("EducationID"), "学习形式", "学制", "入学学期",
- RSL.Get("CollegeCode"), RSL.Get("College"), "毕业学期", "专业方向", "班级数", "人数", "备注"
- };
- var title = "年级专业信息";
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
- {
- title = "年级专业信息(非在校)";
- }
- if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
- {
- title = "年级专业信息(在校)";
- }
- neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "导出成功。"
- });
- }
- }
- }
|