123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using Microsoft.Extensions.Logging;
- using Microsoft.Extensions.Options;
- using Microsoft.AspNetCore.Authorization;
- using MySystem.MainModels;
- using LitJson;
- using Library;
- namespace MySystem.Areas.Api.Controllers.v1
- {
- [Area("Api")]
- [Route("Api/v1/[controller]/[action]")]
- public class MerchantInfoController : BaseController
- {
- public MerchantInfoController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
- {
- }
-
- #region 首页-快联盟产品-我的业绩-团队业绩-商户列表
- [Authorize]
- public JsonResult TeamPerformanceMerchants(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- List<Dictionary<string, object>> dataList = TeamPerformanceMerchantsDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
- }
- public List<Dictionary<string, object>> TeamPerformanceMerchantsDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //创客
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- List<int> query = MerchantInfoDbconn.Instance.GetList(UserId, PageNum, PageSize);
- foreach (int id in query)
- {
- MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(id) ?? new MerchantInfo();
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("MerchantName", subdata.Name); //商户姓名
- curData.Add("Id", subdata.Id); //Id
- dataList.Add(curData);
- }
- return dataList;
- }
- #endregion
- #region 创客-首页-商户签约
- [Authorize]
- public JsonResult ContractList(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- List<Dictionary<string, object>> dataList = ContractListDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
- }
- public List<Dictionary<string, object>> ContractListDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
- string Status = data["Status"].ToString(); //签约状态
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- List<int> query = MerchantInfoDbconn.Instance.GetList(UserId, PageNum, PageSize);
- foreach (var id in query)
- {
- MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(id) ?? new MerchantInfo();
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("Name", subdata.Name); //名称
- curData.Add("Id", subdata.Id); //Id
- curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
- curData.Add("Status", ""); //签约状态
- curData.Add("MainType", ""); //主体类型
- dataList.Add(curData);
- }
- return dataList;
- }
- #endregion
- #region 创客-首页-商户签约-详情
- [Authorize]
- public JsonResult ContractDetail(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = ContractDetailDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> ContractDetailDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- MerchantInfo query = new MerchantInfo();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
- Obj.Add("Name", query.Name); //名称
- Obj.Add("Status", ""); //签约状态
- Obj.Add("Platforms", ""); //品台列表
- Obj.Add("CreateDate", query.CreateDate); //创建时间
- return Obj;
- }
- #endregion
- #region 创客-首页-我的商户-商户列表
- [Authorize]
- public JsonResult MyMerchant(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Other = new Dictionary<string, object>();
- List<Dictionary<string, object>> dataList = MyMerchantDo(value, out Other);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList, Other = Other });
- }
- public List<Dictionary<string, object>> MyMerchantDo(string value, out Dictionary<string, object> Other)
- {
- JsonData data = JsonMapper.ToObject(value);
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //创客
- int ProductType = int.Parse(function.CheckInt(data["ProductType"].ToString())); //产品类型
- int ActiveStatus = int.Parse(function.CheckInt(data["ActiveStatus"].ToString())); //商户激活状态
- decimal MinTrade = decimal.Parse(function.CheckNum(data["MinTrade"].ToString())); //本月交易额最低值
- decimal MaxTrade = decimal.Parse(function.CheckNum(data["MaxTrade"].ToString())); //本月交易额最高值
- string ActTime = data["ActTime"].ToString(); //激活时间
- string Sort = data["Sort"].ToString(); //排序
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId);
- DateTime today = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
- int TotalCount = query.Count();
- int ActCount = query.Count(m => m.ActivationDate == today);
- int ProductCount = query.Count();
- int ProductActCount = query.Count(m => m.ActivationStatus == 1);
- int ProductUnActCount = ProductCount - ProductActCount;
- // if (ProductType > 0)
- // {
- // if (ProductType == 1)
- // {
- // query = query.Where(m => m.QueryCount > 0).ToList();
- // }
- // else if (ProductType == 2)
- // {
- // query = query.Where(m => m.Status > 0).ToList();
- // }
- // }
- if (ActiveStatus > 0)
- {
- if (ActiveStatus == 2) ActiveStatus = 0;
- query = query.Where(m => m.ActivationStatus == ActiveStatus);
- }
- if (MinTrade > 0)
- {
- query = query.Where(m => m.TotalAmount >= MinTrade);
- }
- if (MaxTrade > 0)
- {
- query = query.Where(m => m.TotalAmount <= MaxTrade);
- }
- if (!string.IsNullOrEmpty(ActTime))
- {
- DateTime Start = DateTime.Parse(ActTime + "-01-01 00:00:00");
- DateTime End = Start.AddYears(1);
- query = query.Where(m => m.ActivationDate >= Start && m.ActivationDate < End);
- }
- if (Sort == "trade")
- {
- query = query.OrderByDescending(m => m.TotalAmount);
- }
- if (Sort == "regdate")
- {
- query = query.OrderByDescending(m => m.CreateDate);
- }
- if (PageNum == 1)
- {
- query = query.Take(PageSize);
- }
- else
- {
- int skipNum = PageSize * (PageNum - 1);
- query = query.Skip(skipNum).Take(PageSize);
- }
- foreach (var item in query.ToList())
- {
- MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(item.Id) ?? new MerchantInfo();
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("MerchantName", subdata.Name); //商户姓名
- curData.Add("KqRegTime", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd")); //渠道注册时间
- curData.Add("Id", item.Id); //Id
- curData.Add("ThisMonthTrade", item.TotalAmount); //当月交易额
- dataList.Add(curData);
- }
- Other = new Dictionary<string, object>();
- Other.Add("TotalCount", TotalCount); //商户数
- Other.Add("ActCount", ActCount); //商户激活数
- Other.Add("ProductCount", ProductCount); //当前产品商户总数
- Other.Add("ProductActCount", ProductActCount); //当前产品已激活数
- Other.Add("ProductUnActCount", ProductUnActCount); //当前产品未激活数
- return dataList;
- }
- #endregion
- #region 创客-首页-我的商户-商户详情
- [Authorize]
- public JsonResult MyMerchantDetail(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = MyMerchantDetailDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> MyMerchantDetailDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
- MerchantAddInfo addinfo = MerchantAddInfoDbconn.Instance.Get(Id) ?? new MerchantAddInfo();
- // MerchantAddInfoController controller = new MerchantAddInfoController(_accessor, _logger, _setting);
- Obj.Add("MerchantName", merchant.Name); //商户名称
- // Obj.Add("MainType", controller.GetSubjects()[addinfo.SubjectType]); //主体类型
- Obj.Add("LegalName", addinfo.CertLegalPerson); //企业法人
- // Obj.Add("MerchantShortName", addinfo.MerchantShortname); //企业简称
- // Obj.Add("SettleRule", addinfo.SettlementId); //结算规则
- // Obj.Add("CreditCode", addinfo.BusinessCode); //商户信用代码
- Obj.Add("MerchantMobile", addinfo.MobilePhone); //商户手机号
- Obj.Add("MerchantMobile", DefaultPic(merchant.Logo));
- // Obj.Add("Areas", merchant.Areas); //省份
- return Obj;
- }
- #endregion
- #region 首页-我的商户-商户搜索
- [Authorize]
- public JsonResult MerchantSearch(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- List<Dictionary<string, object>> dataList = MerchantSearchDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
- }
- public List<Dictionary<string, object>> MerchantSearchDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- string SearchKey = data["SearchKey"].ToString(); //搜索关键词
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString()));
- // int ProductType = 1; //int.Parse(function.CheckInt(data["ProductType"].ToString()));
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId);
- if (!string.IsNullOrEmpty(SearchKey))
- {
- query = query.Where(m => m.Name.Contains(SearchKey));
- }
- if (PageNum == 1)
- {
- query = query.Take(PageSize);
- }
- else
- {
- int skipNum = PageSize * (PageNum - 1);
- query = query.Skip(skipNum).Take(PageSize);
- }
- foreach (var item in query.ToList())
- {
- MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(item.Id) ?? new MerchantInfo();
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("MerchantName", subdata.Name); //商户姓名
- curData.Add("KqRegTime", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //渠道注册时间
- curData.Add("Id", item.Id); //Id
- curData.Add("ThisMonthTrade", item.TotalAmount); //当月交易额
- dataList.Add(curData);
- }
- return dataList;
- }
- #endregion
- #region 创客-首页-进件查询
- [Authorize]
- public JsonResult MerchantByStatus(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- List<Dictionary<string, object>> dataList = MerchantByStatusDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
- }
- public List<Dictionary<string, object>> MerchantByStatusDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- string SearchKey = data["SearchKey"].ToString();
- int Status = int.Parse(function.CheckInt(data["Status"].ToString()));
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.QueryCount == 0);
- if (Status > 0)
- {
- if (Status == 1) Status = 0;
- if (Status == 2) Status = -1;
- if (Status == 3) Status = 1;
- if (Status == 3) Status = 2;
- query = query.Where(m => m.Status == Status);
- }
- if (PageNum == 1)
- {
- query = query.Take(PageSize);
- }
- else
- {
- int skipNum = PageSize * (PageNum - 1);
- query = query.Skip(skipNum).Take(PageSize);
- }
- foreach (var subdata in query.ToList())
- {
- MerchantAddInfo AddInfo = MerchantAddInfoDbconn.Instance.Get(subdata.Id) ?? new MerchantAddInfo();
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("Name", subdata.Name); //名称
- curData.Add("Id", subdata.Id); //Id
- curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
- curData.Add("Status", subdata.Status); //Status
- curData.Add("MainType", AddInfo.SubjectType); //主体类型
- dataList.Add(curData);
- }
- return dataList;
- }
- #endregion
- #region 创客-首页-进件查询-详情
- [Authorize]
- public JsonResult MerchantDetailByStatus(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = MerchantDetailByStatusDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> MerchantDetailByStatusDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- MerchantInfo query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
- MerchantAddInfo addInfo = MerchantAddInfoDbconn.Instance.Get(Id) ?? new MerchantAddInfo();
- Obj.Add("Name", query.Name); //名称
- Obj.Add("Status", query.Status); //状态
- Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //提交时间
- List<Dictionary<string, object>> AuditResult = new List<Dictionary<string, object>>();
- Dictionary<string, object> WeChat = new Dictionary<string, object>();
- WeChat.Add("Name", "微信");
- WeChat.Add("Status", addInfo.Status);
- WeChat.Add("DoTime", addInfo.UpdateDate == null ? "" : addInfo.UpdateDate.Value.ToString("yyyy-MM-dd HH:mm:ss"));
- if (addInfo.Status == -1)
- {
- string Season = addInfo.SeoDescription;
- Season = Season.Substring(Season.IndexOf("WeChat:") + 7);
- Season = Season.Substring(0, Season.LastIndexOf(";"));
- WeChat.Add("Season", Season);
- }
- else
- {
- WeChat.Add("Season", "");
- }
- if (addInfo.Status == 1)
- {
- string SignUrl = addInfo.SeoKeyword;
- SignUrl = SignUrl.Substring(SignUrl.IndexOf("WeChat:") + 7);
- SignUrl = SignUrl.Substring(0, SignUrl.LastIndexOf(";"));
- WeChat.Add("SignUrl", SignUrl);
- }
- else
- {
- WeChat.Add("SignUrl", "");
- }
- AuditResult.Add(WeChat);
- Dictionary<string, object> Alipay = new Dictionary<string, object>();
- Alipay.Add("Name", "支付宝");
- Alipay.Add("Status", addInfo.QueryCount);
- Alipay.Add("DoTime", addInfo.UpdateDate == null ? "" : addInfo.UpdateDate.Value.ToString("yyyy-MM-dd HH:mm:ss"));
- if (addInfo.QueryCount == -1)
- {
- string Season = addInfo.SeoDescription;
- Season = Season.Substring(Season.IndexOf("Alipay:") + 7);
- Season = Season.Substring(0, Season.IndexOf(";"));
- Alipay.Add("Season", Season);
- }
- else
- {
- Alipay.Add("Season", "");
- }
- if (addInfo.QueryCount == 1)
- {
- string SignUrl = addInfo.SeoKeyword;
- SignUrl = SignUrl.Substring(SignUrl.IndexOf("Alipay:") + 7);
- SignUrl = SignUrl.Substring(0, SignUrl.IndexOf(";"));
- Alipay.Add("SignUrl", SignUrl);
- }
- else
- {
- Alipay.Add("SignUrl", "");
- }
- AuditResult.Add(Alipay);
- Obj.Add("AuditResult", AuditResult); //审核结果
- return Obj;
- }
- #endregion
- #region 创客-首页-进件记录-删除
- [Authorize]
- public JsonResult Delete(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- AppResultJson result = DeleteDo(value);
- return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
- }
- public AppResultJson DeleteDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- RabbitMQClient.Instance.SendMsg("MerchantInfo:" + Id.ToString(), "DeleteMySqlData");
- MerchantInfo edit = maindb.MerchantInfo.FirstOrDefault(m => m.Id == Id && m.UserId == UserId);
- if(edit != null)
- {
- maindb.MerchantInfo.Remove(edit);
- maindb.SaveChanges();
- }
- return new AppResultJson() { Status = "1", Info = "", Data = Obj };
- }
- #endregion
- #region 创客-首页-暂存商户
- [Authorize]
- public JsonResult TmpMerchantList(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- List<Dictionary<string, object>> dataList = TmpMerchantListDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
- }
- public List<Dictionary<string, object>> TmpMerchantListDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
- int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
- int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
- List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
- List<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.QueryCount == 1).ToList();
- foreach (var subdata in query)
- {
- Dictionary<string, object> curData = new Dictionary<string, object>();
- curData.Add("Name", subdata.Name); //名称
- curData.Add("Id", subdata.Id); //Id
- curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
- curData.Add("SubjectType", 1); //主体类型
- dataList.Add(curData);
- }
- return dataList;
- }
- #endregion
- #region 商户-主界面统计数据
- [Authorize]
- public JsonResult IndexStat(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = IndexStatDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> IndexStatDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- string TimeType = data["TimeType"].ToString(); //时间范围
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- decimal TotalAmount = 0;
- decimal TotalOrder = 0;
- int TotalUser = 0;
- decimal TotalActual = 0;
- DateTime Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
- if (TimeType == "1")
- {
- Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
- }
- else if (TimeType == "2")
- {
- Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00").AddDays(-6);
- }
- else if (TimeType == "3")
- {
- Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM") + "-01 00:00:00");
- }
- while(Start <= DateTime.Now)
- {
- MerchantIndexStat query = RedisDbconn.Instance.Get<MerchantIndexStat>("MerchantIndexStat:" + Id + ":" + Start.ToString("yyyyMMdd")) ?? new MerchantIndexStat();
- TotalAmount += query.TotalAmount;
- TotalOrder += query.TotalOrder;
- TotalUser += query.TotalUser;
- TotalActual += query.TotalActual;
- Start = Start.AddDays(1);
- }
- Obj.Add("TotalAmount", TotalActual); //平台总收益
- Obj.Add("TotalOrder", TotalOrder); //累计订单
- Obj.Add("TotalUser", TotalUser); //会员数
- Obj.Add("TotalActual", TotalAmount); //营收总额
- return Obj;
- }
- #endregion
- #region 商户-修改登录密码
- [Authorize]
- public JsonResult ModifyLoginPwd(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- AppResultJson result = ModifyLoginPwdDo(value);
- return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
- }
- public AppResultJson ModifyLoginPwdDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- string LoginPwd = data["LoginPwd"].ToString(); //登录密码
- string NewLoginPwd = data["NewLoginPwd"].ToString(); //新登录密码
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- MerchantInfo query = new MerchantInfo();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- query = MerchantInfoDbconn.Instance.Get(Id);
- if (query != null)
- {
- query.UpdateDate = DateTime.Now; //修改时间
- query.LoginPwd = LoginPwd; //登录密码
- }
- return new AppResultJson() { Status = "1", Info = "", Data = Obj };
- }
- #endregion
- #region 商户-商户统计数据(个人中心主界面)
- [Authorize]
- public JsonResult StatData(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = StatDataDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> StatDataDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- MerchantInfo query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
- Obj.Add("Name", query.Name); //名称
- Obj.Add("TotalActual", query.TotalActual); //实收总金额
- Obj.Add("TotalOrder", query.TotalOrder); //累计订单
- Obj.Add("TotalCustomer", query.TotalCustomer); //累计客户
- Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
- int ConsumeCount = 0;
- decimal WeChatTotal = 0;
- decimal AlipayTotal = 0;
- for (int i = 0; i < 7; i++)
- {
- string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
- // ConsumeCount += 0;
- MerchantIndexStat DateIndexStat = RedisDbconn.Instance.Get<MerchantIndexStat>("MerchantIndexStat:" + Id + ":" + Date) ?? new MerchantIndexStat();
- WeChatTotal += DateIndexStat.WeChatTotalActual;
- AlipayTotal += DateIndexStat.AlipayTotalActual;
- }
- Obj.Add("SevenDayConsumer", ConsumeCount); //近7日新增会员
- Obj.Add("WeChatTotal", WeChatTotal); //微信实收
- Obj.Add("AlipayTotal", AlipayTotal); //支付宝实收
- Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd"));
- return Obj;
- }
- #endregion
- #region 商户-商户详情
- [Authorize]
- public JsonResult Detail(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = DetailDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> DetailDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- MerchantInfo query = new MerchantInfo();
- int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
- query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
- Obj.Add("Name", query.Name); //名称
- Obj.Add("Mobile", query.Mobile); //手机号
- Obj.Add("IsAuth", query.IsAuth); //是否认证
- Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
- Obj.Add("Status", query.Status);
- Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd"));
- return Obj;
- }
- #endregion
- #region 商户-通过sn获取商户详情
- [Authorize]
- public JsonResult DetailBySn(string value)
- {
- if (string.IsNullOrEmpty(value))
- {
- System.IO.StreamReader sr = new System.IO.StreamReader(Request.Body);
- value = sr.ReadToEnd();
- value = value.Split('=')[1];
- }
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = DetailBySnDo(value);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- public Dictionary<string, object> DetailBySnDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- string Sn = data["Sn"].ToString();
- MerchantQrCode code = MerchantQrCodeDbconn.Instance.Get(Sn) ?? new MerchantQrCode();
- MerchantInfo query = MerchantInfoDbconn.Instance.Get(code.MerchantId) ?? new MerchantInfo();
- Obj.Add("Name", query.Name); //名称
- Obj.Add("Mobile", query.Mobile); //手机号
- Obj.Add("IsAuth", query.IsAuth); //是否认证
- Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
- return Obj;
- }
- #endregion
- #region 商户-忘记密码
- [Authorize]
- public JsonResult ForgetPwd(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- AppResultJson result = ForgetPwdDo(value);
- return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
- }
- public AppResultJson ForgetPwdDo(string value)
- {
- JsonData data = JsonMapper.ToObject(value);
- string Mobile = data["Mobile"].ToString(); //手机号
- string LoginPwd = data["LoginPwd"].ToString(); //登录密码
- string MobileCode = data["MobileCode"].ToString(); //短信验证码
- if (string.IsNullOrEmpty(data["Mobile"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
- }
- if (data["Mobile"].ToString().Length > 11)
- {
- return new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" };
- }
- MobileCodeCheck mobilecheck = RedisDbconn.Instance.Get<MobileCodeCheck>("MobileCodeCheck:" + Mobile);
- if (mobilecheck == null)
- {
- return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
- }
- if (mobilecheck.CheckCode != MobileCode)
- {
- return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
- }
- RedisDbconn.Instance.Clear("MobileCodeCheck:" + Mobile);
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
- if (find == null)
- {
- return new AppResultJson() { Status = "-1", Info = "手机号不正确" };
- }
- MerchantInfo query = MerchantInfoDbconn.Instance.Get(find.MerchantId);
- if (query != null)
- {
- query.LoginPwd = function.MD532(LoginPwd); //登录密码
- }
- return new AppResultJson() { Status = "1", Info = "", Data = Obj };
- }
- #endregion
- #region 商户-登录
- [Authorize]
- public JsonResult Login(string value)
- {
- value = DesDecrypt(value);
- JsonData data = JsonMapper.ToObject(value);
- string Mobile = data["Mobile"].ToString(); //手机号
- string LoginPwd = data["LoginPwd"].ToString(); //登录密码
- Dictionary<string, object> Obj = new Dictionary<string, object>();
- if (Mobile == "13802211996")
- {
- if (LoginPwd != "kxs2022")
- {
- return Json(new AppResultJson() { Status = "-1", Info = "登录密码不正确" });
- }
- Obj.Add("Id", 1);
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
- if (find == null)
- {
- return Json(new AppResultJson() { Status = "-1", Info = "手机号不正确" });
- }
- MerchantInfo query = MerchantInfoDbconn.Instance.Get(find.MerchantId) ?? new MerchantInfo();
- if (query.LoginPwd != function.MD532(LoginPwd))
- {
- return Json(new AppResultJson() { Status = "-1", Info = "登录密码不正确" });
- }
- Obj.Add("Id", query.Id); //Id
- return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
- }
- #endregion
- #region 检查签名是否合法,合法返回1,不合法返回提示信息
- /// <summary>
- /// 检查签名是否合法,合法返回1,不合法返回提示信息
- /// </summary>
- /// <param name="value">请求的参数(json字符串)</param>
- /// <param name="signField">要签名的字段</param>
- /// <returns></returns>
- private string CheckSign(string value, string[] signField)
- {
- JsonData json = JsonMapper.ToObject(value);
- Dictionary<string, string> dic = new Dictionary<string, string>();
- for (int i = 0; i < signField.Length; i++)
- {
- dic.Add(signField[i], json[signField[i]].ToString());
- }
- string sign = json["sign"].ToString(); //客户端签名字符串
- return new Sign().sign(dic, sign);
- }
- #endregion
- }
- }
|