123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using EMIS.CommonLogic.ExamManage;
- using EMIS.ViewModel;
- using EMIS.Web.Controls;
- using Bowin.Common.Exceptions;
- using Bowin.Common.Utility;
- using Bowin.Common.Data;
- using Bowin.Web.Controls.Mvc;
- namespace EMIS.Web.Controllers.ExamManage
- {
- [Authorization]
- public class ExamSubjectLimitController : Controller
- {
- public IExamSubjectLimitServices IExamSubjectLimitService { get; set; }
- //
- // GET: /ExaminationBatch/
- public ActionResult List()
- {
- return View();
- }
- public ActionResult Select()
- {
- return View();
- }
- /// <summary>
- /// 列表查询
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult List(QueryParamsModel pararms)
- {
- List<ConfiguretView> configuretViews = new List<ConfiguretView>();
- configuretViews.Add(ConfiguretExtensions.GetConfiguretermsView(pararms));
- configuretViews.AddRange(pararms.getConditions());
- var StartDate = configuretViews.Where(x => x.Attribute == "StartDate").SingleOrDefault();
- if (StartDate != null) StartDate.Condition = ">=";
- var EndDate = configuretViews.Where(x => x.Attribute == "EndDate").SingleOrDefault();
- if (EndDate != null) EndDate.Condition = "<=";
- return base.Json(IExamSubjectLimitService.GetListGridView((int)pararms.page, (int)pararms.rows, configuretViews.ToArray()));
- }
- /// <summary>
- /// 编辑页列表查询
- /// </summary>
- /// <param name="pararms"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult EditList(QueryParamsModel pararms)
- {
- List<ConfiguretView> configuretViews = new List<ConfiguretView>();
- configuretViews.Add(ConfiguretExtensions.GetConfiguretermsView(pararms));
- configuretViews.AddRange(pararms.getConditions());
- var ExaminationSubjectCountLimitID = Guid.Parse(Request.QueryString["ExaminationSubjectCountLimitID"]);
- configuretViews.Add(new ConfiguretView()
- {
- Attribute = "ExaminationSubjectCountLimitID",
- Condition = "=",
- ConditionValue = ExaminationSubjectCountLimitID.ToString()
- });
- return base.Json(IExamSubjectLimitService.GetListGridView((int)pararms.page, (int)pararms.rows, configuretViews.ToArray()));
- }
- /// <summary>
- /// 设置编辑页
- /// </summary>
- /// <param name="ExaminationProjectFeeID"></param>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Edit(Guid? ViewID)
- {
- EMIS.ViewModel.ExamSubjectLimitView projectFeeView = new EMIS.ViewModel.ExamSubjectLimitView() { ExaminationSubjectCountLimitID = Guid.NewGuid() };
- if (ViewID.HasValue && ViewID != Guid.Empty)
- {
- projectFeeView = IExamSubjectLimitService.GetView(ViewID);
- }
- return View(projectFeeView);
- }
- /// <summary>
- /// 设置编辑页提交
- /// </summary>
- /// <param name="campusView"></param>
- /// <returns></returns>
- [HttpPost]
- public ActionResult Edit(ExamSubjectLimitView view)
- {
- try
- {
- var listData = DataGrid.GetTableData<EMIS.ViewModel.ExamSubjectLimitView>("dgStandardList");
- IExamSubjectLimitService.Edit(view, listData);
- return Json(new ReturnMessage()
- {
- IsSuccess = true,
- Message = "保存成功。"
- });
- }
- catch (Exception ex)
- {
- return Json(new ReturnMessage()
- {
- IsSuccess = false,
- Message = "保存失败,原因:" + ex.Message
- });
- }
- }
- /// <summary>
- /// 删除项目设置
- /// </summary>
- /// <param name="campusIDs"></param>
- /// <returns></returns>
- [HttpPost]
- public JsonResult Delete(string IDs)
- {
- try
- {
- List<Guid?> list = IDs.Split(',').Where(x => !string.IsNullOrEmpty(x))
- .Select(x => (Guid?)new Guid(x)).ToList();
- IExamSubjectLimitService.Delete(list);
- return base.Json("删除成功。");
- }
- 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("删除失败,原因:" + mge);
- }
- }
- [HttpPost]
- public ActionResult Excel(QueryParamsModel pararms)
- {
- List<ConfiguretView> configuretViews = new List<ConfiguretView>();
- configuretViews.Add(ConfiguretExtensions.GetConfiguretermsView(pararms));
- configuretViews.AddRange(pararms.getConditions());
- var StartDate = configuretViews.Where(x => x.Attribute == "StartDate").SingleOrDefault();
- if (StartDate != null) StartDate.Condition = ">=";
- var EndDate = configuretViews.Where(x => x.Attribute == "EndDate").SingleOrDefault();
- if (EndDate != null) EndDate.Condition = "<=";
- var query = IExamSubjectLimitService.GetList(configuretViews.ToArray());
- var SelectedID = Request.Form["SelectedID"];
- List<Guid?> selectIDlist = new List<Guid?>();
- if (SelectedID != "" && SelectedID != null)
- {
- selectIDlist = SelectedID.SplitIDString();
- query = query.Where(x => selectIDlist.Contains(x.ExaminationSubjectCountLimitID));
- }
- var dt = query.ToList().Select(q =>
- new
- {
- q.ExaminationTypeName,
- q.StandardName,
- q.SchoolyearNumName,
- q.SubjectCountLimit
- }).ToTable();
- NpoiExcelHelper neh = new NpoiExcelHelper();
- string[] liststring = {
- "考试类型","标准专业","年级","报名门数"};
- neh.Export(dt, liststring, "考试类型控制设置列表" + DateTime.Now.ToString("yyyyMMddhhmmss"));
- return RedirectToAction("MsgShow", "Common", new
- {
- msg = "导出成功!",
- url = Url.Content("~/ExaminationBatc/List").AddMenuParameter()
- });
- }
- }
- }
|