123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- 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.Web.Controls;
- using EMIS.Utility;
- using EMIS.ViewModel;
- using EMIS.ViewModel.EvaluationManage.StudentEvaluation;
- using EMIS.CommonLogic.EvaluationManage.StudentEvaluation;
- namespace EMIS.Web.Controllers.EvaluationManage.StudentEvaluation
- {
- [Authorization]
- public class EvaluationStudentSettingScoreController : Controller
- {
- public Lazy<IEvaluationStudentSettingScoreServices> EvaluationStudentSettingScoreServices { 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 schoolyearID = pararms.getExtraGuid("SchoolyearDropdown");
- var campusID = pararms.getExtraGuid("CampusDropdown");
- var collegeID = pararms.getExtraGuid("CollegeDropdown");
- var departmentID = pararms.getExtraGuid("DepartmentDropdown");
- var coursematerialID = pararms.getExtraGuid("CourseComboGrid");
- var courseTypeID = pararms.getExtraInt("DictionaryCourseType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryCourseType");
- var handleModeID = pararms.getExtraInt("DictionaryHandleMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryHandleMode");
- var teachingModeID = pararms.getExtraInt("DictionaryTeachingMode") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTeachingMode");
- var staffID = pararms.getExtraGuid("StaffComboGrid");
- var teachingMethodID = pararms.getExtraInt("DictionaryTeachingMethod") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTeachingMethod");
- var evaluationTableID = pararms.getExtraGuid("EvaluationTableDropdown");
- var openState = pararms.getExtraInt("OpenStateDropdown") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("OpenStateDropdown");
- return base.Json(EvaluationStudentSettingScoreServices.Value.GetEvaluationStudentSettingScoreViewGrid(configuretView, schoolyearID, campusID, collegeID, departmentID,
- coursematerialID, courseTypeID, handleModeID, teachingModeID, staffID, teachingMethodID, evaluationTableID, openState, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 评分生成
- /// </summary>
- /// <returns></returns>
- public ActionResult Create()
- {
- return View();
- }
- /// <summary>
- /// 评分生成
- /// </summary>
- /// <param name="evaluationStudentSettingScoreView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Create(EvaluationStudentSettingScoreView evaluationStudentSettingScoreView)
- {
- try
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>();
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>();
- var departmentID = Request.Form["DepartmentDropdown"].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 coursematerialID = Request.Form["CourseComboGrid"].ParseStrTo<Guid>();
- var courseTypeID = Request.Form["DictionaryCourseType"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryCourseType"].ParseStrTo<int>();
- var handleModeID = Request.Form["DictionaryHandleMode"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryHandleMode"].ParseStrTo<int>();
- var teachingModeID = Request.Form["DictionaryTeachingMode"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryTeachingMode"].ParseStrTo<int>();
- var staffID = Request.Form["StaffComboGrid"].ParseStrTo<Guid>();
- var teachingMethodID = Request.Form["DictionaryTeachingMethod"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryTeachingMethod"].ParseStrTo<int>();
- string result = EvaluationStudentSettingScoreServices.Value.EvaluationStudentSettingScoreCreate(campusID, collegeID, departmentID, gradeID, standardID,
- coursematerialID, courseTypeID, handleModeID, teachingModeID, staffID, teachingMethodID, evaluationStudentSettingScoreView.SchoolyearID);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "生成成功" + result + "。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "生成失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="evaluationStudentSettingScoreID"></param>
- /// <returns></returns>
- public ActionResult CopyAdd(Guid evaluationStudentSettingScoreID)
- {
- var evaluationStudentSettingScoreView = new EvaluationStudentSettingScoreView();
- evaluationStudentSettingScoreView = EvaluationStudentSettingScoreServices.Value.GetEvaluationStudentSettingScoreView(evaluationStudentSettingScoreID);
- return View("Edit", evaluationStudentSettingScoreView);
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="evaluationStudentSettingScoreView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult CopyAdd(EvaluationStudentSettingScoreView evaluationStudentSettingScoreView)
- {
- evaluationStudentSettingScoreView.EvaluationStudentSettingScoreID = Guid.Empty;
- return this.Edit(evaluationStudentSettingScoreView);
- }
- /// <summary>
- /// 编辑
- /// </summary>
- /// <param name="evaluationStudentSettingScoreID"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Edit(Guid? evaluationStudentSettingScoreID)
- {
- var evaluationStudentSettingScoreView = new EvaluationStudentSettingScoreView();
- if (evaluationStudentSettingScoreID.HasValue && evaluationStudentSettingScoreID != Guid.Empty)
- {
- evaluationStudentSettingScoreView = EvaluationStudentSettingScoreServices.Value.GetEvaluationStudentSettingScoreView(evaluationStudentSettingScoreID);
- }
- else
- {
- evaluationStudentSettingScoreView.TotalScore = 0;
- }
- return View(evaluationStudentSettingScoreView);
- }
- /// <summary>
- /// 编辑
- /// </summary>
- /// <param name="evaluationStudentSettingScoreView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Edit(EvaluationStudentSettingScoreView evaluationStudentSettingScoreView)
- {
- try
- {
- EvaluationStudentSettingScoreServices.Value.EvaluationStudentSettingScoreEdit(evaluationStudentSettingScoreView);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "保存成功。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "保存失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="evaluationStudentSettingScoreIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Delete(string evaluationStudentSettingScoreIDs)
- {
- try
- {
- List<Guid?> list = evaluationStudentSettingScoreIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList();
- EvaluationStudentSettingScoreServices.Value.EvaluationStudentSettingScoreDelete(list);
- return base.Json(new ReturnMessage { IsSuccess = true, Message = "删除成功。" });
- }
- catch (Exception ex)
- {
- return base.Json(new ReturnMessage() { IsSuccess = false, Message = "删除失败,原因:" + ex.Message });
- }
- }
- /// <summary>
- /// Excel导出
- /// </summary>
- /// <returns></returns>
- [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<Guid>();
- var campusID = Request.Form["CampusDropdown"].ParseStrTo<Guid>();
- var collegeID = Request.Form["CollegeDropdown"].ParseStrTo<Guid>();
- var departmentID = Request.Form["DepartmentDropdown"].ParseStrTo<Guid>();
- var coursematerialID = Request.Form["CourseComboGrid"].ParseStrTo<Guid>();
- var courseTypeID = Request.Form["DictionaryCourseType"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryCourseType"].ParseStrTo<int>();
- var handleModeID = Request.Form["DictionaryHandleMode"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryHandleMode"].ParseStrTo<int>();
- var teachingModeID = Request.Form["DictionaryTeachingMode"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryTeachingMode"].ParseStrTo<int>();
- var staffID = Request.Form["StaffComboGrid"].ParseStrTo<Guid>();
- var teachingMethodID = Request.Form["DictionaryTeachingMethod"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryTeachingMethod"].ParseStrTo<int>();
- var evaluationTableID = Request.Form["EvaluationTableDropdown"].ParseStrTo<Guid>();
- var openState = Request.Form["OpenStateDropdown"].ParseStrTo<int>() == DropdownList.SELECT_ALL ? null : Request.Form["OpenStateDropdown"].ParseStrTo<int>();
- var dt = EvaluationStudentSettingScoreServices.Value.GetEvaluationStudentSettingScoreViewList(configuretView, schoolyearID, campusID, collegeID, departmentID,
- coursematerialID, courseTypeID, handleModeID, teachingModeID, staffID, teachingMethodID, evaluationTableID, openState)
- .Select(x => new
- {
- x.SchoolyearCode,
- x.MissionName,
- x.MissionClassName,
- x.CollegeNo,
- x.CollegeName,
- x.CampusNo,
- x.CampusName,
- x.CourseCode,
- x.CourseName,
- x.CourseStructureName,
- x.CourseCategoryName,
- x.CourseTypeName,
- x.CourseQualityName,
- Credit = x.Credit.HasValue ? x.Credit.Value.ToString("#.#") : null,
- x.DepartmentNo,
- x.DepartmentName,
- x.HandleModeName,
- x.TeachingModeName,
- x.MissionClassStatusName,
- x.EvaluationTableCode,
- x.EvaluationTableName,
- x.ParticipateTypeName,
- x.EvaluationTypeCode,
- x.EvaluationTypeName,
- x.StaffCode,
- x.StaffName,
- x.TitleName,
- x.TeachingMethodName,
- x.ParticipateCount,
- x.NoParticipateCount,
- x.ValidityParticipateCount,
- ValidityParticipateRate = x.ValidityParticipateRate.HasValue ? x.ValidityParticipateRate.Value.ToString("#.#") : "0",
- x.OpenStateName,
- x.TotalScore,
- x.Remark
- }).ToTable();
- string[] liststring = {
- "学年学期", "任务名称", "任务班名称", RSL.Get("CollegeCode"), RSL.Get("College"), RSL.Get("CampusCode"), RSL.Get("CampusName"),
- "课程代码", "课程名称", "课程结构", "课程属性", "课程类型", "课程性质", "课程学分", "开课教研室代码", "开课教研室",
- "处理方式", "授课方式", "任务状态", "评价表编号", "评价表名", "参评类型", "评价类型编号", "评价类型", "教师工号",
- "任课教师", "职称", "任课方式", "参评人数", "未评人数", "有效评数", "有效评率%", "开放状态", "评分", "备注"
- };
- neh.Export(dt, liststring, "学评评分信息" + DateTime.Now.ToString("yyyyMMdd"));
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "导出成功。"
- });
- }
- }
- }
|