123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- 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.EvaluationTable;
- using EMIS.CommonLogic.EvaluationManage.EvaluationTable;
- namespace EMIS.Web.Controllers.EvaluationManage.EvaluationTable
- {
- [Authorization]
- public class EvaluationTargetController : Controller
- {
- public Lazy<IEvaluationTargetServices> EvaluationTargetServices { 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 evaluationParticipateTypeID = pararms.getExtraGuid("EvaluationParticipateTypeDropdown");
- var evaluationTypeID = pararms.getExtraGuid("EvaluationTypeDropdown");
- var evaluationTableID = pararms.getExtraGuid("EvaluationTableDropdown");
- var evaluationNormID = pararms.getExtraGuid("EvaluationNormDropdown");
- return base.Json(EvaluationTargetServices.Value.GetEvaluationTargetViewGrid(configuretView, evaluationParticipateTypeID, evaluationTypeID, evaluationTableID, evaluationNormID, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="evaluationTargetID"></param>
- /// <returns></returns>
- public ActionResult CopyAdd(Guid evaluationTargetID)
- {
- EvaluationTargetView evaluationTargetView = new EvaluationTargetView();
- evaluationTargetView = EvaluationTargetServices.Value.GetEvaluationTargetView(evaluationTargetID);
- return View("Edit", evaluationTargetView);
- }
- /// <summary>
- /// 复制新增
- /// </summary>
- /// <param name="evaluationTargetView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult CopyAdd(EvaluationTargetView evaluationTargetView)
- {
- evaluationTargetView.EvaluationTargetID = Guid.Empty;
- return this.Edit(evaluationTargetView);
- }
- /// <summary>
- /// 编辑(新增、修改)
- /// </summary>
- /// <param name="evaluationTargetID"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Edit(Guid? evaluationTargetID)
- {
- EvaluationTargetView evaluationTargetView = new EvaluationTargetView();
- if (evaluationTargetID.HasValue && evaluationTargetID != Guid.Empty)
- {
- evaluationTargetView = EvaluationTargetServices.Value.GetEvaluationTargetView(evaluationTargetID);
- }
-
- return View(evaluationTargetView);
- }
- /// <summary>
- /// 编辑(新增、修改)
- /// </summary>
- /// <param name="evaluationTargetView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Edit(EvaluationTargetView evaluationTargetView)
- {
- try
- {
- EvaluationTargetServices.Value.EvaluationTargetEdit(evaluationTargetView);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "保存成功。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "保存失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="evaluationTargetIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Delete(string evaluationTargetIDs)
- {
- try
- {
- List<Guid?> list = evaluationTargetIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList();
- EvaluationTargetServices.Value.EvaluationTargetDelete(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>
- /// <returns></returns>
- public ActionResult ProjectList()
- {
- return View();
- }
- /// <summary>
- /// 评价指标对应的评价项目
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult ProjectList(QueryParamsModel pararms)
- {
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
- var collegeID = Request["collegeID"].ParseStrTo<Guid>();
- var departmentID = pararms.getExtraGuid("DepartmentDropdown");
- var isPhotoUrl = pararms.getExtraInt("IsPhotoUrlDropdown") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("IsPhotoUrlDropdown");
- var teacherTypeID = pararms.getExtraInt("DictionaryTeacherType") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTeacherType");
- var incumbencyState = pararms.getExtraInt("DictionaryIncumbencyState") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryIncumbencyState");
- var titleID = pararms.getExtraInt("DictionaryTitle") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryTitle");
- var isDualTeacher = pararms.getExtraInt("IsDualTeacherDropdown") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("IsDualTeacherDropdown");
- return null;
- //return base.Json(CollegeServices.GetStaffListViewGrid(configuretView, collegeID, departmentID, isPhotoUrl, teacherTypeID, incumbencyState, titleID, isDualTeacher, (int)pararms.page, (int)pararms.rows));
- }
- /// <summary>
- /// 评价指标对应的评价项目信息Excel导出
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public ActionResult ProjectListExcel()
- {
- return null;
- }
- /// <summary>
- /// Excel导出
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Excel()
- {
- NpoiExcelHelper neh = new NpoiExcelHelper();
- ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
- var evaluationParticipateTypeID = Request.Form["EvaluationParticipateTypeDropdown"].ParseStrTo<Guid>();
- var evaluationTypeID = Request.Form["EvaluationTypeDropdown"].ParseStrTo<Guid>();
- var evaluationTableID = Request.Form["EvaluationTableDropdown"].ParseStrTo<Guid>();
- var evaluationNormID = Request.Form["EvaluationNormDropdown"].ParseStrTo<Guid>();
- var dt = EvaluationTargetServices.Value.GetEvaluationTargetViewList(configuretView, evaluationParticipateTypeID, evaluationTypeID, evaluationTableID, evaluationNormID)
- .Select(x => new
- {
- x.OrderNo,
- x.Code,
- x.Name,
- x.EvaluationTableCode,
- x.EvaluationTableName,
- x.ParticipateTypeCode,
- x.ParticipateTypeName,
- x.IsStudentName,
- x.EvaluationTypeCode,
- x.EvaluationTypeName,
- x.TeachingModeIDListName,
- x.EvaluationNormName,
- x.NormTypeName,
- x.Weight,
- x.ProjectCount,
- x.Remark,
- x.CreateUserName,
- x.ModifyUserName,
- ModifyTime = x.ModifyTime == null ? null : x.ModifyTime.Value.ToString("yyyy-MM-dd HH:mm:ss")
- }).ToTable();
- string[] liststring = {
- "次序", "指标编号", "指标名称", "评价表编号", "评价表名", "参评代码", "参评类型", "学生用", "评价类型编号",
- "评价类型", "授课方式", "评分标准", "评分类型", "权重", "项目个数", "备注", "创建人", "修改人", "修改时间"
- };
- neh.Export(dt, liststring, "评价指标信息" + DateTime.Now.ToString("yyyyMMdd"));
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "导出成功。"
- });
- }
- }
- }
|