| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- using System;
- using System.Collections.Generic;
- using Library;
- using LitJson;
- using System.Linq;
- using System.Data;
- using System.Threading;
- using MySystem.PxcModels;
- namespace MySystem
- {
- public class StatTradeCheckService
- {
- public readonly static StatTradeCheckService Instance = new StatTradeCheckService();
- private StatTradeCheckService()
- { }
- // 统计交易额V2
- public void Start()
- {
- Thread th = new Thread(StartDo);
- th.IsBackground = true;
- th.Start();
- }
- public void StartDo()
- {
- while (true)
- {
- string content = RedisDbconn.Instance.RPop<string>("StatTradeCheckQueue");
- if(!string.IsNullOrEmpty(content))
- {
- StatTradeAmountDo(content);
- Thread.Sleep(1);
- }
- else
- {
- Thread.Sleep(10000);
- }
- }
- }
- public void StatTradeAmountDo(string date)
- {
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "统计交易额日志");
- try
- {
- int pageNum = 0;
- bool check = true;
- while(check)
- {
- string sql = "";
- DataTable dt = CustomerSqlConn.dtable("select UserId,ParentNav,BrandId,BankCardType,QrPayFlag,MerHelpFlag,Version,CapFlag,VipFlag,PayType,DATE_FORMAT(CreateDate,'%Y%m%d'),sum(TradeAmount),count(Id),SnNo,TradeDate from TradeRecord where Id>20000000 and ActStatus=1 and BrandId!=14 and UserId>0 and CreateDate>='" + date + " 00:00:00' and CreateDate<='" + date + " 23:59:59' group by UserId,ParentNav,BrandId,BankCardType,QrPayFlag,MerHelpFlag,Version,CapFlag,VipFlag,PayType,DATE_FORMAT(CreateDate,'%Y%m%d'),SnNo,TradeDate order by UserId limit " + pageNum + ",50", AppConfig.Base.TmpReadSqlConn);
- if(dt.Rows.Count > 0)
- {
- foreach (DataRow dr in dt.Rows)
- {
- int UserId = int.Parse(dr["UserId"].ToString());
- string SnNo = dr["SnNo"].ToString();
- string BindingTime = dr["TradeDate"].ToString();
- string ParentNav = dr["ParentNav"].ToString();
- int BrandId = int.Parse(dr["BrandId"].ToString());
- int BankCardType = int.Parse(dr["BankCardType"].ToString());
- int QrPayFlag = int.Parse(dr["QrPayFlag"].ToString());
- int MerHelpFlag = int.Parse(dr["MerHelpFlag"].ToString());
- int Version = int.Parse(dr["Version"].ToString());
- int CapFlag = int.Parse(dr["CapFlag"].ToString());
- int VipFlag = int.Parse(dr["VipFlag"].ToString());
- int PayType = int.Parse(dr["PayType"].ToString());
- string TradeDate = dr[10].ToString();
- decimal TradeAmount = decimal.Parse(dr[11].ToString());
- int TradeCount = 1;
- string TradeMonth = TradeDate.Substring(0, 6);
- ParentNav += "," + UserId + ",";
- string[] UserIdList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- if(Version < 2)
- {
- //个人业绩
- decimal ProfitDirectDebitTradeAmt = 0;
- decimal ProfitDirectDebitCapTradeAmt = 0;
- decimal ProfitDirectDebitCapNum = 0;
- decimal HelpDirectDebitTradeAmt = 0;
- decimal HelpDirectDebitCapTradeAmt = 0;
- decimal HelpDirectDebitCapNum = 0;
- decimal NotHelpDirectDebitTradeAmt = 0;
- decimal NotHelpDirectDebitCapTradeAmt = 0;
- decimal NotHelpDirectDebitCapNum = 0;
- decimal ProfitDirectTradeAmt = 0;
- decimal HelpDirectTradeAmt = 0;
- decimal NotHelpDirectTradeAmt = 0;
- if (BankCardType == 0)
- {
- if (Version == 1)
- {
- ProfitDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- ProfitDirectDebitCapTradeAmt += TradeAmount;
- ProfitDirectDebitCapNum += TradeCount;
- }
- }
- else if (MerHelpFlag == 1)
- {
- HelpDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- HelpDirectDebitCapTradeAmt += TradeAmount;
- HelpDirectDebitCapNum += TradeCount;
- }
- }
- else
- {
- NotHelpDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- NotHelpDirectDebitCapTradeAmt += TradeAmount;
- NotHelpDirectDebitCapNum += TradeCount;
- }
- }
- }
- else if (BankCardType != 0)
- {
- if (Version == 1)
- {
- ProfitDirectTradeAmt += TradeAmount;
- }
- else if (MerHelpFlag == 1)
- {
- HelpDirectTradeAmt += TradeAmount;
- }
- else
- {
- NotHelpDirectTradeAmt += TradeAmount;
- }
- }
- sql += InsertOrUpdate("TradeDaySummary", "ProfitDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitDirectTradeAmt,HelpDirectTradeAmt,NotHelpDirectTradeAmt", ProfitDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitDirectTradeAmt + "," + HelpDirectTradeAmt + "," + NotHelpDirectTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- if (DateTime.Parse(BindingTime) < DateTime.Parse("2023-07-01 00:00:00"))
- {
- sql += InsertOrUpdate("TradeDaySummaryBefore", "ProfitDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitDirectTradeAmt,HelpDirectTradeAmt,NotHelpDirectTradeAmt", ProfitDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitDirectTradeAmt + "," + HelpDirectTradeAmt + "," + NotHelpDirectTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- }
- else
- {
- sql += InsertOrUpdate("TradeDaySummaryAfter", "ProfitDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitDirectTradeAmt,HelpDirectTradeAmt,NotHelpDirectTradeAmt", ProfitDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitDirectTradeAmt + "," + HelpDirectTradeAmt + "," + NotHelpDirectTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- }
- //团队业绩
- foreach(string SubUserId in UserIdList)
- {
- decimal ProfitNonDirectDebitTradeAmt = 0;
- ProfitDirectDebitCapTradeAmt = 0;
- ProfitDirectDebitCapNum = 0;
- decimal HelpNonDirectDebitTradeAmt = 0;
- HelpDirectDebitCapTradeAmt = 0;
- HelpDirectDebitCapNum = 0;
- decimal NotHelpNonDirectDebitTradeAmt = 0;
- NotHelpDirectDebitCapTradeAmt = 0;
- NotHelpDirectDebitCapNum = 0;
- decimal ProfitNonDirectTradeAmt = 0;
- decimal HelpNonDirectTradeAmt = 0;
- decimal NotHelpNonDirectTradeAmt = 0;
- if (BankCardType == 0)
- {
- if (Version == 1)
- {
- ProfitNonDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- ProfitDirectDebitCapTradeAmt += TradeAmount;
- ProfitDirectDebitCapNum += TradeCount;
- }
- }
- else if (MerHelpFlag == 1)
- {
- HelpNonDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- HelpDirectDebitCapTradeAmt += TradeAmount;
- HelpDirectDebitCapNum += TradeCount;
- }
- }
- else
- {
- NotHelpNonDirectDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- NotHelpDirectDebitCapTradeAmt += TradeAmount;
- NotHelpDirectDebitCapNum += TradeCount;
- }
- }
- }
- else if (BankCardType != 0)
- {
- if (Version == 1)
- {
- ProfitNonDirectTradeAmt += TradeAmount;
- }
- else if (MerHelpFlag == 1)
- {
- HelpNonDirectTradeAmt += TradeAmount;
- }
- else
- {
- NotHelpNonDirectTradeAmt += TradeAmount;
- }
- }
- sql += InsertOrUpdate("TradeDaySummary", "ProfitNonDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpNonDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpNonDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitNonDirectTradeAmt,HelpNonDirectTradeAmt,NotHelpNonDirectTradeAmt", ProfitNonDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpNonDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpNonDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitNonDirectTradeAmt + "," + HelpNonDirectTradeAmt + "," + NotHelpNonDirectTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- if (DateTime.Parse(BindingTime) < DateTime.Parse("2023-07-01 00:00:00"))
- {
- sql += InsertOrUpdate("TradeDaySummaryBefore", "ProfitNonDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpNonDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpNonDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitNonDirectTradeAmt,HelpNonDirectTradeAmt,NotHelpNonDirectTradeAmt", ProfitNonDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpNonDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpNonDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitNonDirectTradeAmt + "," + HelpNonDirectTradeAmt + "," + NotHelpNonDirectTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- }
- else
- {
- sql += InsertOrUpdate("TradeDaySummaryAfter", "ProfitNonDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum,HelpNonDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpNonDirectDebitTradeAmt,NotHelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapNum,ProfitNonDirectTradeAmt,HelpNonDirectTradeAmt,NotHelpNonDirectTradeAmt", ProfitNonDirectDebitTradeAmt + "," + ProfitDirectDebitCapTradeAmt + "," + ProfitDirectDebitCapNum + "," + HelpNonDirectDebitTradeAmt + "," + HelpDirectDebitCapTradeAmt + "," + HelpDirectDebitCapNum + "," + NotHelpNonDirectDebitTradeAmt + "," + NotHelpDirectDebitCapTradeAmt + "," + NotHelpDirectDebitCapNum + "," + ProfitNonDirectTradeAmt + "," + HelpNonDirectTradeAmt + "," + NotHelpNonDirectTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- }
- }
- }
- else
- {
- decimal ProfitDebitTradeAmt = 0;
- decimal ProfitDebitCapTradeAmt = 0;
- decimal ProfitDebitCapNum = 0;
- decimal ProfitTradeAmt = 0;
- if (BankCardType == 0)
- {
- if (Version == 2)
- {
- ProfitDebitTradeAmt += TradeAmount;
- if (CapFlag == 1)
- {
- ProfitDebitCapTradeAmt += TradeAmount;
- ProfitDebitCapNum += TradeCount;
- }
- }
- }
- else if (BankCardType != 0)
- {
- if (Version == 2)
- {
- ProfitTradeAmt += TradeAmount;
- }
- }
- sql += InsertOrUpdate("TradeDaySummary2", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- if (DateTime.Parse(BindingTime) < DateTime.Parse("2023-07-01 00:00:00"))
- {
- sql += InsertOrUpdate("TradeDaySummary2Before", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- }
- else
- {
- sql += InsertOrUpdate("TradeDaySummary2After", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + UserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='self'");
- }
- foreach(string SubUserId in UserIdList)
- {
- sql += InsertOrUpdate("TradeDaySummary2", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- if (DateTime.Parse(BindingTime) < DateTime.Parse("2023-07-01 00:00:00"))
- {
- sql += InsertOrUpdate("TradeDaySummary2Before", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- }
- else
- {
- sql += InsertOrUpdate("TradeDaySummary2After", "ProfitDebitTradeAmt,ProfitDebitCapTradeAmt,ProfitDebitCapNum,ProfitTradeAmt", ProfitDebitTradeAmt + "," + ProfitDebitCapTradeAmt + "," + ProfitDebitCapNum + "," + ProfitTradeAmt, "UserId=" + SubUserId + " and TradeMonth='" + TradeMonth + "' and TradeDate='" + TradeDate + "' and BrandId=" + BrandId + " and QueryCount=" + QrPayFlag + " and VipFlag=" + VipFlag + " and PayType=" + PayType + " and SeoTitle='team'");
- }
- }
- }
- }
- pageNum += 1;
- }
- else
- {
- check = false;
- }
- CustomerSqlConn.op(sql, AppConfig.Base.SqlConn);
- }
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "统计交易额异常");
- }
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "统计交易额日志");
- }
- public string InsertOrUpdate(string table, string fields, string vals, string condition)
- {
- string sql = "";
- string check = RedisDbconn.Instance.Get<string>("statreset:" + table + ":" + function.MD5_16(condition));
- if(string.IsNullOrEmpty(check))
- {
- RedisDbconn.Instance.Set("statreset:" + table + ":" + function.MD5_16(condition), fields + "#cut#" + vals);
- RedisDbconn.Instance.SetExpire("statreset:" + table + ":" + function.MD5_16(condition), 3600);
- string[] conditionList = condition.Split(new string[]{ " and " }, StringSplitOptions.None);
- foreach(string sub in conditionList)
- {
- string[] subCondition = sub.Split('=');
- fields += "," + subCondition[0];
- vals += "," + subCondition[1];
- }
- sql = "insert into " + table + " (" + fields + ") values (" + vals + ");\n";
- }
- else
- {
- string setVals = "";
- string[] fieldList = fields.Split(',');
- string[] valList = vals.Split(',');
- for (int i = 0; i < fieldList.Length; i++)
- {
- setVals += fieldList[i] + "=" + fieldList[i] + "+" + valList[i] + ",";
- }
- sql = "update " + table + " set " + setVals.TrimEnd(',') + " where " + condition + ";\n";
- }
- return sql;
- }
- }
- }
|