/* * 盟主管理 */ using System; using System.Web; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using MySystem.Models; using Library; using LitJson; using MySystemLib; namespace MySystem.Areas.Admin.Controllers { [Area("Admin")] [Route("Admin/[controller]/[action]")] public class LeadersController : BaseController { public LeadersController(IHttpContextAccessor accessor, ILogger logger, IOptions setting) : base(accessor, logger, setting) { OtherMySqlConn.connstr = ConfigurationManager.AppSettings["SqlConnStr"].ToString(); } #region 盟主管理列表 /// /// 根据条件查询盟主管理列表 /// /// public IActionResult Index(Leaders data, string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 根据条件查询盟主管理列表 /// /// 盟主管理列表 /// /// public JsonResult IndexData(Leaders data, string UserIdMakerCode, string LeaderLevelSelect, string CreateDateData, int page = 1, int limit = 30) { Dictionary Fields = new Dictionary(); string condition = " and Status>-1"; //创客编号 if (!string.IsNullOrEmpty(UserIdMakerCode)) { condition += " and UserId in (select UserId from UserForMakerCode where MakerCode='" + UserIdMakerCode + "')"; } //盟主等级 if (!string.IsNullOrEmpty(LeaderLevelSelect)) { condition += " and LeaderLevel=" + LeaderLevelSelect; } //创建时间 if (!string.IsNullOrEmpty(CreateDateData)) { string[] datelist = CreateDateData.Split(new string[] { " - " }, StringSplitOptions.None); string start = datelist[0]; string end = datelist[1]; condition += " and CreateDate>='" + start + " 00:00:00' and CreateDate<='" + end + " 23:59:59'"; } Dictionary obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Leaders", Fields, "Id desc", "0", page, limit, condition); List> diclist = obj["data"] as List>; foreach (Dictionary dic in diclist) { //创客 int UserId = int.Parse(function.CheckInt(dic["UserId"].ToString())); Users userid_Users = db.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users(); dic["UserIdMakerCode"] = userid_Users.MakerCode; dic["UserIdRealName"] = userid_Users.RealName; dic.Remove("UserId"); //盟主等级 int LeaderLevel = int.Parse(dic["LeaderLevel"].ToString()); if (LeaderLevel == 1) dic["LeaderLevel"] = "小盟主"; if (LeaderLevel == 2) dic["LeaderLevel"] = "大盟主"; if (LeaderLevel == 0) dic["LeaderLevel"] = ""; } return Json(obj); } #endregion #region 增加盟主管理 /// /// 增加或修改盟主管理信息 /// /// public IActionResult Add(string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 增加盟主管理 /// /// 增加或修改盟主管理信息 /// /// [HttpPost] public string Add(Leaders data, string MakerCode) { Dictionary Fields = new Dictionary(); var userForMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode) ?? new UserForMakerCode(); if (userForMakerCode.UserId > 0) { var user = db.Users.FirstOrDefault(m => m.Id == userForMakerCode.UserId) ?? new Users(); if (user.Id > 0) { user.LeaderLevel = data.LeaderLevel; Fields.Add("UserId", userForMakerCode.UserId); //创客 Fields.Add("LeaderLevel", data.LeaderLevel); //盟主等级 Fields.Add("SeoKeyword", data.SeoKeyword);//附件 int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Add("Leaders", Fields, 0); AddSysLog(data.Id.ToString(), "Leaders", "add"); db.SaveChanges(); } } return "success"; } #endregion #region 修改盟主管理 /// /// 增加或修改盟主管理信息 /// /// public IActionResult Edit(string right, int Id = 0) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; Leaders editData = db.Leaders.FirstOrDefault(m => m.Id == Id) ?? new Leaders(); Users editDatas = db.Users.FirstOrDefault(m => m.Id == editData.UserId) ?? new Users(); ViewBag.data = editData; ViewBag.datas = editDatas; return View(); } #endregion #region 修改盟主管理 /// /// 增加或修改盟主管理信息 /// /// [HttpPost] public string Edit(Leaders data, string MakerCode) { Dictionary Fields = new Dictionary(); var userForMakerCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode) ?? new UserForMakerCode(); if (userForMakerCode.UserId > 0) { var user = db.Users.FirstOrDefault(m => m.Id == userForMakerCode.UserId) ?? new Users(); if (user.Id > 0) { user.LeaderLevel = data.LeaderLevel; Fields.Add("UserId", userForMakerCode.UserId); //创客 Fields.Add("LeaderLevel", data.LeaderLevel); //盟主等级 Fields.Add("SeoKeyword", data.SeoKeyword); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, data.Id); var leader = db.Leaders.FirstOrDefault(m => m.Id == data.Id) ?? new Leaders(); if (leader.Id > 0) { leader.CreateDate = leader.CreateDate; } AddSysLog(data.Id.ToString(), "Leaders", "update"); db.SaveChanges(); } } return "success"; } #endregion #region 删除盟主管理信息 /// /// 删除盟主管理信息 /// /// public string Delete(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "Leaders", "del"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", -1); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 开启 /// /// 开启 /// /// public string Open(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "Leaders", "open"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 1); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 关闭 /// /// 关闭 /// /// public string Close(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "Leaders", "close"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 0); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 排序 /// /// 排序 /// /// public string Sort(int Id, int Sort) { new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Sort("Leaders", Sort, Id); AddSysLog(Id.ToString(), "Leaders", "sort"); return "success"; } #endregion #region 导入数据 /// /// 导入数据 /// /// public string Import(string ExcelData) { ExcelData = HttpUtility.UrlDecode(ExcelData); JsonData list = JsonMapper.ToObject(ExcelData); for (int i = 1; i < list.Count; i++) { JsonData dr = list[i]; db.Leaders.Add(new Leaders() { CreateDate = DateTime.Now, UpdateDate = DateTime.Now, }); db.SaveChanges(); } AddSysLog("0", "Leaders", "Import"); return "success"; } #endregion #region 导出Excel /// /// 导出Excel /// /// public JsonResult ExportExcel(Leaders data, string UserIdMakerCode, string CreateDateData, string LeaderLevelSelect) { Dictionary Fields = new Dictionary(); string condition = " and Status>-1"; //创客创客编号 if (!string.IsNullOrEmpty(UserIdMakerCode)) { condition += " and UserId in (select UserId from UserForMakerCode where MakerCode='" + UserIdMakerCode + "')"; } //盟主等级 if (!string.IsNullOrEmpty(LeaderLevelSelect)) { condition += " and LeaderLevel=" + LeaderLevelSelect; } //创建时间 if (!string.IsNullOrEmpty(CreateDateData)) { string[] datelist = CreateDateData.Split(new string[] { " - " }, StringSplitOptions.None); string start = datelist[0]; string end = datelist[1]; condition += " and CreateDate>='" + start + " 00:00:00' and CreateDate<='" + end + " 23:59:59'"; } Dictionary obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Leaders", Fields, "Id desc", "0", 1, 20000, condition, "UserId,LeaderLevel,CreateDate", false); List> diclist = obj["data"] as List>; foreach (Dictionary dic in diclist) { //创客 int UserId = int.Parse(function.CheckInt(dic["UserId"].ToString())); Users userid_Users = db.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users(); dic["UserIdMakerCode"] = userid_Users.MakerCode; dic["UserIdRealName"] = userid_Users.RealName; dic.Remove("UserId"); //盟主等级 int LeaderLevel = int.Parse(dic["LeaderLevel"].ToString()); if (LeaderLevel == 1) dic["LeaderLevel"] = "小盟主"; if (LeaderLevel == 2) dic["LeaderLevel"] = "大盟主"; if (LeaderLevel == 0) dic["LeaderLevel"] = ""; } Dictionary result = new Dictionary(); result.Add("Status", "1"); result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx"); result.Add("Obj", diclist); Dictionary ReturnFields = new Dictionary(); ReturnFields.Add("UserIdMakerCode", "创客创客编号"); ReturnFields.Add("UserIdRealName", "创客真实姓名"); ReturnFields.Add("LeaderLevel", "盟主等级"); ReturnFields.Add("CreateDate", "创建时间"); result.Add("Fields", ReturnFields); AddSysLog("0", "Leaders", "ExportExcel"); return Json(result); } #endregion } }