MerchantInfoController.cs 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Microsoft.AspNetCore.Mvc;
  5. using Microsoft.AspNetCore.Http;
  6. using Microsoft.Extensions.Logging;
  7. using Microsoft.Extensions.Options;
  8. using Microsoft.AspNetCore.Authorization;
  9. using MySystem.MainModels;
  10. using LitJson;
  11. using Library;
  12. namespace MySystem.Areas.Api.Controllers.v1
  13. {
  14. [Area("Api")]
  15. [Route("Api/v1/[controller]/[action]")]
  16. public class MerchantInfoController : BaseController
  17. {
  18. public MerchantInfoController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  19. {
  20. }
  21. #region 首页-快联盟产品-我的业绩-团队业绩-商户列表
  22. [Authorize]
  23. public JsonResult TeamPerformanceMerchants(string value)
  24. {
  25. value = DesDecrypt(value);
  26. JsonData data = JsonMapper.ToObject(value);
  27. List<Dictionary<string, object>> dataList = TeamPerformanceMerchantsDo(value);
  28. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  29. }
  30. public List<Dictionary<string, object>> TeamPerformanceMerchantsDo(string value)
  31. {
  32. JsonData data = JsonMapper.ToObject(value);
  33. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //创客
  34. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  35. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  36. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  37. List<int> query = MerchantInfoDbconn.Instance.GetList(UserId, PageNum, PageSize);
  38. foreach (int id in query)
  39. {
  40. MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(id) ?? new MerchantInfo();
  41. Dictionary<string, object> curData = new Dictionary<string, object>();
  42. curData.Add("MerchantName", subdata.Name); //商户姓名
  43. curData.Add("Id", subdata.Id); //Id
  44. dataList.Add(curData);
  45. }
  46. return dataList;
  47. }
  48. #endregion
  49. #region 创客-首页-商户签约
  50. [Authorize]
  51. public JsonResult ContractList(string value)
  52. {
  53. value = DesDecrypt(value);
  54. JsonData data = JsonMapper.ToObject(value);
  55. List<Dictionary<string, object>> dataList = ContractListDo(value);
  56. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  57. }
  58. public List<Dictionary<string, object>> ContractListDo(string value)
  59. {
  60. JsonData data = JsonMapper.ToObject(value);
  61. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
  62. string Status = data["Status"].ToString(); //签约状态
  63. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  64. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  65. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  66. List<int> query = MerchantInfoDbconn.Instance.GetList(UserId, PageNum, PageSize);
  67. foreach (var id in query)
  68. {
  69. MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(id) ?? new MerchantInfo();
  70. Dictionary<string, object> curData = new Dictionary<string, object>();
  71. curData.Add("Name", subdata.Name); //名称
  72. curData.Add("Id", subdata.Id); //Id
  73. curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
  74. curData.Add("Status", ""); //签约状态
  75. curData.Add("MainType", ""); //主体类型
  76. dataList.Add(curData);
  77. }
  78. return dataList;
  79. }
  80. #endregion
  81. #region 创客-首页-商户签约-详情
  82. [Authorize]
  83. public JsonResult ContractDetail(string value)
  84. {
  85. value = DesDecrypt(value);
  86. JsonData data = JsonMapper.ToObject(value);
  87. Dictionary<string, object> Obj = ContractDetailDo(value);
  88. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  89. }
  90. public Dictionary<string, object> ContractDetailDo(string value)
  91. {
  92. JsonData data = JsonMapper.ToObject(value);
  93. Dictionary<string, object> Obj = new Dictionary<string, object>();
  94. MerchantInfo query = new MerchantInfo();
  95. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  96. query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
  97. Obj.Add("Name", query.Name); //名称
  98. Obj.Add("Status", ""); //签约状态
  99. Obj.Add("Platforms", ""); //品台列表
  100. Obj.Add("CreateDate", query.CreateDate); //创建时间
  101. return Obj;
  102. }
  103. #endregion
  104. #region 创客-首页-我的商户-商户列表
  105. [Authorize]
  106. public JsonResult MyMerchant(string value)
  107. {
  108. value = DesDecrypt(value);
  109. JsonData data = JsonMapper.ToObject(value);
  110. Dictionary<string, object> Other = new Dictionary<string, object>();
  111. List<Dictionary<string, object>> dataList = MyMerchantDo(value, out Other);
  112. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList, Other = Other });
  113. }
  114. public List<Dictionary<string, object>> MyMerchantDo(string value, out Dictionary<string, object> Other)
  115. {
  116. JsonData data = JsonMapper.ToObject(value);
  117. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //创客
  118. int ProductType = int.Parse(function.CheckInt(data["ProductType"].ToString())); //产品类型
  119. int ActiveStatus = int.Parse(function.CheckInt(data["ActiveStatus"].ToString())); //商户激活状态
  120. decimal MinTrade = decimal.Parse(function.CheckNum(data["MinTrade"].ToString())); //本月交易额最低值
  121. decimal MaxTrade = decimal.Parse(function.CheckNum(data["MaxTrade"].ToString())); //本月交易额最高值
  122. string ActTime = data["ActTime"].ToString(); //激活时间
  123. string Sort = data["Sort"].ToString(); //排序
  124. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  125. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  126. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  127. IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId);
  128. DateTime today = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
  129. int TotalCount = query.Count();
  130. int ActCount = query.Count(m => m.ActivationDate == today);
  131. int ProductCount = query.Count();
  132. int ProductActCount = query.Count(m => m.ActivationStatus == 1);
  133. int ProductUnActCount = ProductCount - ProductActCount;
  134. // if (ProductType > 0)
  135. // {
  136. // if (ProductType == 1)
  137. // {
  138. // query = query.Where(m => m.QueryCount > 0).ToList();
  139. // }
  140. // else if (ProductType == 2)
  141. // {
  142. // query = query.Where(m => m.Status > 0).ToList();
  143. // }
  144. // }
  145. if (ActiveStatus > 0)
  146. {
  147. if (ActiveStatus == 2) ActiveStatus = 0;
  148. query = query.Where(m => m.ActivationStatus == ActiveStatus);
  149. }
  150. if (MinTrade > 0)
  151. {
  152. query = query.Where(m => m.TotalAmount >= MinTrade);
  153. }
  154. if (MaxTrade > 0)
  155. {
  156. query = query.Where(m => m.TotalAmount <= MaxTrade);
  157. }
  158. if (!string.IsNullOrEmpty(ActTime))
  159. {
  160. DateTime Start = DateTime.Parse(ActTime + "-01-01 00:00:00");
  161. DateTime End = Start.AddYears(1);
  162. query = query.Where(m => m.ActivationDate >= Start && m.ActivationDate < End);
  163. }
  164. if (Sort == "trade")
  165. {
  166. query = query.OrderByDescending(m => m.TotalAmount);
  167. }
  168. if (Sort == "regdate")
  169. {
  170. query = query.OrderByDescending(m => m.CreateDate);
  171. }
  172. if (PageNum == 1)
  173. {
  174. query = query.Take(PageSize);
  175. }
  176. else
  177. {
  178. int skipNum = PageSize * (PageNum - 1);
  179. query = query.Skip(skipNum).Take(PageSize);
  180. }
  181. foreach (var item in query.ToList())
  182. {
  183. MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(item.Id) ?? new MerchantInfo();
  184. Dictionary<string, object> curData = new Dictionary<string, object>();
  185. curData.Add("MerchantName", subdata.Name); //商户姓名
  186. curData.Add("KqRegTime", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd")); //渠道注册时间
  187. curData.Add("Id", item.Id); //Id
  188. curData.Add("ThisMonthTrade", item.TotalAmount); //当月交易额
  189. dataList.Add(curData);
  190. }
  191. Other = new Dictionary<string, object>();
  192. Other.Add("TotalCount", TotalCount); //商户数
  193. Other.Add("ActCount", ActCount); //商户激活数
  194. Other.Add("ProductCount", ProductCount); //当前产品商户总数
  195. Other.Add("ProductActCount", ProductActCount); //当前产品已激活数
  196. Other.Add("ProductUnActCount", ProductUnActCount); //当前产品未激活数
  197. return dataList;
  198. }
  199. #endregion
  200. #region 创客-首页-我的商户-商户详情
  201. [Authorize]
  202. public JsonResult MyMerchantDetail(string value)
  203. {
  204. value = DesDecrypt(value);
  205. JsonData data = JsonMapper.ToObject(value);
  206. Dictionary<string, object> Obj = MyMerchantDetailDo(value);
  207. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  208. }
  209. public Dictionary<string, object> MyMerchantDetailDo(string value)
  210. {
  211. JsonData data = JsonMapper.ToObject(value);
  212. Dictionary<string, object> Obj = new Dictionary<string, object>();
  213. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  214. MerchantInfo merchant = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
  215. MerchantAddInfo addinfo = MerchantAddInfoDbconn.Instance.Get(Id) ?? new MerchantAddInfo();
  216. // MerchantAddInfoController controller = new MerchantAddInfoController(_accessor, _logger, _setting);
  217. Obj.Add("MerchantName", merchant.Name); //商户名称
  218. // Obj.Add("MainType", controller.GetSubjects()[addinfo.SubjectType]); //主体类型
  219. Obj.Add("LegalName", addinfo.CertLegalPerson); //企业法人
  220. // Obj.Add("MerchantShortName", addinfo.MerchantShortname); //企业简称
  221. // Obj.Add("SettleRule", addinfo.SettlementId); //结算规则
  222. // Obj.Add("CreditCode", addinfo.BusinessCode); //商户信用代码
  223. Obj.Add("MerchantMobile", addinfo.MobilePhone); //商户手机号
  224. Obj.Add("MerchantMobile", DefaultPic(merchant.Logo));
  225. // Obj.Add("Areas", merchant.Areas); //省份
  226. return Obj;
  227. }
  228. #endregion
  229. #region 首页-我的商户-商户搜索
  230. [Authorize]
  231. public JsonResult MerchantSearch(string value)
  232. {
  233. value = DesDecrypt(value);
  234. JsonData data = JsonMapper.ToObject(value);
  235. List<Dictionary<string, object>> dataList = MerchantSearchDo(value);
  236. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  237. }
  238. public List<Dictionary<string, object>> MerchantSearchDo(string value)
  239. {
  240. JsonData data = JsonMapper.ToObject(value);
  241. string SearchKey = data["SearchKey"].ToString(); //搜索关键词
  242. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString()));
  243. // int ProductType = 1; //int.Parse(function.CheckInt(data["ProductType"].ToString()));
  244. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  245. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  246. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  247. IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId);
  248. if (!string.IsNullOrEmpty(SearchKey))
  249. {
  250. query = query.Where(m => m.Name.Contains(SearchKey));
  251. }
  252. if (PageNum == 1)
  253. {
  254. query = query.Take(PageSize);
  255. }
  256. else
  257. {
  258. int skipNum = PageSize * (PageNum - 1);
  259. query = query.Skip(skipNum).Take(PageSize);
  260. }
  261. foreach (var item in query.ToList())
  262. {
  263. MerchantInfo subdata = MerchantInfoDbconn.Instance.Get(item.Id) ?? new MerchantInfo();
  264. Dictionary<string, object> curData = new Dictionary<string, object>();
  265. curData.Add("MerchantName", subdata.Name); //商户姓名
  266. curData.Add("KqRegTime", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //渠道注册时间
  267. curData.Add("Id", item.Id); //Id
  268. curData.Add("ThisMonthTrade", item.TotalAmount); //当月交易额
  269. dataList.Add(curData);
  270. }
  271. return dataList;
  272. }
  273. #endregion
  274. #region 创客-首页-进件查询
  275. [Authorize]
  276. public JsonResult MerchantByStatus(string value)
  277. {
  278. value = DesDecrypt(value);
  279. JsonData data = JsonMapper.ToObject(value);
  280. List<Dictionary<string, object>> dataList = MerchantByStatusDo(value);
  281. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  282. }
  283. public List<Dictionary<string, object>> MerchantByStatusDo(string value)
  284. {
  285. JsonData data = JsonMapper.ToObject(value);
  286. string SearchKey = data["SearchKey"].ToString();
  287. int Status = int.Parse(function.CheckInt(data["Status"].ToString()));
  288. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
  289. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  290. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  291. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  292. IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.QueryCount == 0);
  293. if (Status > 0)
  294. {
  295. if (Status == 1) Status = 0;
  296. if (Status == 2) Status = -1;
  297. if (Status == 3) Status = 1;
  298. if (Status == 3) Status = 2;
  299. query = query.Where(m => m.Status == Status);
  300. }
  301. if (PageNum == 1)
  302. {
  303. query = query.Take(PageSize);
  304. }
  305. else
  306. {
  307. int skipNum = PageSize * (PageNum - 1);
  308. query = query.Skip(skipNum).Take(PageSize);
  309. }
  310. foreach (var subdata in query.ToList())
  311. {
  312. MerchantAddInfo AddInfo = MerchantAddInfoDbconn.Instance.Get(subdata.Id) ?? new MerchantAddInfo();
  313. Dictionary<string, object> curData = new Dictionary<string, object>();
  314. curData.Add("Name", subdata.Name); //名称
  315. curData.Add("Id", subdata.Id); //Id
  316. curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
  317. curData.Add("Status", subdata.Status); //Status
  318. curData.Add("MainType", AddInfo.SubjectType); //主体类型
  319. dataList.Add(curData);
  320. }
  321. return dataList;
  322. }
  323. #endregion
  324. #region 创客-首页-进件查询-详情
  325. [Authorize]
  326. public JsonResult MerchantDetailByStatus(string value)
  327. {
  328. value = DesDecrypt(value);
  329. JsonData data = JsonMapper.ToObject(value);
  330. Dictionary<string, object> Obj = MerchantDetailByStatusDo(value);
  331. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  332. }
  333. public Dictionary<string, object> MerchantDetailByStatusDo(string value)
  334. {
  335. JsonData data = JsonMapper.ToObject(value);
  336. Dictionary<string, object> Obj = new Dictionary<string, object>();
  337. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  338. MerchantInfo query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
  339. MerchantAddInfo addInfo = MerchantAddInfoDbconn.Instance.Get(Id) ?? new MerchantAddInfo();
  340. Obj.Add("Name", query.Name); //名称
  341. Obj.Add("Status", query.Status); //状态
  342. Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //提交时间
  343. List<Dictionary<string, object>> AuditResult = new List<Dictionary<string, object>>();
  344. Dictionary<string, object> WeChat = new Dictionary<string, object>();
  345. WeChat.Add("Name", "微信");
  346. WeChat.Add("Status", addInfo.Status);
  347. WeChat.Add("DoTime", addInfo.UpdateDate == null ? "" : addInfo.UpdateDate.Value.ToString("yyyy-MM-dd HH:mm:ss"));
  348. if (addInfo.Status == -1)
  349. {
  350. string Season = addInfo.SeoDescription;
  351. Season = Season.Substring(Season.IndexOf("WeChat:") + 7);
  352. Season = Season.Substring(0, Season.LastIndexOf(";"));
  353. WeChat.Add("Season", Season);
  354. }
  355. else
  356. {
  357. WeChat.Add("Season", "");
  358. }
  359. if (addInfo.Status == 1)
  360. {
  361. string SignUrl = addInfo.SeoKeyword;
  362. SignUrl = SignUrl.Substring(SignUrl.IndexOf("WeChat:") + 7);
  363. SignUrl = SignUrl.Substring(0, SignUrl.LastIndexOf(";"));
  364. WeChat.Add("SignUrl", SignUrl);
  365. }
  366. else
  367. {
  368. WeChat.Add("SignUrl", "");
  369. }
  370. AuditResult.Add(WeChat);
  371. Dictionary<string, object> Alipay = new Dictionary<string, object>();
  372. Alipay.Add("Name", "支付宝");
  373. Alipay.Add("Status", addInfo.QueryCount);
  374. Alipay.Add("DoTime", addInfo.UpdateDate == null ? "" : addInfo.UpdateDate.Value.ToString("yyyy-MM-dd HH:mm:ss"));
  375. if (addInfo.QueryCount == -1)
  376. {
  377. string Season = addInfo.SeoDescription;
  378. Season = Season.Substring(Season.IndexOf("Alipay:") + 7);
  379. Season = Season.Substring(0, Season.IndexOf(";"));
  380. Alipay.Add("Season", Season);
  381. }
  382. else
  383. {
  384. Alipay.Add("Season", "");
  385. }
  386. if (addInfo.QueryCount == 1)
  387. {
  388. string SignUrl = addInfo.SeoKeyword;
  389. SignUrl = SignUrl.Substring(SignUrl.IndexOf("Alipay:") + 7);
  390. SignUrl = SignUrl.Substring(0, SignUrl.IndexOf(";"));
  391. Alipay.Add("SignUrl", SignUrl);
  392. }
  393. else
  394. {
  395. Alipay.Add("SignUrl", "");
  396. }
  397. AuditResult.Add(Alipay);
  398. Obj.Add("AuditResult", AuditResult); //审核结果
  399. return Obj;
  400. }
  401. #endregion
  402. #region 创客-首页-进件记录-删除
  403. [Authorize]
  404. public JsonResult Delete(string value)
  405. {
  406. value = DesDecrypt(value);
  407. JsonData data = JsonMapper.ToObject(value);
  408. AppResultJson result = DeleteDo(value);
  409. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  410. }
  411. public AppResultJson DeleteDo(string value)
  412. {
  413. JsonData data = JsonMapper.ToObject(value);
  414. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  415. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
  416. Dictionary<string, object> Obj = new Dictionary<string, object>();
  417. RabbitMQClient.Instance.SendMsg("MerchantInfo:" + Id.ToString(), "DeleteMySqlData");
  418. MerchantInfo edit = maindb.MerchantInfo.FirstOrDefault(m => m.Id == Id && m.UserId == UserId);
  419. if(edit != null)
  420. {
  421. maindb.MerchantInfo.Remove(edit);
  422. maindb.SaveChanges();
  423. }
  424. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  425. }
  426. #endregion
  427. #region 创客-首页-暂存商户
  428. [Authorize]
  429. public JsonResult TmpMerchantList(string value)
  430. {
  431. value = DesDecrypt(value);
  432. JsonData data = JsonMapper.ToObject(value);
  433. List<Dictionary<string, object>> dataList = TmpMerchantListDo(value);
  434. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  435. }
  436. public List<Dictionary<string, object>> TmpMerchantListDo(string value)
  437. {
  438. JsonData data = JsonMapper.ToObject(value);
  439. int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //所属创客
  440. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  441. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  442. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  443. List<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.QueryCount == 1).ToList();
  444. foreach (var subdata in query)
  445. {
  446. Dictionary<string, object> curData = new Dictionary<string, object>();
  447. curData.Add("Name", subdata.Name); //名称
  448. curData.Add("Id", subdata.Id); //Id
  449. curData.Add("CreateDate", subdata.CreateDate == null ? "" : subdata.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //CreateDate
  450. curData.Add("SubjectType", 1); //主体类型
  451. dataList.Add(curData);
  452. }
  453. return dataList;
  454. }
  455. #endregion
  456. #region 商户-主界面统计数据
  457. [Authorize]
  458. public JsonResult IndexStat(string value)
  459. {
  460. value = DesDecrypt(value);
  461. JsonData data = JsonMapper.ToObject(value);
  462. Dictionary<string, object> Obj = IndexStatDo(value);
  463. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  464. }
  465. public Dictionary<string, object> IndexStatDo(string value)
  466. {
  467. JsonData data = JsonMapper.ToObject(value);
  468. string TimeType = data["TimeType"].ToString(); //时间范围
  469. Dictionary<string, object> Obj = new Dictionary<string, object>();
  470. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  471. decimal TotalAmount = 0;
  472. decimal TotalOrder = 0;
  473. int TotalUser = 0;
  474. decimal TotalActual = 0;
  475. DateTime Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
  476. if (TimeType == "1")
  477. {
  478. Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
  479. }
  480. else if (TimeType == "2")
  481. {
  482. Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00").AddDays(-6);
  483. }
  484. else if (TimeType == "3")
  485. {
  486. Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM") + "-01 00:00:00");
  487. }
  488. while(Start <= DateTime.Now)
  489. {
  490. MerchantIndexStat query = RedisDbconn.Instance.Get<MerchantIndexStat>("MerchantIndexStat:" + Id + ":" + Start.ToString("yyyyMMdd")) ?? new MerchantIndexStat();
  491. TotalAmount += query.TotalAmount;
  492. TotalOrder += query.TotalOrder;
  493. TotalUser += query.TotalUser;
  494. TotalActual += query.TotalActual;
  495. Start = Start.AddDays(1);
  496. }
  497. Obj.Add("TotalAmount", TotalActual); //平台总收益
  498. Obj.Add("TotalOrder", TotalOrder); //累计订单
  499. Obj.Add("TotalUser", TotalUser); //会员数
  500. Obj.Add("TotalActual", TotalAmount); //营收总额
  501. return Obj;
  502. }
  503. #endregion
  504. #region 商户-修改登录密码
  505. [Authorize]
  506. public JsonResult ModifyLoginPwd(string value)
  507. {
  508. value = DesDecrypt(value);
  509. JsonData data = JsonMapper.ToObject(value);
  510. AppResultJson result = ModifyLoginPwdDo(value);
  511. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  512. }
  513. public AppResultJson ModifyLoginPwdDo(string value)
  514. {
  515. JsonData data = JsonMapper.ToObject(value);
  516. string LoginPwd = data["LoginPwd"].ToString(); //登录密码
  517. string NewLoginPwd = data["NewLoginPwd"].ToString(); //新登录密码
  518. Dictionary<string, object> Obj = new Dictionary<string, object>();
  519. MerchantInfo query = new MerchantInfo();
  520. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  521. query = MerchantInfoDbconn.Instance.Get(Id);
  522. if (query != null)
  523. {
  524. query.UpdateDate = DateTime.Now; //修改时间
  525. query.LoginPwd = LoginPwd; //登录密码
  526. }
  527. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  528. }
  529. #endregion
  530. #region 商户-商户统计数据(个人中心主界面)
  531. [Authorize]
  532. public JsonResult StatData(string value)
  533. {
  534. value = DesDecrypt(value);
  535. JsonData data = JsonMapper.ToObject(value);
  536. Dictionary<string, object> Obj = StatDataDo(value);
  537. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  538. }
  539. public Dictionary<string, object> StatDataDo(string value)
  540. {
  541. JsonData data = JsonMapper.ToObject(value);
  542. Dictionary<string, object> Obj = new Dictionary<string, object>();
  543. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  544. MerchantInfo query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
  545. Obj.Add("Name", query.Name); //名称
  546. Obj.Add("TotalActual", query.TotalActual); //实收总金额
  547. Obj.Add("TotalOrder", query.TotalOrder); //累计订单
  548. Obj.Add("TotalCustomer", query.TotalCustomer); //累计客户
  549. Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
  550. int ConsumeCount = 0;
  551. decimal WeChatTotal = 0;
  552. decimal AlipayTotal = 0;
  553. for (int i = 0; i < 7; i++)
  554. {
  555. string Date = DateTime.Now.AddDays(-i).ToString("yyyyMMdd");
  556. // ConsumeCount += 0;
  557. MerchantIndexStat DateIndexStat = RedisDbconn.Instance.Get<MerchantIndexStat>("MerchantIndexStat:" + Id + ":" + Date) ?? new MerchantIndexStat();
  558. WeChatTotal += DateIndexStat.WeChatTotalActual;
  559. AlipayTotal += DateIndexStat.AlipayTotalActual;
  560. }
  561. Obj.Add("SevenDayConsumer", ConsumeCount); //近7日新增会员
  562. Obj.Add("WeChatTotal", WeChatTotal); //微信实收
  563. Obj.Add("AlipayTotal", AlipayTotal); //支付宝实收
  564. Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd"));
  565. return Obj;
  566. }
  567. #endregion
  568. #region 商户-商户详情
  569. [Authorize]
  570. public JsonResult Detail(string value)
  571. {
  572. value = DesDecrypt(value);
  573. JsonData data = JsonMapper.ToObject(value);
  574. Dictionary<string, object> Obj = DetailDo(value);
  575. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  576. }
  577. public Dictionary<string, object> DetailDo(string value)
  578. {
  579. JsonData data = JsonMapper.ToObject(value);
  580. Dictionary<string, object> Obj = new Dictionary<string, object>();
  581. MerchantInfo query = new MerchantInfo();
  582. int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
  583. query = MerchantInfoDbconn.Instance.Get(Id) ?? new MerchantInfo();
  584. Obj.Add("Name", query.Name); //名称
  585. Obj.Add("Mobile", query.Mobile); //手机号
  586. Obj.Add("IsAuth", query.IsAuth); //是否认证
  587. Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
  588. Obj.Add("Status", query.Status);
  589. Obj.Add("CreateDate", query.CreateDate == null ? "" : query.CreateDate.Value.ToString("yyyy-MM-dd"));
  590. return Obj;
  591. }
  592. #endregion
  593. #region 商户-通过sn获取商户详情
  594. [Authorize]
  595. public JsonResult DetailBySn(string value)
  596. {
  597. if (string.IsNullOrEmpty(value))
  598. {
  599. System.IO.StreamReader sr = new System.IO.StreamReader(Request.Body);
  600. value = sr.ReadToEnd();
  601. value = value.Split('=')[1];
  602. }
  603. value = DesDecrypt(value);
  604. JsonData data = JsonMapper.ToObject(value);
  605. Dictionary<string, object> Obj = DetailBySnDo(value);
  606. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  607. }
  608. public Dictionary<string, object> DetailBySnDo(string value)
  609. {
  610. JsonData data = JsonMapper.ToObject(value);
  611. Dictionary<string, object> Obj = new Dictionary<string, object>();
  612. string Sn = data["Sn"].ToString();
  613. MerchantQrCode code = MerchantQrCodeDbconn.Instance.Get(Sn) ?? new MerchantQrCode();
  614. MerchantInfo query = MerchantInfoDbconn.Instance.Get(code.MerchantId) ?? new MerchantInfo();
  615. Obj.Add("Name", query.Name); //名称
  616. Obj.Add("Mobile", query.Mobile); //手机号
  617. Obj.Add("IsAuth", query.IsAuth); //是否认证
  618. Obj.Add("Logo", DefaultPic(query.Logo)); //Logo图片
  619. return Obj;
  620. }
  621. #endregion
  622. #region 商户-忘记密码
  623. [Authorize]
  624. public JsonResult ForgetPwd(string value)
  625. {
  626. value = DesDecrypt(value);
  627. JsonData data = JsonMapper.ToObject(value);
  628. AppResultJson result = ForgetPwdDo(value);
  629. return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  630. }
  631. public AppResultJson ForgetPwdDo(string value)
  632. {
  633. JsonData data = JsonMapper.ToObject(value);
  634. string Mobile = data["Mobile"].ToString(); //手机号
  635. string LoginPwd = data["LoginPwd"].ToString(); //登录密码
  636. string MobileCode = data["MobileCode"].ToString(); //短信验证码
  637. if (string.IsNullOrEmpty(data["Mobile"].ToString()))
  638. {
  639. return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
  640. }
  641. if (data["Mobile"].ToString().Length > 11)
  642. {
  643. return new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" };
  644. }
  645. MobileCodeCheck mobilecheck = RedisDbconn.Instance.Get<MobileCodeCheck>("MobileCodeCheck:" + Mobile);
  646. if (mobilecheck == null)
  647. {
  648. return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
  649. }
  650. if (mobilecheck.CheckCode != MobileCode)
  651. {
  652. return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
  653. }
  654. RedisDbconn.Instance.Clear("MobileCodeCheck:" + Mobile);
  655. Dictionary<string, object> Obj = new Dictionary<string, object>();
  656. MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
  657. if (find == null)
  658. {
  659. return new AppResultJson() { Status = "-1", Info = "手机号不正确" };
  660. }
  661. MerchantInfo query = MerchantInfoDbconn.Instance.Get(find.MerchantId);
  662. if (query != null)
  663. {
  664. query.LoginPwd = function.MD532(LoginPwd); //登录密码
  665. }
  666. return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  667. }
  668. #endregion
  669. #region 商户-登录
  670. [Authorize]
  671. public JsonResult Login(string value)
  672. {
  673. value = DesDecrypt(value);
  674. JsonData data = JsonMapper.ToObject(value);
  675. string Mobile = data["Mobile"].ToString(); //手机号
  676. string LoginPwd = data["LoginPwd"].ToString(); //登录密码
  677. Dictionary<string, object> Obj = new Dictionary<string, object>();
  678. if (Mobile == "13802211996")
  679. {
  680. if (LoginPwd != "kxs2022")
  681. {
  682. return Json(new AppResultJson() { Status = "-1", Info = "登录密码不正确" });
  683. }
  684. Obj.Add("Id", 1);
  685. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  686. }
  687. MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
  688. if (find == null)
  689. {
  690. return Json(new AppResultJson() { Status = "-1", Info = "手机号不正确" });
  691. }
  692. MerchantInfo query = MerchantInfoDbconn.Instance.Get(find.MerchantId) ?? new MerchantInfo();
  693. if (query.LoginPwd != function.MD532(LoginPwd))
  694. {
  695. return Json(new AppResultJson() { Status = "-1", Info = "登录密码不正确" });
  696. }
  697. Obj.Add("Id", query.Id); //Id
  698. return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  699. }
  700. #endregion
  701. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  702. /// <summary>
  703. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  704. /// </summary>
  705. /// <param name="value">请求的参数(json字符串)</param>
  706. /// <param name="signField">要签名的字段</param>
  707. /// <returns></returns>
  708. private string CheckSign(string value, string[] signField)
  709. {
  710. JsonData json = JsonMapper.ToObject(value);
  711. Dictionary<string, string> dic = new Dictionary<string, string>();
  712. for (int i = 0; i < signField.Length; i++)
  713. {
  714. dic.Add(signField[i], json[signField[i]].ToString());
  715. }
  716. string sign = json["sign"].ToString(); //客户端签名字符串
  717. return new Sign().sign(dic, sign);
  718. }
  719. #endregion
  720. }
  721. }