StatNewService2.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using System.Data;
  7. using System.Threading;
  8. namespace MySystem
  9. {
  10. public class StatNewService2
  11. {
  12. public readonly static StatNewService2 Instance = new StatNewService2();
  13. private StatNewService2()
  14. { }
  15. public void CreateTable()
  16. {
  17. Thread th = new Thread(CreateTableDo);
  18. th.IsBackground = true;
  19. th.Start();
  20. }
  21. public void CreateTableDo()
  22. {
  23. while (true)
  24. {
  25. string TradeDate = DateTime.Now.AddDays(1).ToString("yyyyMMdd");
  26. string TradeMonth = DateTime.Now.AddMonths(1).ToString("yyyyMM");
  27. CreateTableOp(TradeDate, 1, "MerchantTradeSummary");
  28. if(DateTime.Now.Day > 25)
  29. {
  30. CreateTableOp(TradeMonth, 2, "MerchantTradeSummary");
  31. CreateTableOp(TradeMonth, 2, "MerchantTradeSummaryList");
  32. }
  33. int timespan = 1000 * 60 * 60;
  34. Thread.Sleep(timespan);
  35. }
  36. }
  37. private void CreateTableOp(string TradeDate, int Kind, string TableName)
  38. {
  39. if(string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>(TableName + TradeDate)))
  40. {
  41. string sql = "";
  42. if(TableName == "MerchantTradeSummary") sql = AppConfig.Base.CreateMerchantTradeSummary.Replace("#DateTime#", TradeDate);
  43. if(TableName == "MerchantTradeSummaryList") sql = AppConfig.Base.CreateMerchantTradeSummaryList.Replace("#DateTime#", TradeDate);
  44. CustomerSqlConn.op(sql, AppConfig.Base.StatSqlConn2);
  45. RedisDbconn.Instance.Set(TableName + TradeDate, "1");
  46. int sec = 3600 * 25;
  47. if(Kind == 2)
  48. {
  49. sec = 3600 * 24 * 35;
  50. }
  51. RedisDbconn.Instance.SetExpire(TableName + TradeDate, sec);
  52. }
  53. }
  54. // 统计商户交易额到RDS
  55. public void StartMer()
  56. {
  57. Thread th = new Thread(StartMerDo);
  58. th.IsBackground = true;
  59. th.Start();
  60. }
  61. public void StartMerDo()
  62. {
  63. while (true)
  64. {
  65. string content = RedisDbconn.Instance.RPop<string>("StatMerchantTradeSummaryQueue2");
  66. if(!string.IsNullOrEmpty(content))
  67. {
  68. StatMerchantTradeSummary(content, 1);
  69. StatMerchantTradeSummary(content, 2);
  70. StatMerchantTradeSummaryList(content, 1);
  71. }
  72. else
  73. {
  74. Thread.Sleep(10000);
  75. }
  76. }
  77. }
  78. public void StatMerchantTradeSummary(string content, int Kind)
  79. {
  80. try
  81. {
  82. JsonData selfDr = JsonMapper.ToObject(content);
  83. string TradeDate = selfDr["TradeDate"].ToString();
  84. decimal PayMoney = decimal.Parse(selfDr["PayMoney"].ToString());
  85. decimal MerchantActualAmount = decimal.Parse(selfDr["MerchantActualAmount"].ToString());
  86. int TradeCount = int.Parse(selfDr["TradeCount"].ToString());
  87. int MerchantId = int.Parse(selfDr["MerchantId"].ToString());
  88. int PayMode = int.Parse(selfDr["PayMode"].ToString());
  89. int IsAct = int.Parse(selfDr["IsAct"].ToString());
  90. if (Kind == 2)
  91. {
  92. TradeDate = TradeDate.Substring(0, 6);
  93. }
  94. if (string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>("MerchantTradeSummary2" + TradeDate)))
  95. {
  96. CustomerSqlConn.op(AppConfig.Base.CreateMerchantTradeSummary.Replace("#DateTime#", TradeDate), AppConfig.Base.StatSqlConn2);
  97. RedisDbconn.Instance.Set("MerchantTradeSummary2" + TradeDate, "1");
  98. int sec = 3600 * 25;
  99. if (Kind == 2)
  100. {
  101. sec = 3600 * 24 * 35;
  102. }
  103. RedisDbconn.Instance.SetExpire("MerchantTradeSummary2" + TradeDate, sec);
  104. Thread.Sleep(2000);
  105. }
  106. string Id = "0";
  107. DataTable check = CustomerSqlConn.dtable("select Id from MerchantTradeSummary" + TradeDate + " where MerchantId=" + MerchantId + "", AppConfig.Base.StatSqlConn2);
  108. if (check.Rows.Count < 1)
  109. {
  110. check = CustomerSqlConn.dtable("insert into MerchantTradeSummary" + TradeDate + " (MerchantId) values (" + MerchantId + ");select @@IDENTITY", AppConfig.Base.StatSqlConn2);
  111. if (check.Rows.Count > 0)
  112. {
  113. Id = check.Rows[0][0].ToString();
  114. }
  115. }
  116. else
  117. {
  118. Id = check.Rows[0][0].ToString();
  119. }
  120. string setField = "";
  121. if (IsAct == 1)
  122. {
  123. setField += "ActAmount=ActAmount+" + PayMoney + ","; // 活动交易额
  124. }
  125. else
  126. {
  127. setField += "NonActAmount=NonActAmount+" + PayMoney + ","; // 非活动交易额
  128. }
  129. if (PayMode == 1)
  130. {
  131. setField += "AliPayInFactAmount=AliPayInFactAmount+" + MerchantActualAmount + ","; // 支付宝实收金额
  132. }
  133. else if (PayMode == 2)
  134. {
  135. setField += "WeChatInfactAmount=WeChatInfactAmount+" + MerchantActualAmount + ","; // 微信实收金额
  136. }
  137. setField += "OderCount=OderCount+" + TradeCount + ","; // 订单数
  138. setField += "InFactAmount=InFactAmount+" + MerchantActualAmount + ","; // 实收金额
  139. setField += "TradeAmount=TradeAmount+" + PayMoney + ","; // 交易金额
  140. CustomerSqlConn.op("update MerchantTradeSummary" + TradeDate + " set " + setField.TrimEnd(',') + " where Id=" + Id, AppConfig.Base.StatSqlConn2);
  141. }
  142. catch (Exception ex)
  143. {
  144. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "实时统计商户交易额日志RDS异常");
  145. }
  146. }
  147. public void StatMerchantTradeSummaryList(string content, int Kind)
  148. {
  149. try
  150. {
  151. JsonData selfDr = JsonMapper.ToObject(content);
  152. string TradeDate = selfDr["TradeDate"].ToString();
  153. decimal PayMoney = decimal.Parse(selfDr["PayMoney"].ToString());
  154. decimal MerchantActualAmount = decimal.Parse(selfDr["MerchantActualAmount"].ToString());
  155. int TradeCount = int.Parse(selfDr["TradeCount"].ToString());
  156. int MerchantId = int.Parse(selfDr["MerchantId"].ToString());
  157. int PayMode = int.Parse(selfDr["PayMode"].ToString());
  158. int IsAct = int.Parse(selfDr["IsAct"].ToString());
  159. string TradeMonth = TradeDate.Substring(0, 6);
  160. if (string.IsNullOrEmpty(RedisDbconn.Instance.Get<string>("MerchantTradeSummaryList:2:" + TradeMonth)))
  161. {
  162. CustomerSqlConn.op(AppConfig.Base.CreateMerchantTradeSummaryList.Replace("#DateTime#", TradeMonth), AppConfig.Base.StatSqlConn2);
  163. RedisDbconn.Instance.Set("MerchantTradeSummaryList:2:" + TradeMonth, "1");
  164. int sec = 3600 * 25;
  165. if (Kind == 2)
  166. {
  167. sec = 3600 * 24 * 35;
  168. }
  169. RedisDbconn.Instance.SetExpire("MerchantTradeSummaryList:2:" + TradeMonth, sec);
  170. Thread.Sleep(2000);
  171. }
  172. string Id = "0";
  173. DataTable check = CustomerSqlConn.dtable("select Id from MerchantTradeSummaryList" + TradeMonth + " where MerchantId=" + MerchantId + " and TradeDate='" + TradeDate + "'", AppConfig.Base.StatSqlConn2);
  174. if (check.Rows.Count < 1)
  175. {
  176. check = CustomerSqlConn.dtable("insert into MerchantTradeSummaryList" + TradeMonth + " (MerchantId,TradeDate) values (" + MerchantId + ",'" + TradeDate + "');select @@IDENTITY", AppConfig.Base.StatSqlConn2);
  177. if (check.Rows.Count > 0)
  178. {
  179. Id = check.Rows[0][0].ToString();
  180. }
  181. }
  182. else
  183. {
  184. Id = check.Rows[0][0].ToString();
  185. }
  186. string setField = "";
  187. if (IsAct == 1)
  188. {
  189. setField += "ActAmount=ActAmount+" + PayMoney + ","; // 活动交易额
  190. }
  191. else
  192. {
  193. setField += "NonActAmount=NonActAmount+" + PayMoney + ","; // 非活动交易额
  194. }
  195. if (PayMode == 1)
  196. {
  197. setField += "AliPayInFactAmount=AliPayInFactAmount+" + MerchantActualAmount + ","; // 支付宝实收金额
  198. }
  199. else if (PayMode == 2)
  200. {
  201. setField += "WeChatInfactAmount=WeChatInfactAmount+" + MerchantActualAmount + ","; // 微信实收金额
  202. }
  203. setField += "OderCount=OderCount+" + TradeCount + ","; // 订单数
  204. setField += "InFactAmount=InFactAmount+" + MerchantActualAmount + ","; // 实收金额
  205. setField += "TradeAmount=TradeAmount+" + PayMoney + ","; // 交易金额
  206. CustomerSqlConn.op("update MerchantTradeSummaryList" + TradeMonth + " set " + setField.TrimEnd(',') + " where Id=" + Id, AppConfig.Base.StatSqlConn2);
  207. }
  208. catch (Exception ex)
  209. {
  210. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "实时统计商户交易额列表日志RDS异常");
  211. }
  212. }
  213. }
  214. }