using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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.Utility;
using EMIS.Web.Controls;
using EMIS.ViewModel;
using EMIS.ViewModel.UniversityManage.SpecialtyClassManage;
using EMIS.CommonLogic.UniversityManage.SpecialtyClassManage;
namespace EMIS.Web.Controllers.UniversityManage.SpecialtyClassManage
{
[Authorization]
public class FacultymajorController : Controller
{
public IFacultymajorServices FacultymajorServices { get; set; }
///
/// 院系专业页面
///
///
public ActionResult List()
{
return View();
}
///
/// 院系专业页面列表查询
///
///
///
[HttpPost]
public ActionResult List(QueryParamsModel pararms)
{
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
var campusID = pararms.getExtraGuid("CampusDropdown");
var collegeID = pararms.getExtraGuid("CollegeDropdown");
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 scienceclassID = pararms.getExtraInt("DictionaryScienceclass") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryScienceclass");
//在校状态
var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
return base.Json(FacultymajorServices.GetFacultymajorViewGrid(configuretView, campusID, collegeID, standardID, educationID, learningformID,
learnSystem, scienceclassID, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
}
///
/// 查询对应的院系专业信息(带数据范围)
///
///
[HttpPost]
public ActionResult BindCheckList()
{
var list = FacultymajorServices.GetFacultymajorViewList(null).ToList();
return base.Json(list);
}
///
/// 查询院系专业对应的专业信息
///
///
///
///
[HttpPost]
public ActionResult BindStandardDropDownList(DropdownListBindType? bindType, Guid? collegeID)
{
List list = this.FacultymajorServices.GetFacultymajorViewList(collegeID)
.Select(x => new DropdownListItem
{
Text = x.StandardName,
Value = x.StandardID.ToString()
}).ToList();
DropdownListBindType dbt = bindType == null ? DropdownListBindType.SelectAll : bindType.Value;
DropdownList.FormatDropdownItemList(dbt, list);
return base.Json(list);
}
///
/// 查询院系专业对应的专业名称信息
///
///
///
public ActionResult Standard(QueryParamsModel pararms)
{
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
var collegeID = pararms.getExtraGuid("CollegeDropdown");
return base.Json(FacultymajorServices.GetStandardViewGrid(configuretView, collegeID, (int)pararms.page, (int)pararms.rows));
}
///
/// 查询院系专业对应的学制信息
///
///
///
public ActionResult LearnSystem(QueryParamsModel pararms)
{
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
var LearnSystem = pararms.getExtraString("DictionaryLearnSystem");
return base.Json(FacultymajorServices.GetLearnSystemViewGrid(configuretView, LearnSystem, (int)pararms.page, (int)pararms.rows));
}
///
/// 复制新增
///
///
///
public ActionResult CopyAdd(Guid facultymajorID)
{
FacultymajorView facultymajorView = new FacultymajorView();
facultymajorView = FacultymajorServices.GetFacultymajorView(facultymajorID);
return View("Edit", facultymajorView);
}
///
/// 复制新增
///
///
///
[HttpPost]
public ActionResult CopyAdd(FacultymajorView facultymajorView)
{
facultymajorView.FacultymajorID = Guid.Empty;
return this.Edit(facultymajorView);
}
///
/// 编辑(新增、修改,业务主键:院系所ID、院系专业编号、专业ID(Value)、培养层次、学习形式、学制唯一)
///
///
[HttpGet]
public ActionResult Edit(Guid? facultymajorID)
{
FacultymajorView facultymajorView = new FacultymajorView();
if (facultymajorID.HasValue && facultymajorID != Guid.Empty)
{
facultymajorView = FacultymajorServices.GetFacultymajorView(facultymajorID);
}
return View(facultymajorView);
}
///
/// 编辑(新增、修改,业务主键:院系所ID、院系专业编号、专业ID(Value)、培养层次、学习形式、学制唯一)
///
///
///
[HttpPost]
public ActionResult Edit(FacultymajorView facultymajorView)
{
try
{
FacultymajorServices.FacultymajorEdit(facultymajorView);
return Json(new ReturnMessage()
{
IsSuccess = true,
Message = "保存成功。"
});
}
catch (Exception ex)
{
return Json(new ReturnMessage()
{
IsSuccess = false,
Message = "保存失败:" + ex.Message
});
}
}
///
/// 删除
///
///
///
[HttpPost]
public ActionResult Delete(string facultymajorIDs)
{
try
{
List list = facultymajorIDs.Split(',').Where(x => !string.IsNullOrEmpty(x)).Select(x => (Guid?)new Guid(x)).ToList();
FacultymajorServices.FacultymajorDelete(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 });
}
}
///
/// Excel导入
///
///
///
///
[HttpGet]
public ActionResult Import(string errorFile, string operationTips)
{
ViewBag.ErrorFile = errorFile;
if (string.IsNullOrEmpty(operationTips))
{
operationTips = "点击查看失败原因...";
}
ViewBag.operationTips = operationTips;
return View();
}
///
/// Excel导入
///
///
///
[HttpPost]
public ActionResult Import(HttpPostedFileBase file)
{
try
{
if (!NpoiExcelHelper.GetIsCompatible(file.FileName))
{
throw new Exception("格式错误,只允许导入xls或xlsx格式的Excel文件。");
}
Dictionary cellheader = new Dictionary
{
{ "Code", "院系专业编号" },
{ "Name", "院系专业名称" },
{ "Abbreviation", "简称" },
{ "EnglishName", "英文名称" },
{ "CollegeCode", RSL.Get("CollegeCode") },
{ "StandardCodeStr", "专业代码" },
{ "StandardNameStr", "专业名称" },
{ "EducationStr", RSL.Get("EducationName") },
{ "LearningformStr", "学习形式" },
{ "LearnSystemStr", "学制" },
{ "ScienceclassStr", "专业科类" },
{ "LearningstyleStr", "学习方式" },
{ "LearnPositionStr", "授予学位" },
{ "TeacherIdentification", "师范标识" },
{ "SetTimeStr", "设置时间" },
{ "Remark", "备注" },
{ "ErrorMessage", "未导入原因" }
};
StringBuilder errorMsg = new StringBuilder();
string sourceWebPath = FileUploadHelper.UploadFile(file);
var sourcePhysicalPath = Server.MapPath(sourceWebPath);
List errList = new List();
List dataList = new List();
int? inCount = 0; //导入个数
int? upCount = 0; //更新个数
int? errCount = 0; //失败个数
//导入
FacultymajorServices.FacultymajorImport(cellheader, out inCount, out upCount, out errList, out errCount, sourcePhysicalPath);
System.IO.File.Delete(sourcePhysicalPath);//删除本地缓存文件
if (errList.Count() > 0)
{
//获取错误数据文件路径
string errorWebPath = string.Format("{0}", NpoiExcelHelper.EntityListToExcel2003(cellheader, errList, "院系专业信息导入失败文件", sourcePhysicalPath));
ViewBag.ErrorFile = errorWebPath;
string Errinfo = string.Format("提示:{0}条院系专业信息导入成功,{1}条院系专业信息更新成功,{2}条院系专业信息导入失败,点击查看。", inCount, upCount, errCount);
ViewBag.operationTips = Errinfo;
return RedirectToAction("MsgShow", "Common", new
{
WindowID = "none",
msg = Errinfo,
url = Url.Action("Import").AddMenuParameter() + "&errorFile=" + errorWebPath + "&operationTips=" + Errinfo + "&WindowID=" + Request["WindowID"]
});
}
else
{
string successInfo = string.Format("提示:{0}条院系专业信息导入成功,{1}条院系专业信息更新成功。", inCount, upCount);
return RedirectToAction("MsgShow", "Common", new
{
WindowID = Request["WindowID"],
msg = successInfo,
url = Url.Action("List").AddMenuParameter()
});
}
}
catch (Exception ex)
{
return RedirectToAction("MsgShow", "Common", new
{
WindowID = "none",
msg = "导入失败,原因:" + ex.Message,
url = Url.Action("Import").AddMenuParameter() + "&WindowID=" + Request["WindowID"]
});
}
}
///
/// 年级专业页面(查询对应的年级专业信息)
///
///
public ActionResult GrademajorList()
{
return View();
}
///
/// 年级专业页面(查询对应的年级专业信息)
///
///
///
[HttpPost]
public ActionResult GrademajorList(QueryParamsModel pararms)
{
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
var facultymajorID = Request["facultymajorID"].ParseStrTo();
var gradeID = pararms.getExtraInt("DictionaryGrade") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryGrade");
var semesterID = pararms.getExtraInt("DictionarySemester") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionarySemester");
//int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo();
var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
return Json(FacultymajorServices.GetGrademajorViewGrid(configuretView, facultymajorID, gradeID, semesterID, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
}
///
/// 导出年级专业明细Excel
///
///
///
[HttpPost]
public ActionResult Excel_Grademajor()
{
NpoiExcelHelper neh = new NpoiExcelHelper();
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
var facultymajorID = Request["facultymajorID"].ParseStrTo();
var gradeID = Request.Form["DictionaryGrade"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryGrade"].ParseStrTo();
var semesterID = Request.Form["DictionarySemester"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionarySemester"].ParseStrTo();
int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo();
var dt = FacultymajorServices.GetGrademajorViewList(configuretView, facultymajorID, gradeID, semesterID, inSchoolStatus)
.Select(x => new
{
x.Code,
x.Name,
x.GradeID,
x.SemesterName,
x.GraduateSchoolyearCode,
x.StudentCount,
x.FacultymajorCode,
x.FacultymajorName
}).ToTable();
string[] liststring = {
"年级专业编号", "年级专业名称", "年级", "入学学期", "毕业学期", "人数", "院系专业编号", "院系专业名称"
};
var title = "院系专业年级专业信息";
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
{
title = "院系专业年级专业信息(非在校)";
}
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
{
title = "院系专业年级专业信息(在校)";
}
neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
return Json(new ReturnMessage()
{
IsSuccess = true,
Message = "导出成功。"
});
}
///
/// 查询院系专业对应的所有班级学生
///
///
public ActionResult ClassStudentListView()
{
return View();
}
///
/// 查询院系专业对应的所有班级学生
///
///
///
[HttpPost]
public ActionResult ClassStudentListView(QueryParamsModel pararms)
{
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(pararms);
var facultymajorID = Request["facultymajorID"].ParseStrTo();
var gradeID = pararms.getExtraInt("DictionaryGrade") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryGrade");
var semesterID = pararms.getExtraInt("DictionarySemester") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionarySemester");
//int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo();
var inSchoolStatus = pararms.getExtraInt("DictionaryInschoolStatus") == DropdownList.SELECT_ALL ? null : pararms.getExtraInt("DictionaryInschoolStatus");
return Json(FacultymajorServices.GetStudentBaseViewGrid(configuretView, facultymajorID, gradeID, semesterID, inSchoolStatus, (int)pararms.page, (int)pararms.rows));
}
///
/// 导出学生明细Excel
///
///
///
[HttpPost]
public ActionResult Excel_ClassStudent()
{
NpoiExcelHelper neh = new NpoiExcelHelper();
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
var facultymajorID = Request["facultymajorID"].ParseStrTo();
var gradeID = Request.Form["DictionaryGrade"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryGrade"].ParseStrTo();
var semesterID = Request.Form["DictionarySemester"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionarySemester"].ParseStrTo();
int? inSchoolStatus = Request["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request["DictionaryInschoolStatus"].ParseStrTo();
var dt = FacultymajorServices.GetStudentBaseViewList(configuretView, facultymajorID, gradeID, semesterID, inSchoolStatus)
.Select(x => new
{
x.LoginID,
x.UserName,
x.SexName,
x.InSchoolStatusName,
x.StudentStatusName,
x.ClassmajorNo,
x.ClassmajorName,
x.GradeID,
x.SemesterName,
x.GrademajorCode,
x.GrademajorName,
x.FacultymajorCode,
x.FacultymajorName
}).ToTable();
string[] liststring = {
"学号", "姓名", "性别", "在校状态", "学籍状态", "班级编号", "班级名称", "年级", "入学学期", "年级专业编号", "年级专业名称", "院系专业编号", "院系专业名称"
};
var title = "院系专业学生信息";
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
{
title = "院系专业学生信息(非在校)";
}
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
{
title = "院系专业学生信息(在校)";
}
neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
return Json(new ReturnMessage()
{
IsSuccess = true,
Message = "导出成功。"
});
}
///
/// 导出Excel
///
///
///
[HttpPost]
public ActionResult Excel()
{
NpoiExcelHelper neh = new NpoiExcelHelper();
ConfiguretView configuretView = ConfiguretExtensions.GetConfiguretermsView(null);
var campusID = Request.Form["CampusDropdown"].ParseStrTo();
var collegeID = Request.Form["CollegeDropdown"].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 scienceclassID = Request.Form["DictionaryScienceclass"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryScienceclass"].ParseStrTo();
//在校状态
var inSchoolStatus = Request.Form["DictionaryInschoolStatus"].ParseStrTo() == DropdownList.SELECT_ALL ? null : Request.Form["DictionaryInschoolStatus"].ParseStrTo();
var dt = FacultymajorServices.GetFacultymajorViewList(configuretView, campusID, collegeID, standardID, educationID, learningformID, learnSystem, scienceclassID, inSchoolStatus)
.Select(x => new
{
x.Code,
x.Name,
x.Abbreviation,
x.EnglishName,
x.CollegeCode,
x.CollegeName,
x.StandardCode,
x.StandardID,
x.StandardName,
x.EducationName,
x.LearningformName,
LearnSystem = x.LearnSystem.HasValue ? x.LearnSystem.Value.ToString("#.#") : null,
x.ScienceclassName,
x.LearningstyleName,
x.LearnPositionName,
x.TeacherIdentification,
SetTime = x.SetTime.HasValue ? x.SetTime.Value.ToString("yyyy-MM-dd") : "",
x.GrademajorCount,
x.StudentCount,
x.Remark
}).ToTable();
string[] liststring = {
"院系专业编号", "院系专业名称", "简称", "英文名称", RSL.Get("CollegeCode"), RSL.Get("College"),
"专业代码", "专业ID(Value)", "专业名称", RSL.Get("EducationID"), "学习形式", "学制",
"专业科类", "学习方式", "授予学位", "师范标识", "设置时间", "年级专业数", "人数", "备注"
};
var title = "院系专业信息";
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.No)
{
title = "院系专业信息(非在校)";
}
if (inSchoolStatus == (int)CF_INOrOutSchoolStatus.Yes)
{
title = "院系专业信息(在校)";
}
neh.Export(dt, liststring, title + DateTime.Now.ToString("yyyyMMdd"));
return Json(new ReturnMessage()
{
IsSuccess = true,
Message = "导出成功。"
});
}
}
}