using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Text; using Bowin.Common.Utility; using Bowin.Common.Data; using Bowin.Common.JSON; using Bowin.Web.Controls.Mvc; using Bowin.Common.Exceptions; using EMIS.Utility; using EMIS.Entities; using EMIS.ViewModel; using EMIS.Web.Controls; using EMIS.ViewModel.EducationManagement; using EMIS.ViewModel.CultureplanManage.PlanManagement; using EMIS.CommonLogic.EducationManage; namespace EMIS.Web.Controllers.EducationManage { [Authorization] public class ExecutablePlanController : Controller { public IExecutablePlanServices ExecutablePlanServices { 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 yearID = pararms.getExtraInt("DictionarySchoolyear") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionarySchoolyear"); 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 grademajorID = pararms.getExtraGuid("GrademajorComboGrid"); var coursematerialID = pararms.getExtraGuid("CourseComboGrid"); var isMainCourse = pararms.getExtraInt("DictionaryIsMainCourse") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryIsMainCourse"); var teachingModeID = pararms.getExtraInt("DictionaryTeachingMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTeachingMode"); var handleModeID = pararms.getExtraInt("DictionaryHandleMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryHandleMode"); var planTypeID = pararms.getExtraInt("DictionaryPlanType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryPlanType"); 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(ExecutablePlanServices.GetExecutablePlanViewGrid(configuretView, schoolyearID, campusID, collegeID, yearID, standardID, educationID, learningformID, learnSystem, grademajorID, coursematerialID, isMainCourse, teachingModeID, handleModeID, planTypeID, inSchoolStatus, approvalStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 执行计划统计报表 /// /// public ActionResult Report() { return View(); } /// /// 复制新增 /// /// /// public ActionResult CopyAdd(Guid executablePlanID) { ExecutablePlanView executablePlanView = new ExecutablePlanView(); executablePlanView = ExecutablePlanServices.GetExecutablePlanView(executablePlanID); return View("Edit", executablePlanView); } /// /// 复制新增 /// /// /// [HttpPost] public ActionResult CopyAdd(ExecutablePlanView executablePlanView) { executablePlanView.ExecutablePlanID = Guid.Empty; return this.Edit(executablePlanView); } /// /// 编辑(新增、修改,业务主键:学年学期ID、年级专业ID、课程信息ID) /// /// /// public ActionResult Edit(Guid? executablePlanID) { ExecutablePlanView executablePlanView = new ExecutablePlanView(); if (executablePlanID.HasValue && executablePlanID != Guid.Empty) { executablePlanView = ExecutablePlanServices.GetExecutablePlanView(executablePlanID); } else { executablePlanView.SourceTypeID = (int)EM_SourceType.RequiredCourse; executablePlanView.SchoolyearID = BaseExtensions.GetCurrentSchoolYearID(); executablePlanView.CourseStructureID = (int)CF_CourseStructure.ClassroomTeaching; executablePlanView.CourseCategoryID = (int)CF_CourseCategory.Publiccourse; executablePlanView.CourseQualityID = (int)CF_CourseQuality.Required; executablePlanView.Credit = 0; executablePlanView.TheoryCourse = 0; executablePlanView.Practicehours = 0; executablePlanView.Trialhours = 0; executablePlanView.Totalhours = 0; executablePlanView.TheoryWeeklyNum = 0; executablePlanView.PracticeWeeklyNum = 0; executablePlanView.TrialWeeklyNum = 0; executablePlanView.SchoolweeksNum = 0; executablePlanView.WeeklyHours = 0; executablePlanView.WeeklyNum = 0; executablePlanView.StartWeeklyNum = 1; executablePlanView.EndWeeklyNum = 16; executablePlanView.IsNeedMaterial = false; executablePlanView.CourseFineID = (int)CF_CourseFine.No; executablePlanView.TeachinglanguageID = (int)CF_Teachinglanguage.Chinese; executablePlanView.ExaminationModeID = (int)CF_ExaminationMode.WrittenExam; executablePlanView.ResultTypeID = (int)CF_ResultType.Percentage; executablePlanView.HandleModeID = (int)CF_HandleMode.RequiredCourse; executablePlanView.ResultTypeID = (int)CF_ResultType.Percentage; } return View(executablePlanView); } /// /// 编辑(新增、修改,业务主键:学年学期ID、年级专业ID、课程信息ID) /// /// /// [HttpPost] public ActionResult Edit(ExecutablePlanView executablePlanView) { try { ExecutablePlanServices.ExecutablePlanEdit(executablePlanView); return Json(new ReturnMessage() { IsSuccess = true, Message = "保存成功。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "保存失败:" + ex.Message }); } } /// /// 根据专业计划信息批量新增(业务主键:学年学期ID、年级专业ID、课程信息ID) /// /// [HttpGet] public ActionResult ExecutablePlanBatchAdd() { ExecutablePlanView executablePlanView = new ExecutablePlanView(); return View(executablePlanView); } /// /// 根据专业计划信息批量新增(业务主键:学年学期ID、年级专业ID、课程信息ID) /// /// /// public ActionResult ExecutablePlanBatchAdd(ExecutablePlanView executablePlanView) { try { var specialtyPlanViewList = Request["specialtyPlanViewList"].JsonToObject>(); string result = ExecutablePlanServices.ExecutablePlanBatchAdd(specialtyPlanViewList, executablePlanView); return Json(new ReturnMessage() { IsSuccess = true, Message = "生成成功" + result + "。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "生成失败,原因:" + ex.Message }); } } /// /// 查询对应的未新增专业计划信息SpecialtyPlanView /// /// /// [HttpPost] public ActionResult SpecialtyPlanNoAddList(QueryParamsModel pararms) { ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms); var schoolyearID = pararms.getExtraGuid("SchoolyearDropdown"); var campusID = pararms.getExtraGuid("CampusDropdown"); var collegeID = pararms.getExtraGuid("CollegeDropdown"); var yearID = pararms.getExtraInt("DictionarySchoolyear") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionarySchoolyear"); 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 grademajorID = pararms.getExtraGuid("GrademajorComboGrid"); var coursematerialID = pararms.getExtraGuid("CourseComboGrid"); var teachingModeID = pararms.getExtraInt("DictionaryTeachingMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTeachingMode"); var handleModeID = pararms.getExtraInt("DictionaryHandleMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryHandleMode"); return base.Json(ExecutablePlanServices.GetSpecialtyPlanViewNoAddGrid(configuretView, schoolyearID, campusID, collegeID, yearID, standardID, educationID, learningformID, learnSystem, grademajorID, coursematerialID, teachingModeID, handleModeID, (int)pararms.page, (int)pararms.rows)); } /// /// 删除 /// /// /// [HttpPost] public ActionResult Delete(string executablePlanIDs) { try { List list = executablePlanIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)) .Select(x => (Guid?)new Guid(x)).ToList(); ExecutablePlanServices.ExecutablePlanDelete(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 ExecutablePlanSubmit(string executablePlanIDs) { try { List list = executablePlanIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)) .Select(x => (Guid?)new Guid(x)).ToList(); string result = ExecutablePlanServices.ExecutablePlanSubmit(list); return Json(new ReturnMessage() { IsSuccess = true, Message = "提交成功" + result + "。" }); } catch (Exception ex) { return Json(new ReturnMessage() { IsSuccess = false, Message = "提交失败,原因:" + ex.Message }); } } /// /// 查询对应的授课方式List /// /// /// [HttpPost] public ActionResult TeachingModeTypeList(QueryParamsModel pararms) { List list = new List(); var executablePlanID = Request["executablePlanID"].ParseStrTo(); if (executablePlanID.HasValue && executablePlanID != Guid.Empty) { list = ExecutablePlanServices.GetTeachingModeTypeList(executablePlanID); } else { list.Add(((int)EMIS.ViewModel.CF_TeachingMode.Theory).ToString()); } return base.Json(list); } /// /// 查询对应的授课地点List /// /// /// [HttpPost] public ActionResult TeachingPlaceList(QueryParamsModel pararms) { List list = new List(); var executablePlanID = Request["executablePlanID"].ParseStrTo(); if (executablePlanID.HasValue && executablePlanID != Guid.Empty) { list = ExecutablePlanServices.GetTeachingPlaceList(executablePlanID); } else { list.Add(((int)EMIS.ViewModel.EM_TeachingPlace.Multimedia).ToString()); } return base.Json(list); } /// /// 查询对应的执行计划范围信息 /// /// public ActionResult PlanRangeList() { return View(); } /// /// 查询对应的执行计划范围信息 /// /// /// [HttpPost] public ActionResult PlanRangeList(QueryParamsModel pararms) { ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms); var executablePlanID = Request["executablePlanID"].ParseStrTo(); var classmajorID = pararms.getExtraGuid("ClassmajorDropdown"); var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus"); return Json(ExecutablePlanServices.GetPlanRangeViewGrid(configuretView, executablePlanID, classmajorID, inSchoolStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 执行计划范围信息Excel导出 /// /// [HttpPost] public ActionResult PlanRangeListExcel() { return null; } /// /// 查询对应的执行计划人数信息 /// /// public ActionResult PlanStudentList() { return View(); } /// /// 查询对应的执行计划人数信息 /// /// /// [HttpPost] public ActionResult PlanStudentList(QueryParamsModel pararms) { ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms); var executablePlanID = Request["executablePlanID"].ParseStrTo(); var classmajorID = pararms.getExtraGuid("ClassmajorDropdown"); var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus"); return Json(ExecutablePlanServices.GetBaseStudentViewGrid(configuretView, executablePlanID, classmajorID, inSchoolStatus, (int)pararms.page, (int)pararms.rows)); } /// /// 执行计划人数信息Excel导出 /// /// [HttpPost] public ActionResult PlanStudentListExcel() { return null; } /// /// Excel导出 /// /// [HttpPost] public ActionResult Excel() { 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 yearID = Request.Form["DictionarySchoolyear"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionarySchoolyear"].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 grademajorID = Request.Form["GrademajorComboGrid"].ParseStrTo(); var coursematerialID = Request.Form["CourseComboGrid"].ParseStrTo(); var isMainCourse = Request.Form["DictionaryIsMainCourse"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryIsMainCourse"].ParseStrTo(); var teachingModeID = Request.Form["DictionaryTeachingMode"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryTeachingMode"].ParseStrTo(); var handleModeID = Request.Form["DictionaryHandleMode"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryHandleMode"].ParseStrTo(); var planTypeID = Request.Form["DictionaryPlanType"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryPlanType"].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 = ExecutablePlanServices.GetExecutablePlanViewList(configuretView, schoolyearID, campusID, collegeID, yearID, standardID, educationID, learningformID, learnSystem, grademajorID, coursematerialID, isMainCourse, teachingModeID, handleModeID, planTypeID, inschoolStatus, approvalStatus) .Select(x => new { x.SchoolyearCode, x.CollegeCode, x.CollegeName, x.GradeID, x.GrademajorCode, x.GrademajorName, x.SchoolyearNumName, x.SchoolcodeName, x.StarttermName, x.CourseCode, x.CourseName, x.CourseStructureName, x.CourseCategoryName, x.CourseTypeName, x.CourseQualityName, Credit = x.Credit.HasValue ? x.Credit.Value.ToString("#.#") : null, x.TheoryCourse, x.Practicehours, x.Trialhours, x.Totalhours, x.TheoryWeeklyNum, x.PracticeWeeklyNum, x.TrialWeeklyNum, x.SchoolweeksNum, x.WeeklyHours, x.WeeklyNum, x.StartWeeklyNum, x.EndWeeklyNum, x.DepartmentName, x.IsSpecialtycoreName, x.IsCooperationName, x.IsRequiredName, x.IsElectiveName, x.IsNetworkCourseName, x.IsMainCourseName, x.IsNeedMaterialName, x.CourseFineName, x.PracticeTypeName, x.TeachinglanguageName, x.ExaminationModeName, x.ResultTypeName, x.HandleModeName, x.ClassGroupingName, x.TeachingModeIDListName, x.TeachingPlaceIDListName, x.PlanRange, x.StudentCount, x.PlanTypeName, x.ExecuteStatusName, x.SourceTypeName, x.DefaultClassName, x.Remark }).ToTable(); string[] liststring = { "学年学期", RSL.Get("CollegeCode"), RSL.Get("CollegeName"), "年级", "年级专业编号", "年级专业名称", "开课学年", "学期", "开课学期", "课程代码", "课程名称", "课程结构", "课程属性", "课程类型", "课程性质", "课程学分", "理论学时", "实践学时", "实验学时", "总学时", "理论周次", "实践周次", "实验周次", "总周次", "周学时", "每周次数", "开始周次", "结束周次", "开课教研室", "是否专业核心", "是否合作开发", RSL.Get("IsRequired"), "是否网上选修", "是否网络课程", "是否学位课程", "是否需要教材", "精品课程", "实践类型", "授课语言", "考试方式", "成绩类型", "处理方式", "上课类型", "授课方式", "授课地点", "计划范围", "人数", "计划类型", "执行状态", "计划来源", "默认班级名称", "备注" }; neh.Export(dt, liststring, "执行计划信息" + DateTime.Now.ToString("yyyyMMdd")); return Json(new ReturnMessage() { IsSuccess = true, Message = "导出成功。" }); } } }