|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- using Learun.Util;
- using System.Data;
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using System.Web.Mvc;
- using System.Collections.Generic;
-
- namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
- {
- /// <summary>
- /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
- /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
- /// 创 建:超级管理员
- /// 日 期:2022-04-12 15:47
- /// 描 述:考场表
- /// </summary>
- public class Exam_ExamRoomController : MvcControllerBase
- {
- private Exam_ExamRoomIBLL exam_ExamRoomIBLL = new Exam_ExamRoomBLL();
-
- #region 视图功能
-
- /// <summary>
- /// 主页面
- /// <summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Index()
- {
- return View();
- }
- /// <summary>
- /// 表单页
- /// <summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Form()
- {
- return View();
- }
- /// <summary>
- /// 导入/清空数据
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult FormYearSemester()
- {
- return View();
- }
-
- #endregion
-
- #region 获取数据
-
- /// <summary>
- /// 获取页面显示列表数据
- /// </summary>
- /// <param name="pagination">分页参数</param>
- /// <param name="queryJson">查询参数</param>
- /// <returns></returns>
- [HttpGet]
- [AjaxOnly]
- public ActionResult GetPageList(string pagination, string queryJson)
- {
- Pagination paginationobj = pagination.ToObject<Pagination>();
- var data = exam_ExamRoomIBLL.GetPageList(paginationobj, queryJson);
- var jsonData = new
- {
- rows = data,
- total = paginationobj.total,
- page = paginationobj.page,
- records = paginationobj.records
- };
- return Success(jsonData);
- }
- /// <summary>
- /// 获取表单数据
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpGet]
- [AjaxOnly]
- public ActionResult GetFormData(string keyValue)
- {
- var Exam_ExamRoomData = exam_ExamRoomIBLL.GetExam_ExamRoomEntity(keyValue);
- var jsonData = new
- {
- Exam_ExamRoom = Exam_ExamRoomData,
- };
- return Success(jsonData);
- }
- #endregion
-
- #region 提交数据
-
- /// <summary>
- /// 删除实体数据
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult DeleteForm(string keyValue)
- {
- exam_ExamRoomIBLL.DeleteEntity(keyValue);
- return Success("删除成功!");
- }
-
- /// <summary>
- /// 导入教室
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult Import(string AcademicYearNo, string Semester, int SeatRows, int SeatColumns)
- {
- int res = exam_ExamRoomIBLL.Import(AcademicYearNo, Semester,SeatRows,SeatColumns);
- return Success("导入" + res + "条数据!");
- }
- /// <summary>
- /// 按条件清空数据
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult DeleteWhere(string AcademicYearNo, string Semester)
- {
- int res = exam_ExamRoomIBLL.DeleteWhere(AcademicYearNo, Semester);
- return Success("清空" + res + "条数据!");
- }
- /// <summary>
- /// 保存实体数据(新增、修改)
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <param name="strEntity">实体</param>
- /// <returns></returns>
- [HttpPost]
- [ValidateAntiForgeryToken]
- [AjaxOnly]
- public ActionResult SaveForm(string keyValue, string strEntity)
- {
- Exam_ExamRoomEntity entity = strEntity.ToObject<Exam_ExamRoomEntity>();
-
- //判断考场编号有无重复
- var model = exam_ExamRoomIBLL.GetEntityByClassroomNo(entity.ClassroomNo,entity.AcademicYearNo,entity.Semester);
- if (model != null && string.IsNullOrEmpty(keyValue))
- {
- return Fail("考场编号重复!");
- }
- else if (model != null && !string.IsNullOrEmpty(keyValue) && keyValue != model.ERId)
- {
- return Fail("考场编号重复!");
- }
-
- //计算考场座位数
- entity.SeatCount = entity.SeatRows * entity.SeatColumns;
- exam_ExamRoomIBLL.SaveEntity(keyValue, entity);
- if (string.IsNullOrEmpty(keyValue))
- {
- }
- return Success("保存成功!");
- }
-
- /// <summary>
- /// 启用/停用
- /// </summary>
- /// <param name="keyValue"></param>
- /// <param name="EREnabled"></param>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult Lock(string keyValue, int EREnabled)
- {
- exam_ExamRoomIBLL.Lock(keyValue, EREnabled);
- return Success("操作成功!");
- }
- #endregion
-
- }
- }
|