| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595 |
- /*
- * 盟主管理
- */
- 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<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
- {
- OtherMySqlConn.connstr = ConfigurationManager.AppSettings["SqlConnStr"].ToString();
- }
- #region 盟主管理列表
- /// <summary>
- /// 根据条件查询盟主管理列表
- /// </summary>
- /// <returns></returns>
- public IActionResult Index(Leaders data, string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 根据条件查询盟主管理列表
- /// <summary>
- /// 盟主管理列表
- /// </summary>
- /// <returns></returns>
- public JsonResult IndexData(Leaders data, string UserIdMakerCode, string LeaderLevelSelect, string CreateDateData, int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- 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<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Leaders", Fields, "Id desc", "0", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- //创客
- int UserId = int.Parse(function.CheckInt(dic["UserId"].ToString()));
- Users userid_Users = db.Users.FirstOrDefault(m => m.Id == UserId) ?? new Users();
- var userAccount = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new UserAccount();
- dic["UserIdMakerCode"] = userid_Users.MakerCode;
- dic["UserIdRealName"] = userid_Users.RealName;
- dic["LeaderReserve"] = userAccount.LeaderReserve;
- dic["LeaderBalanceAmount"] = userAccount.LeaderBalanceAmount;
- 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 增加盟主管理
- /// <summary>
- /// 增加或修改盟主管理信息
- /// </summary>
- /// <returns></returns>
- public IActionResult Add(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 增加盟主管理
- /// <summary>
- /// 增加或修改盟主管理信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Add(Leaders data, string MakerCode)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- 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 修改盟主管理
- /// <summary>
- /// 增加或修改盟主管理信息
- /// </summary>
- /// <returns></returns>
- 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 修改盟主管理
- /// <summary>
- /// 增加或修改盟主管理信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Edit(Leaders data, string MakerCode)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- 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 IActionResult ChangeLeaderAmount(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Leaders leaders = db.Leaders.FirstOrDefault(m => m.Id == Id) ?? new Leaders();
- Users editData = db.Users.FirstOrDefault(m => m.Id == leaders.UserId) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改盟主金额
- [HttpPost]
- public string ChangeLeaderAmount(Leaders data, string ChangeAmount, int AmountType, string Note, int Kind)
- {
- int UserId = data.Id;
- var Amount = Convert.ToDecimal(ChangeAmount);
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- CreateDate = DateTime.Now,
- CreateMan = SysUserName + "-" + SysRealName,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- //盟主储蓄金
- if (AmountType == 1)
- {
- if ((Kind == 1 || Kind == 3) && Amount > account.LeaderReserve)
- {
- return "盟主储蓄金不足";
- }
- decimal BeforeLeaderReserve = account.LeaderReserve; //变更前盟主储蓄金
- decimal BeforeLeaderBalanceAmount = account.LeaderBalanceAmount; //变更前盟主可提现余额
- int ChangeType = 0;
- if (Kind == 1 && Amount <= account.LeaderReserve)
- {
- account.LeaderReserve -= Amount;
- account.TotalProfit += Amount;
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统冻结(盟主储蓄金)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 1 && Amount > account.LeaderReserve)
- {
- return "冻结金额大于盟主储蓄金";
- }
- else if (Kind == 2 && Amount <= account.TotalProfit)
- {
- account.LeaderReserve += Amount;
- account.TotalProfit -= Amount;
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统解冻(盟主储蓄金)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 2 && Amount > account.TotalProfit)
- {
- return "解冻金额大于冻结金额";
- }
- else if (Kind == 3 && Amount <= account.LeaderReserve)
- {
- account.LeaderReserve -= Amount;
- ChangeType = 4;
- decimal AfterLeaderReserve = account.LeaderReserve; //变更后盟主储蓄金
- decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后盟主可提现余额
- var query = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = UserId, //创客
- Remark = "系统扣减(盟主储蓄金)",
- ChangeType = ChangeType,
- BeforeAmt = BeforeLeaderReserve,
- AfterAmt = AfterLeaderReserve,
- ChangeAmt = Amount,
- TradeDate = DateTime.Now.ToString("yyyyMMdd"),
- TradeMonth = DateTime.Now.ToString("yyyyMM"),
- }).Entity;
- db.SaveChanges();
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统扣减(盟主储蓄金)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 3 && Amount > account.LeaderReserve)
- {
- return "扣减金额大于盟主储蓄金";
- }
- else if (Kind == 4)
- {
- account.LeaderReserve += Amount;
- ChangeType = 1;
- decimal AfterLeaderReserve = account.LeaderReserve; //变更后总金额
- decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后冻结金额
- var query = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = UserId, //创客
- Remark = "系统增加(盟主储蓄金)",
- ChangeType = ChangeType,
- BeforeAmt = BeforeLeaderReserve,
- AfterAmt = AfterLeaderReserve,
- ChangeAmt = Amount,
- TradeDate = DateTime.Now.ToString("yyyyMMdd"),
- TradeMonth = DateTime.Now.ToString("yyyyMM"),
- }).Entity;
- db.SaveChanges();
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统增加(盟主储蓄金)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- AddSysLog(data.Id.ToString(), "Leaders", "ChangeLeaderAmount");
- db.SaveChanges();
- }
- //盟主可提现余额
- if (AmountType == 2)
- {
- if ((Kind == 1 || Kind == 3) && Amount > account.LeaderBalanceAmount)
- {
- return "盟主可提现余额不足";
- }
- decimal BeforeLeaderReserve = account.LeaderReserve; //变更前盟主储蓄金
- decimal BeforeLeaderBalanceAmount = account.LeaderBalanceAmount; //变更前盟主可提现余额
- int ChangeType = 0;
- if (Kind == 1 && Amount <= account.LeaderReserve)
- {
- account.LeaderBalanceAmount -= Amount;
- account.TotalServiceProfit += Amount;
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统冻结(盟主可提现余额)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 1 && Amount > account.LeaderBalanceAmount)
- {
- return "冻结金额大于盟主可提现余额";
- }
- else if (Kind == 2 && Amount <= account.TotalServiceProfit)
- {
- account.LeaderBalanceAmount += Amount;
- account.TotalServiceProfit -= Amount;
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统解冻(盟主可提现余额)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 2 && Amount > account.TotalServiceProfit)
- {
- return "解冻金额大于冻结金额";
- }
- else if (Kind == 3 && Amount <= account.LeaderBalanceAmount)
- {
- account.LeaderBalanceAmount -= Amount;
- ChangeType = 6;
- decimal AfterLeaderReserve = account.LeaderReserve; //变更后总金额
- decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后冻结金额
- var query = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = UserId, //创客
- Remark = "系统扣减(盟主可提现余额)",
- ChangeType = ChangeType,
- BeforeAmt = BeforeLeaderBalanceAmount,
- AfterAmt = AfterLeaderBalanceAmount,
- ChangeAmt = Amount,
- TradeDate = DateTime.Now.ToString("yyyyMMdd"),
- TradeMonth = DateTime.Now.ToString("yyyyMM"),
- }).Entity;
- db.SaveChanges();
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统扣减(盟主可提现余额)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- else if (Kind == 3 && Amount > account.LeaderBalanceAmount)
- {
- return "扣减金额大于盟主可提现余额";
- }
- else if (Kind == 4)
- {
- account.LeaderBalanceAmount += Amount;
- ChangeType = 5;
- decimal AfterLeaderReserve = account.LeaderReserve; //变更后总金额
- decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后冻结金额
- var query = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = UserId, //创客
- Remark = "系统增加(盟主可提现余额)",
- ChangeType = ChangeType,
- BeforeAmt = BeforeLeaderBalanceAmount,
- AfterAmt = AfterLeaderBalanceAmount,
- ChangeAmt = Amount,
- TradeDate = DateTime.Now.ToString("yyyyMMdd"),
- TradeMonth = DateTime.Now.ToString("yyyyMM"),
- }).Entity;
- db.SaveChanges();
- string text = string.Format("修改盟主金额,操作人: '" + SysUserName + "_" + SysRealName + "',操作类型: '系统增加(盟主可提现余额)',Time'" + DateTime.Now + "'");
- function.WriteLog(text, "ChangeLeaderAmount");//修改盟主金额
- }
- AddSysLog(data.Id.ToString(), "Leaders", "ChangeLeaderAmount");
- db.SaveChanges();
- }
- return "success";
- }
- #endregion
- #region 删除盟主管理信息
- /// <summary>
- /// 删除盟主管理信息
- /// </summary>
- /// <returns></returns>
- 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<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", -1);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 开启
- /// <summary>
- /// 开启
- /// </summary>
- /// <returns></returns>
- 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<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 1);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 关闭
- /// <summary>
- /// 关闭
- /// </summary>
- /// <returns></returns>
- 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<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("Status", 0);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Leaders", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 排序
- /// <summary>
- /// 排序
- /// </summary>
- /// <param name="Id"></param>
- 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 导入数据
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData"></param>
- 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
- /// <summary>
- /// 导出Excel
- /// </summary>
- /// <returns></returns>
- public JsonResult ExportExcel(Leaders data, string UserIdMakerCode, string CreateDateData, string LeaderLevelSelect)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- 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<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Leaders", Fields, "Id desc", "0", 1, 20000, condition, "UserId,LeaderLevel,CreateDate", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> 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<string, object> result = new Dictionary<string, object>();
- result.Add("Status", "1");
- result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx");
- result.Add("Obj", diclist);
- Dictionary<string, object> ReturnFields = new Dictionary<string, object>();
- ReturnFields.Add("UserIdMakerCode", "创客创客编号");
- ReturnFields.Add("UserIdRealName", "创客真实姓名");
- ReturnFields.Add("LeaderLevel", "盟主等级");
- ReturnFields.Add("CreateDate", "创建时间");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "Leaders", "ExportExcel");
- return Json(result);
- }
- #endregion
- }
- }
|