| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395 |
- /*
- * 创客
- */
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Data;
- 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 UsersController : BaseController
- {
- public UsersController(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(Users data, string right, int SelfId = 0, int ParentId = 0, string MakerCode = "")
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- ViewBag.SelfId = SelfId.ToString();
- ViewBag.ParentId = ParentId.ToString();
- ViewBag.MakerCode = MakerCode;
- List<Users> TopUsers = db.Users.Where(m => m.ParentUserId == 0).ToList();
- ViewBag.TopUsers = TopUsers;
- List<UserLevelSet> Levels = db.UserLevelSet.OrderBy(m => m.Id).ToList();
- ViewBag.Levels = Levels;
- return View();
- }
- #endregion
- #region 根据条件查询创客列表
- /// <summary>
- /// 创客列表
- /// </summary>
- /// <returns></returns>
- public JsonResult IndexData(Users data, string ParentMakerCode, string ParentRealName, string AuthFlagSelect, string CreateDateData, int TopUserId, string RiskFlagSelect, string MerchantTypeSelect, int? sSettleAmount, int? eSettleAmount, int? sCashFreezeAmt, int? eCashFreezeAmt, int UserId, int SelfId = 0, int ParentId = 0, int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("MakerCode", "1"); //创客编号
- Fields.Add("RealName", "1"); //创客名称
- Fields.Add("Mobile", "1"); //手机号
- Fields.Add("CertId", "1"); //身份证号码
- Fields.Add("SettleAmount", "3"); //结算金额
- Fields.Add("CashFreezeAmt", "3"); //冻结金额
- Fields.Add("UserLevel", "0"); //创客等级
- string condition = " and Status>-1";
- string sort = "Id desc";
- //直属创客编号
- if (!string.IsNullOrEmpty(ParentMakerCode))
- {
- condition += " and ParentUserId in (select UserId from UserForMakerCode where MakerCode='" + ParentMakerCode + "')";
- }
- //直属创客名称
- if (!string.IsNullOrEmpty(ParentRealName))
- {
- condition += " and ParentUserId in (select UserId from UserForRealName where RealName='" + ParentRealName + "')";
- }
- //实名状态
- if (!string.IsNullOrEmpty(AuthFlagSelect))
- {
- condition += " and AuthFlag=" + AuthFlagSelect;
- }
- //顶级创客
- if (TopUserId > 0)
- {
- condition += " and ParentNav like '," + TopUserId + ",%'";
- }
- //风控标识
- if (!string.IsNullOrEmpty(RiskFlagSelect))
- {
- condition += " and RiskFlag=" + RiskFlagSelect;
- }
- //商户创客类型
- if (!string.IsNullOrEmpty(MerchantTypeSelect))
- {
- condition += " and MerchantType=" + MerchantTypeSelect;
- }
- if (sSettleAmount != null)
- {
- condition += " and SettleAmount>=" + sSettleAmount.Value;
- }
- if (eSettleAmount != null)
- {
- condition += " and SettleAmount<=" + eSettleAmount.Value;
- }
- if (sCashFreezeAmt != null)
- {
- condition += " and CashFreezeAmt>=" + sCashFreezeAmt.Value;
- }
- if (eCashFreezeAmt != null)
- {
- condition += " and CashFreezeAmt<=" + eCashFreezeAmt.Value;
- }
- if (SelfId > 0)
- {
- Users self = db.Users.FirstOrDefault(m => m.Id == SelfId);
- if (self != null)
- {
- string ParentNav = function.CheckNull(self.ParentNav);
- condition += " and Id in (" + ParentNav.Trim(',').Replace(",,", ",") + ")";
- sort = "ParentNav asc";
- }
- }
- if (ParentId > 0)
- {
- condition += " and ParentUserId=" + ParentId;
- }
- if (UserId > 0)
- {
- condition += " and Id=" + UserId;
- }
- 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("Users", Fields, sort, "True", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- dic["AuthFlagName"] = dic["AuthFlag"].ToString() == "1" ? "已实名" : "未实名";
- dic["RiskFlagName"] = dic["RiskFlag"].ToString() == "1" ? "已风控" : "未风控";
- dic["UserLevel"] = RelationClass.GetUserLevelSetInfo(int.Parse(dic["UserLevel"].ToString()));
- dic["MerchantType"] = RelationClassForConst.GetMerchantTypeInfo(int.Parse(dic["MerchantType"].ToString()));
- int ParentUserId = int.Parse(dic["ParentUserId"].ToString());
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- dic["ParentMakerCode"] = puser.MakerCode;
- dic["ParentRealName"] = puser.RealName;
- string ParentNav = dic["ParentNav"].ToString();
- if (!string.IsNullOrEmpty(ParentNav))
- {
- string[] list = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (list.Length > 1)
- {
- int TopId = int.Parse(function.CheckInt(list[1]));
- Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
- dic["TopMakerCode"] = tuser.MakerCode;
- dic["TopRealName"] = tuser.RealName;
- }
- }
- }
- 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(Users data, string ParentMakerCode)
- {
- bool check = db.UserForMobile.Any(m => m.Mobile == data.Mobile);
- if (check)
- {
- return "手机号已存在,请重新输入";
- }
- check = db.UserForRealName.Any(m => m.RealName == data.RealName);
- if (check)
- {
- return "姓名已存在,请重新输入";
- }
- if (!string.IsNullOrEmpty(data.MakerCode))
- {
- check = db.UserForMakerCode.Any(m => m.MakerCode == data.MakerCode);
- if (check)
- {
- return "创客编码已存在,请重新输入";
- }
- }
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("RealName", data.RealName); //真实姓名
- Fields.Add("CertId", data.CertId); //身份证号
- Fields.Add("Mobile", data.Mobile); //手机号
- Fields.Add("LoginPwd", function.MD532(data.LoginPwd)); //登录密码
- Fields.Add("SettleBankCardNo", data.SettleBankCardNo); //结算银行卡号
- if (!string.IsNullOrEmpty(ParentMakerCode))
- {
- UserForMakerCode userFor = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == ParentMakerCode) ?? new UserForMakerCode();
- Users puser = db.Users.FirstOrDefault(m => m.Id == userFor.UserId) ?? new Users();
- Fields.Add("ParentUserId", userFor.UserId);
- Fields.Add("ParentNav", puser.ParentNav + "," + userFor.UserId + ",");
- }
- int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Add("Users", Fields, 0);
- if (string.IsNullOrEmpty(ParentMakerCode))
- {
- string MakerCode = Id.ToString();
- for (int i = 0; i < 7 - Id.ToString().Length; i++)
- {
- MakerCode = "0" + MakerCode;
- }
- MakerCode = "K" + MakerCode;
- Fields = new Dictionary<string, object>();
- Fields.Add("MakerCode", MakerCode); //编号
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Users", Fields, Id);
- }
- db.UserDetail.Add(new UserDetail() { Id = Id });
- db.UserData.Add(new UserData() { UserId = Id });
- AddSysLog(data.Id.ToString(), "Users", "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;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改创客
- /// <summary>
- /// 增加或修改创客信息
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- public string Edit(Users data, UserDetail userdetail, UserData userdata)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("RealName", data.RealName); //真实姓名
- Fields.Add("CertId", data.CertId); //身份证号
- Fields.Add("Mobile", data.Mobile); //手机号
- Fields.Add("SettleBankName", data.SettleBankName); //结算银行名称
- Fields.Add("SettleBankCardNo", data.SettleBankCardNo); //结算银行卡号
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Users", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "Users", "update");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 修改结算金额
- public IActionResult EditSettleAmount(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改结算金额
- [HttpPost]
- public string EditSettleAmount(Users data)
- {
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("SettleAmount", data.SettleAmount);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Users", Fields, data.Id);
- AddSysLog(data.Id.ToString(), "Users", "EditSettleAmount");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 修改账户金额
- public IActionResult EditCashFreezeAmt(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 修改账户金额
- [HttpPost]
- public string EditCashFreezeAmt(Users data, string Note, int Kind)
- {
- int UserId = data.Id;
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- if ((Kind == 1 || Kind == 3) && data.CashFreezeAmt > account.BalanceAmount)
- {
- return "账号余额不足";
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- int ChangeType = 0;
- if (Kind == 1 && data.CashFreezeAmt <= account.BalanceAmount)
- {
- account.BalanceAmount -= data.CashFreezeAmt;
- account.FreezeAmount += data.CashFreezeAmt;
- ChangeType = 61;
- }
- else if (Kind == 1 && data.CashFreezeAmt > account.BalanceAmount)
- {
- return "冻结金额大于余额";
- }
- else if (Kind == 2 && data.CashFreezeAmt <= account.FreezeAmount)
- {
- account.BalanceAmount += data.CashFreezeAmt;
- account.FreezeAmount -= data.CashFreezeAmt;
- ChangeType = 62;
- }
- else if (Kind == 2 && data.CashFreezeAmt > account.FreezeAmount)
- {
- return "解冻金额大于冻结金额";
- }
- else if (Kind == 3 && data.CashFreezeAmt <= account.BalanceAmount)
- {
- account.TotalAmount -= data.CashFreezeAmt;
- account.BalanceAmount -= data.CashFreezeAmt;
- ChangeType = 63;
- }
- else if (Kind == 3 && data.CashFreezeAmt > account.BalanceAmount)
- {
- return "扣减金额大于余额";
- }
- else if (Kind == 4)
- {
- account.TotalAmount += data.CashFreezeAmt;
- account.BalanceAmount += data.CashFreezeAmt;
- ChangeType = 64;
- }
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = ChangeType, //变动类型
- ChangeAmount = data.CashFreezeAmt, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- Remark = Note,
- }).Entity;
- db.SaveChanges();
- RedisDbconn.Instance.Set("UserAccount:" + UserId, account);
- AddSysLog(data.Id.ToString(), "Users", "EditCashFreezeAmt");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 账户操作
- public IActionResult EditBalance(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == Id) ?? new UserAccount();
- ViewBag.account = account;
- return View();
- }
- #endregion
- #region 账户操作
- [HttpPost]
- public string EditBalance(UserAccount data)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == data.Id);
- if (account != null)
- {
- decimal amount = data.BalanceAmount - account.BalanceAmount;
- if (amount != 0)
- {
- account.BalanceAmount += amount;
- account.TotalAmount += amount;
- AddSysLog(data.Id.ToString(), "UserAccount", "EditBalance");
- db.SaveChanges();
- }
- }
- return "success";
- }
- #endregion
- #region 详情
- public IActionResult Detail(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.AuthDate = editData.AuthDate == null ? "" : editData.AuthDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
- string Age = "";
- if (!string.IsNullOrEmpty(editData.CertId))
- {
- int year = DateTime.Now.Year - int.Parse(editData.CertId.Substring(6, 4));
- Age = year.ToString();
- }
- ViewBag.Age = Age;
- ViewBag.QrCode = string.IsNullOrEmpty(editData.ReferenceQrCode) ? defaultImage : SourceHost + editData.ReferenceQrCode;
- return View();
- }
- #endregion
- #region 三/四要素验证
- public IActionResult ThreeElement(string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- return View();
- }
- #endregion
- #region 三/四要素验证
- [HttpPost]
- public string ThreeElement(string Name, string CertId, string CardNo, string Mobile)
- {
- return "success";
- }
- #endregion
- #region 删除创客信息
- /// <summary>
- /// 删除创客信息
- /// </summary>
- /// <returns></returns>
- public string Delete(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "Users", "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("Users", 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, "Users", "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("Users", 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, "Users", "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("Users", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 风控
- public IActionResult Risk(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 风控
- [HttpPost]
- public string Risk(Users data)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == data.Id);
- if (user != null)
- {
- user.RiskFlag = data.RiskFlag;
- user.RiskRemark = data.RiskRemark;
- db.SaveChanges();
- }
- return "success";
- }
- #endregion
- #region 解除风控
- public string UnRisk(string Id)
- {
- string[] idlist = Id.Split(new char[] { ',' });
- AddSysLog(Id, "Users", "UnRisk");
- foreach (string subid in idlist)
- {
- int id = int.Parse(subid);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("RiskFlag", 0);
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Users", Fields, id);
- }
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 重置密码
- public string ResetPwd(int Id)
- {
- string NewPwd = function.get_Random(6);
- Dictionary<string, object> Fields = new Dictionary<string, object>();
- Fields.Add("LoginPwd", function.MD532(NewPwd));
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("Users", Fields, Id);
- AddSysLog(Id, "Users", "ResetPwd");
- RedisDbconn.Instance.Clear("Users:" + Id);
- return "success|" + NewPwd;
- }
- #endregion
- #region 排序
- /// <summary>
- /// 排序
- /// </summary>
- /// <param name="Id"></param>
- public string Sort(int Id, int Sort)
- {
- new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Sort("Users", Sort, Id);
- AddSysLog(Id.ToString(), "Users", "sort");
- return "success";
- }
- #endregion
- #region 导入数据
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData"></param>
- public string Import(string ExcelData, int Kind = 0)
- {
- ExcelData = HttpUtility.UrlDecode(ExcelData);
- JsonData list = JsonMapper.ToObject(ExcelData);
- if (Kind == 1)
- {
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string MakerCode = dr[0].ToString();
- string SettleAmount = dr[2].ToString();
- UserForMakerCode UserCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (UserCode != null)
- {
- Users User = db.Users.FirstOrDefault(m => m.Id == UserCode.UserId);
- if (User != null)
- {
- User.SettleAmount = decimal.Parse(function.CheckInt(SettleAmount));
- }
- }
- }
- db.SaveChanges();
- }
- else if (Kind == 2)
- {
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string MakerCode = dr[0].ToString();
- string CashFreezeAmt = dr[2].ToString();
- UserForMakerCode UserCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (UserCode != null)
- {
- Users User = db.Users.FirstOrDefault(m => m.Id == UserCode.UserId);
- if (User != null)
- {
- User.CashFreezeAmt = decimal.Parse(function.CheckInt(CashFreezeAmt));
- }
- }
- }
- db.SaveChanges();
- }
- else if (Kind == 3)
- {
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string MakerCode = dr[0].ToString();
- string RiskFlag = dr[2].ToString();
- string RiskNote = dr[3].ToString();
- UserForMakerCode UserCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (UserCode != null)
- {
- Users User = db.Users.FirstOrDefault(m => m.Id == UserCode.UserId);
- if (User != null)
- {
- User.RiskFlag = ulong.Parse(function.CheckInt(RiskFlag));
- User.RiskRemark = RiskNote;
- }
- }
- }
- db.SaveChanges();
- }
- else if (Kind == 4)
- {
- string error = "";
- for (int i = 1; i < list.Count; i++)
- {
- JsonData dr = list[i];
- string MakerCode = dr[0].ToString();
- string OperationAmt = dr[2].ToString();//操作金额
- string OperationType = dr[3].ToString();//操作类型
- UserForMakerCode UserCode = db.UserForMakerCode.FirstOrDefault(m => m.MakerCode == MakerCode);
- if (UserCode != null)
- {
- Users User = db.Users.FirstOrDefault(m => m.Id == UserCode.UserId);
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == User.Id);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = User.Id,
- UserId = User.Id,
- }).Entity;
- db.SaveChanges();
- }
- if (User != null)
- {
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- int ChangeType = 0;
- if (OperationType == "1" && Convert.ToDecimal(OperationAmt) <= account.BalanceAmount)
- {
- account.BalanceAmount -= Convert.ToDecimal(OperationAmt);
- account.FreezeAmount += Convert.ToDecimal(OperationAmt);
- ChangeType = 61;
- }
- else if (OperationType == "1" && Convert.ToDecimal(OperationAmt) > account.BalanceAmount)
- {
- error += "以下操作失败" + User.MakerCode + ',' + User.RealName + "冻结金额大于余额" + '|' + '\n';
- }
- else if (OperationType == "2" && Convert.ToDecimal(OperationAmt) <= account.FreezeAmount)
- {
- account.BalanceAmount += Convert.ToDecimal(OperationAmt);
- account.FreezeAmount -= Convert.ToDecimal(OperationAmt);
- ChangeType = 62;
- }
- else if (OperationType == "2" && Convert.ToDecimal(OperationAmt) > account.FreezeAmount)
- {
- error += "以下操作失败" + User.MakerCode + ',' + User.RealName + "解冻金额大于冻结金额" + '|' + '\n';
- }
- else if (OperationType == "3" && Convert.ToDecimal(OperationAmt) <= account.BalanceAmount)
- {
- account.TotalAmount -= Convert.ToDecimal(OperationAmt);
- account.BalanceAmount -= Convert.ToDecimal(OperationAmt);
- ChangeType = 63;
- }
- else if (OperationType == "3" && Convert.ToDecimal(OperationAmt) > account.BalanceAmount)
- {
- error += "以下操作失败" + User.MakerCode + ',' + User.RealName + "扣减金额大于余额" + '|' + '\n';
- }
- else if (OperationType == "4")
- {
- account.TotalAmount += Convert.ToDecimal(OperationAmt);
- account.BalanceAmount += Convert.ToDecimal(OperationAmt);
- ChangeType = 64;
- }
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = User.Id, //创客
- ChangeType = ChangeType, //变动类型
- ChangeAmount = Convert.ToDecimal(OperationAmt), //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- Remark = dr[4].ToString(),
- }).Entity;
- db.SaveChanges();
- AddSysLog(User.Id.ToString(), "Users", "ChangeCashFreezeAmts");
- db.SaveChanges();
- }
- }
- }
- db.SaveChanges();
- return "warning" + error;
- }
- AddSysLog("0", "Users", "Import");
- return "success";
- }
- #endregion
- #region 导出Excel
- /// <summary>
- /// 导出Excel
- /// </summary>
- /// <returns></returns>
- public JsonResult ExportExcel(Users data, string CreateDate, string ParentMakerCode, string ParentRealName, string AuthFlagSelect, int TopUserId, string RiskFlagSelect, string MerchantTypeSelect, int SelfId = 0, int ParentId = 0)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("MakerCode", "1"); //创客编号
- Fields.Add("RealName", "1"); //创客名称
- Fields.Add("Mobile", "1"); //手机号
- Fields.Add("CertId", "1"); //身份证号码
- Fields.Add("CreateDate", "3"); //注册时间
- Fields.Add("SettleAmount", "3"); //结算金额
- Fields.Add("CashFreezeAmt", "3"); //冻结金额
- Fields.Add("UserLevel", "0"); //创客等级
- string condition = " and Status>-1";
- //直属创客编号
- if (!string.IsNullOrEmpty(ParentMakerCode))
- {
- condition += " and Id in (select UserId from UserForMakerCode where MakerCode='" + ParentMakerCode + "')";
- }
- //直属创客名称
- if (!string.IsNullOrEmpty(ParentRealName))
- {
- condition += " and Id in (select UserId from UserForRealName where RealName='" + ParentRealName + "')";
- }
- //实名状态
- if (!string.IsNullOrEmpty(AuthFlagSelect))
- {
- condition += " and AuthFlag=" + AuthFlagSelect;
- }
- //顶级创客
- if (TopUserId > 0)
- {
- condition += " and ParentNav like '," + TopUserId + ",%'";
- }
- //风控标识
- if (!string.IsNullOrEmpty(RiskFlagSelect))
- {
- condition += " and RiskFlag=" + RiskFlagSelect;
- }
- //商户创客类型
- if (!string.IsNullOrEmpty(MerchantTypeSelect))
- {
- condition += " and MerchantType=" + MerchantTypeSelect;
- }
- if (SelfId > 0)
- {
- Users self = db.Users.FirstOrDefault(m => m.Id == SelfId);
- if (self != null)
- {
- string ParentNav = function.CheckNull(self.ParentNav);
- condition += " and Id in (" + ParentNav.Trim(',').Replace(",,", ",") + ")";
- }
- }
- if (ParentId > 0)
- {
- condition += " and ParentUserId=" + ParentId;
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Users", Fields, "Id desc", "True", 1, 20000, condition, "ParentUserId,ParentNav,UserLevel,SettleAmount,CashFreezeAmt,CertId,Mobile,MerchantType,MerchantDate,AuthFlag,RiskFlag,CreateDate", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- dic["AuthFlag"] = dic["AuthFlag"].ToString() == "1" ? "已实名" : "未实名";
- dic["RiskFlag"] = dic["RiskFlag"].ToString() == "1" ? "已风控" : "未风控";
- dic["UserLevel"] = RelationClass.GetUserLevelSetInfo(int.Parse(dic["UserLevel"].ToString()));
- dic["MerchantType"] = RelationClassForConst.GetMerchantTypeInfo(int.Parse(dic["MerchantType"].ToString()));
- int ParentUserId = int.Parse(dic["ParentUserId"].ToString());
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- dic["ParentMakerCode"] = puser.MakerCode;
- dic["ParentRealName"] = puser.RealName;
- string ParentNav = dic["ParentNav"].ToString();
- if (!string.IsNullOrEmpty(ParentNav))
- {
- string[] list = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if (list.Length > 1)
- {
- int TopId = int.Parse(function.CheckInt(list[1]));
- Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
- dic["TopMakerCode"] = tuser.MakerCode;
- dic["TopRealName"] = tuser.RealName;
- }
- }
- dic.Remove("ParentUserId");
- dic.Remove("ParentNav");
- }
- 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("MakerCode", "创客编号");
- ReturnFields.Add("RealName", "创客姓名");
- ReturnFields.Add("UserLevel", "创客等级");
- ReturnFields.Add("SettleAmount", "提现金额(元)");
- ReturnFields.Add("CashFreezeAmt", "冻结金额(元)");
- ReturnFields.Add("CertId", "身份证号");
- ReturnFields.Add("Mobile", "联系手机");
- ReturnFields.Add("MerchantType", "商户创客类型");
- ReturnFields.Add("MerchantDate", "成为商户创客时间");
- ReturnFields.Add("ParentMakerCode", "直属创客编号");
- ReturnFields.Add("ParentRealName", "直属创客名称");
- ReturnFields.Add("TopMakerCode", "顶级创客编号");
- ReturnFields.Add("TopRealName", "顶级创客名称");
- ReturnFields.Add("AuthFlag", "实名状态");
- ReturnFields.Add("RiskFlag", "风控状态");
- ReturnFields.Add("CreateDate", "注册时间");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "Users", "ExportExcel");
- return Json(result);
- }
- #endregion
- #region 同步数据
- /// <summary>
- /// 同步数据
- /// </summary>
- /// <returns></returns>
- public string SycnData(int Id = 0)
- {
- var Brands = db.KqProducts.Where(m => m.Status == 1).ToList();
- foreach (var Brand in Brands)
- {
- PublicFunction.SycnMachineCount(Id, Brand.Id);
- // RedisDbconn.Instance.Set("UserMachineData:" + IdBrand, machineData);
- // RedisDbconn.Instance.SetExpire("UserMachineData:" + IdBrand, function.get_Random(1800, 5400));
- }
- AddSysLog(Id, "Users", "SycnData");
- db.SaveChanges();
- return "success";
- }
- #endregion
- #region 同步交易额
- public IActionResult SycnTradeAmount(string right, int Id = 0)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- Users editData = db.Users.FirstOrDefault(m => m.Id == Id) ?? new Users();
- ViewBag.data = editData;
- return View();
- }
- #endregion
- #region 同步交易额
- [HttpPost]
- public string SycnTradeAmountDo(DateTime sdate, DateTime edate, int UserId, int BrandId)
- {
- if (sdate.AddMonths(1) < edate)
- {
- return "时间间隔不能超过1个月";
- }
- if (edate >= DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00"))
- {
- return "结束时间只能是今天之前";
- }
- string check = RedisDbconn.Instance.Get<string>("ResetUserTradeQueue:" + UserId + ":" + BrandId);
- if (!string.IsNullOrEmpty(check))
- {
- return "请稍后再试";
- }
- try
- {
- RedisDbconn.Instance.AddList("ResetUserTradeQueue", UserId + "#cut#" + sdate.ToString("yyyy-MM-dd HH:mm:ss") + "#cut#" + edate.ToString("yyyy-MM-dd HH:mm:ss") + "#cut#" + BrandId);
- RedisDbconn.Instance.Set("ResetUserTradeQueue:" + UserId + ":" + BrandId, "wait");
- RedisDbconn.Instance.SetExpire("ResetUserTradeQueue:" + UserId + ":" + BrandId, 3600);
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "统计创客的交易额异常");
- return "同步异常";
- }
- return "success";
- }
- #endregion
- #region 创客展业城市
- public IActionResult City(Users data, string right)
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- List<Users> TopUsers = db.Users.Where(m => m.ParentUserId == 0).ToList();
- ViewBag.TopUsers = TopUsers;
- return View();
- }
- #endregion
- #region 根据条件查询创客展业城市
- public JsonResult CityData(Users data, string ParentMakerCode, string ParentRealName, int TopUserId, string Areas, int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("MakerCode", "1"); //创客编号
- Fields.Add("RealName", "1"); //创客名称
- Fields.Add("CitySetDate", "3"); //创建时间
- Fields.Add("Areas", "2"); //省市
- string condition = " and Status>-1";
- //直属创客编号
- if (!string.IsNullOrEmpty(ParentMakerCode))
- {
- condition += " and Id in (select UserId from UserForMakerCode where MakerCode='" + ParentMakerCode + "')";
- }
- //直属创客名称
- if (!string.IsNullOrEmpty(ParentRealName))
- {
- condition += " and Id in (select UserId from UserForRealName where RealName='" + ParentRealName + "')";
- }
- //顶级创客
- if (TopUserId > 0)
- {
- condition += " and ParentNav like '," + TopUserId + ",%'";
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Users", Fields, "Id desc", "True", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- int ParentUserId = int.Parse(dic["ParentUserId"].ToString());
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- dic["ParentMakerCode"] = puser.MakerCode;
- dic["ParentRealName"] = puser.RealName;
- string ParentNav = dic["ParentNav"].ToString();
- if (!string.IsNullOrEmpty(ParentNav))
- {
- int TopId = int.Parse(ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
- Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
- dic["TopMakerCode"] = tuser.MakerCode;
- dic["TopRealName"] = tuser.RealName;
- }
- }
- return Json(obj);
- }
- #endregion
- #region 导出展业城市
- public JsonResult ExportCity(Users data, string CreateDate, string ParentMakerCode, string ParentRealName, string AuthFlagSelect, int TopUserId, string RiskFlagSelect, string MerchantTypeSelect)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("MakerCode", "1"); //创客编号
- Fields.Add("RealName", "1"); //创客名称
- Fields.Add("Mobile", "1"); //手机号
- Fields.Add("CertId", "1"); //身份证号码
- Fields.Add("CreateDate", "3"); //注册时间
- Fields.Add("SettleAmount", "3"); //结算金额
- Fields.Add("CashFreezeAmt", "3"); //冻结金额
- Fields.Add("UserLevel", "0"); //创客等级
- string condition = " and Status>-1";
- //直属创客编号
- if (!string.IsNullOrEmpty(ParentMakerCode))
- {
- condition += " and Id in (select UserId from UserForMakerCode where MakerCode='" + ParentMakerCode + "')";
- }
- //直属创客名称
- if (!string.IsNullOrEmpty(ParentRealName))
- {
- condition += " and Id in (select UserId from UserForRealName where RealName='" + ParentRealName + "')";
- }
- //实名状态
- if (!string.IsNullOrEmpty(AuthFlagSelect))
- {
- condition += " and AuthFlag=" + AuthFlagSelect;
- }
- //顶级创客
- if (TopUserId > 0)
- {
- condition += " and ParentNav like '," + TopUserId + ",%'";
- }
- //风控标识
- if (!string.IsNullOrEmpty(RiskFlagSelect))
- {
- condition += " and RiskFlag=" + RiskFlagSelect;
- }
- //商户创客类型
- if (!string.IsNullOrEmpty(MerchantTypeSelect))
- {
- condition += " and MerchantType=" + MerchantTypeSelect;
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Users", Fields, "Id desc", "True", 1, 20000, condition, "ParentUserId,ParentNav,UserLevel,SettleAmount,CashFreezeAmt,CertId,Mobile,MerchantType,MerchantDate,AuthFlag,RiskFlag,CreateDate", false);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- dic["AuthFlag"] = dic["AuthFlag"].ToString() == "1" ? "已实名" : "未实名";
- dic["RiskFlag"] = dic["RiskFlag"].ToString() == "1" ? "已风控" : "未风控";
- dic["UserLevel"] = RelationClass.GetUserLevelSetInfo(int.Parse(dic["UserLevel"].ToString()));
- dic["MerchantType"] = RelationClassForConst.GetMerchantTypeInfo(int.Parse(dic["MerchantType"].ToString()));
- int ParentUserId = int.Parse(dic["ParentUserId"].ToString());
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- dic["ParentMakerCode"] = puser.MakerCode;
- dic["ParentRealName"] = puser.RealName;
- string ParentNav = dic["ParentNav"].ToString();
- if (!string.IsNullOrEmpty(ParentNav))
- {
- int TopId = int.Parse(ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
- Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
- dic["TopMakerCode"] = tuser.MakerCode;
- dic["TopRealName"] = tuser.RealName;
- }
- dic.Remove("ParentUserId");
- dic.Remove("ParentNav");
- }
- 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("MakerCode", "创客编号");
- ReturnFields.Add("RealName", "创客姓名");
- ReturnFields.Add("UserLevel", "创客等级");
- ReturnFields.Add("SettleAmount", "提现金额(元)");
- ReturnFields.Add("CashFreezeAmt", "冻结金额(元)");
- ReturnFields.Add("CertId", "身份证号");
- ReturnFields.Add("Mobile", "联系手机");
- ReturnFields.Add("MerchantType", "商户创客类型");
- ReturnFields.Add("MerchantDate", "成为商户创客时间");
- ReturnFields.Add("ParentMakerCode", "直属创客编号");
- ReturnFields.Add("ParentRealName", "直属创客名称");
- ReturnFields.Add("TopMakerCode", "顶级创客编号");
- ReturnFields.Add("TopRealName", "顶级创客名称");
- ReturnFields.Add("AuthFlag", "实名状态");
- ReturnFields.Add("RiskFlag", "风控状态");
- ReturnFields.Add("CreateDate", "注册时间");
- result.Add("Fields", ReturnFields);
- AddSysLog("0", "Users", "ExportExcel");
- return Json(result);
- }
- #endregion
- #region 根据条件查询直属创客交易额列表
- /// <summary>
- /// 直属创客交易额列表
- /// </summary>
- /// <returns></returns>
- public IActionResult Children(Users data, string right, int ParentId = 0, string MakerCode = "")
- {
- ViewBag.RightInfo = RightInfo;
- ViewBag.right = right;
- ViewBag.ParentId = ParentId.ToString();
- ViewBag.MakerCode = MakerCode;
- List<Users> TopUsers = db.Users.Where(m => m.ParentUserId == 0).ToList();
- ViewBag.TopUsers = TopUsers;
- List<UserLevelSet> Levels = db.UserLevelSet.OrderBy(m => m.Id).ToList();
- ViewBag.Levels = Levels;
- List<KqProducts> Brands = db.KqProducts.OrderBy(m => m.Id).ToList();
- ViewBag.Brands = Brands;
- return View();
- }
- #endregion
- #region 根据条件查询直属创客交易额列表
- /// <summary>
- /// 直属创客交易额列表
- /// </summary>
- /// <returns></returns>
- public JsonResult ChildrenData(Users data, int BrandSelect, string MakerCode, string CreateDateData, int ParentId = 0, int page = 1, int limit = 30)
- {
- Dictionary<string, string> Fields = new Dictionary<string, string>();
- Fields.Add("MakerCode", "1"); //创客编号
- int BrandId = BrandSelect;
- string start = "";
- string end = "";
- string condition = " and Status>-1";
- string sort = "Id desc";
- //创客编号
- if (!string.IsNullOrEmpty(MakerCode))
- {
- condition += " and Id in (select UserId from UserForMakerCode where MakerCode='" + MakerCode + "')";
- }
- if (ParentId > 0)
- {
- condition += " and ParentUserId=" + ParentId + " or Id=" + ParentId;
- }
- if (!string.IsNullOrEmpty(CreateDateData))
- {
- string[] datelist = CreateDateData.Split(new string[] { " - " }, StringSplitOptions.None);
- start = datelist[0].Replace("-", "");
- end = datelist[1].Replace("-", "");
- }
- Dictionary<string, object> obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("Users", Fields, sort, "True", page, limit, condition);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- foreach (Dictionary<string, object> dic in diclist)
- {
- int UId = int.Parse(dic["Id"].ToString());
- var Info = GetMonthTradeForBrand(UId, start, end, BrandId);
- dic["TotalAmtfc"] = Convert.ToDecimal(Info["TotalAmtfc"].ToString()) + Convert.ToDecimal(Info["YAmtfc"].ToString());
- dic["DAmtfc"] = Convert.ToDecimal(Info["DAmtfc"].ToString());
- dic["JAmtfc"] = Convert.ToDecimal(Info["JAmtfc"].ToString());
- dic["JfAmtfc"] = Convert.ToDecimal(Info["JfAmtfc"].ToString());
- dic["JCountfc"] = Convert.ToInt32(Info["JCountfc"].ToString());
- dic["YAmtfc"] = Convert.ToDecimal(Info["YAmtfc"].ToString());
- dic["TotalAmtwd"] = Convert.ToDecimal(Info["TotalAmtwd"].ToString()) + Convert.ToDecimal(Info["YAmtwd"].ToString());
- dic["DAmtwd"] = Convert.ToDecimal(Info["DAmtwd"].ToString());
- dic["JAmtwd"] = Convert.ToDecimal(Info["JAmtwd"].ToString());
- dic["JfAmtwd"] = Convert.ToDecimal(Info["JfAmtwd"].ToString());
- dic["JCountwd"] = Convert.ToInt32(Info["JCountwd"].ToString());
- dic["YAmtwd"] = Convert.ToDecimal(Info["YAmtwd"].ToString());
- }
- return Json(obj);
- }
- public Dictionary<string, object> GetMonthTradeForBrand(int UserId, string sTradeDate, string eTradeDate, int BrandId)
- {
- string condition = " and Status>-1";
- //产品类型
- if (!string.IsNullOrEmpty(BrandId.ToString()) && BrandId > 0)
- {
- condition += " and BrandId =" + BrandId;
- }
- //创客Id
- if (!string.IsNullOrEmpty(UserId.ToString()))
- {
- condition += " and UserId =" + UserId;
- }
- //创客Id
- if (!string.IsNullOrEmpty(sTradeDate))
- {
- condition += " and TradeDate >=" + Convert.ToInt32(sTradeDate);
- }
- //创客Id
- if (!string.IsNullOrEmpty(eTradeDate))
- {
- condition += " and TradeDate <=" + Convert.ToInt32(eTradeDate);
- }
- //扶持期
- decimal TotalAmtfc = 0;
- decimal DAmtfc = 0;
- decimal JAmtfc = 0;
- decimal JfAmtfc = 0;
- int JCountfc = 0;
- decimal YAmtfc = 0;
- //稳定期
- decimal TotalAmtwd = 0;
- decimal DAmtwd = 0;
- decimal JAmtwd = 0;
- decimal JfAmtwd = 0;
- int JCountwd = 0;
- decimal YAmtwd = 0;
- WebCMSEntities db = new WebCMSEntities();
- Dictionary<string, object> obj = new Dictionary<string, object>();
- DataTable dt = OtherMySqlConn.dtable("select Sum(HelpNonDirectTradeAmt + HelpNonDirectDebitTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- TotalAmtfc = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(HelpNonDirectTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- DAmtfc = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(HelpNonDirectDebitTradeAmt),Sum(HelpDirectDebitCapTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JAmtfc = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString())) - Convert.ToDecimal(function.CheckNum(dt.Rows[0][1].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(HelpDirectDebitCapTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JfAmtfc = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(HelpDirectDebitCapNum) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JCountfc = Convert.ToInt32(function.CheckInt(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(HelpNonDirectTradeAmt) from TradeDaySummary where QueryCount=1 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- YAmtfc = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpNonDirectTradeAmt + NotHelpNonDirectDebitTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- TotalAmtwd = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpNonDirectTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- DAmtwd = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpNonDirectDebitTradeAmt),Sum(NotHelpDirectDebitCapTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JAmtwd = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString())) - Convert.ToDecimal(function.CheckNum(dt.Rows[0][1].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpDirectDebitCapTradeAmt) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JfAmtwd = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpDirectDebitCapNum) from TradeDaySummary where QueryCount=0 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- JCountwd = Convert.ToInt32(function.CheckInt(dt.Rows[0][0].ToString()));
- }
- dt = OtherMySqlConn.dtable("select Sum(NotHelpNonDirectTradeAmt) from TradeDaySummary where QueryCount=1 and SeoTitle='team'"+ condition);
- if (dt.Rows.Count > 0)
- {
- YAmtwd = Convert.ToDecimal(function.CheckNum(dt.Rows[0][0].ToString()));
- }
- obj.Add("TotalAmtfc", TotalAmtfc);
- obj.Add("DAmtfc", DAmtfc);
- obj.Add("JAmtfc", JAmtfc);
- obj.Add("JfAmtfc", JfAmtfc);
- obj.Add("JCountfc", JCountfc);
- obj.Add("YAmtfc", YAmtfc);
- obj.Add("TotalAmtwd", TotalAmtwd);
- obj.Add("DAmtwd", DAmtwd);
- obj.Add("JAmtwd", JAmtwd);
- obj.Add("JfAmtwd", JfAmtwd);
- obj.Add("JCountwd", JCountwd);
- obj.Add("YAmtwd", YAmtwd);
- db.Dispose();
- return obj;
- }
- #endregion
- }
- }
|