123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using MySystem.Models;
- using Library;
- using System.Threading;
- using Microsoft.Extensions.Hosting;
- using System.Threading.Tasks;
- namespace MySystem
- {
- public class ProfitHelperV2
- {
- public readonly static ProfitHelperV2 Instance = new ProfitHelperV2();
- private ProfitHelperV2()
- {
- }
-
- #region 获取分润规则Id
- public int GetLevelKindId(int BrandId, int Help, int BankCardType)
- {
- return RedisDbconn.Instance.Get<int>("pobjlv:kid:" + BrandId + ":" + Help + ":" + BankCardType);
- }
- #endregion
-
- #region POS分润算法
- public void StatProfit()
- {
- Thread th = new Thread(StatProfitDo);
- th.IsBackground = true;
- th.Start();
- }
- public void StatProfitDo()
- {
- while (true)
- {
- string content = RedisDbconn.Instance.RPop<string>("DoProfitQueue");
- if(!string.IsNullOrEmpty(content) && DateTime.Now.Day < 15)
- {
- StatProfiting();
- }
- else
- {
- Thread.Sleep(60000);
- }
- }
- }
- public void StatProfiting()
- {
- string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
- string check = function.ReadInstance("/ProfitStat/" + Month + "-1.txt");
- if (!string.IsNullOrEmpty(check))
- {
- return;
- }
- function.WritePage("/ProfitStat/", Month + "-1.txt", DateTime.Now.ToString());
- try
- {
- WebCMSEntities db = new WebCMSEntities();
- for (int i = 1; i <= 9; i++)
- {
- for (int j = 0; j <= 1; j++)
- {
- int PageNum = 1;
- bool op = true;
- while(op)
- {
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + "BrandId:" + i + ",BankCardType:" + j + ",Month:" + Month + ",PageNum:" + PageNum, "分润监控日志");
- List<ProfitResult> result = StartProftForPosByDate(i, j, Month, PageNum);
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + "result:" + result.Count, "分润监控日志");
- function.WriteLog("\r\n", "分润监控日志");
- if(result.Count > 0)
- {
- foreach (ProfitResult sub in result)
- {
- int TopUserId = 0;
- if (!string.IsNullOrEmpty(sub.UserNav))
- {
- string[] UserNavList = sub.UserNav.Trim(',').Replace(",,", ",").Split(',');
- if (UserNavList.Length > 1)
- {
- TopUserId = int.Parse(UserNavList[1]);
- }
- else
- {
- TopUserId = int.Parse(UserNavList[0]);
- }
- }
- string RecordNo = "P" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
- decimal ProfitAmt = sub.Money;
- decimal TradeAmt = sub.TradeAmount;
- decimal ProfitRate = sub.ProfitRate;
- if (sub.IsSubsidy == 1 && j == 1)
- {
- }
- else
- {
- decimal CreditTradeAmt = 0;
- decimal CreditTradeProfit = 0;
- decimal QrCreditTradeAmt = 0;
- decimal QrCreditProfitRate = 0;
- decimal QrCreditProfitStandardRate = 0;
- decimal QrCreditAddOrSubRate = 0;
- decimal QrCreditTradeProfit = 0;
- decimal NonQrCreditTradeAmt = 0;
- decimal NotHelpCreditTradeAmt = 0;
- decimal NotHelpCreditTradeProfit = 0;
- decimal NotHelpCreditProfitRate = 0;
- decimal NotHelpCreditProfitStandardRate = 0;
- decimal NotHelpCreditAddOrSubRate = 0;
- decimal HelpCreditTradeAmt = 0;
- decimal NonQrCreditTradeProfit = 0;
- decimal HelpCreditTradeProfit = 0;
- decimal HelpCreditProfitRate = 0;
- decimal HelpCreditProfitStandardRate = 0;
- decimal HelpCreditAddOrSubRate = 0;
- decimal DebitNonCapTradeAmt = 0;
- decimal DebitCapTradeAmt = 0;
- decimal QrDebitNotCapTradeAmt = 0;
- decimal NonQrDebitNotCapTradeAmt = 0;
- decimal NotHelpDebitNonCapTradeAmt = 0;
- decimal HelpDebitNonCapTradeAmt = 0;
- decimal DebitNonTradeCapProfit = 0;
- decimal QrDebitNonTradeCapProfit = 0;
- decimal NonQrDebitNonTradeCapProfit = 0;
- decimal NotHelpDebitNonTradeCapProfit = 0;
- decimal HelpDebitNonTradeCapProfit = 0;
- decimal DebitTradeCapProfit = 0;
- decimal NotHelpDebitProfitRate = 0;
- decimal NotHelpDebitProfitStandardRate = 0;
- decimal NotHelpDebitAddOrSubRate = 0;
- decimal HelpDebitProfitRate = 0;
- decimal HelpDebitProfitStandardRate = 0;
- decimal HelpDebitAddOrSubRate = 0;
- decimal DebitCapSingleReward = 0;
- decimal QrDebitProfitRate = 0;
- decimal QrDebitProfitStandardRate = 0;
- decimal QrDebitAddOrSubRate = 0;
- decimal ProfitCreditTradeProfit = 0;
- decimal ProfitCreditProfitRate = 0;
- decimal ProfitCreditTradeAmt = 0;
- decimal ProfitDebitNonCapTradeAmt = 0;
- decimal ProfitDebitNonTradeCapProfit = 0;
- decimal ProfitDebitProfitRate = 0;
- if (j == 1)
- {
- CreditTradeAmt = TradeAmt;
- CreditTradeProfit = ProfitAmt;
- if (sub.QrPayFlag == 1)
- {
- QrCreditTradeAmt = TradeAmt;
- QrCreditProfitRate = ProfitRate;
- QrCreditTradeProfit = ProfitAmt;
- }
- else
- {
- NonQrCreditTradeAmt = TradeAmt;
- NonQrCreditTradeProfit = ProfitAmt;
- if(sub.HelpFlag == 1)
- {
- HelpCreditTradeProfit = ProfitAmt;
- HelpCreditProfitRate = ProfitRate;
- HelpCreditTradeAmt = TradeAmt;
- }
- else if(sub.HelpFlag == 2)
- {
- ProfitCreditTradeProfit = ProfitAmt;
- ProfitCreditProfitRate = ProfitRate;
- ProfitCreditTradeAmt = TradeAmt;
- }
- else
- {
- NotHelpCreditTradeAmt = TradeAmt;
- NotHelpCreditTradeProfit = ProfitAmt;
- NotHelpCreditProfitRate = ProfitRate;
- }
- }
- }
- if (j == 0)
- {
- if (sub.Money < 1)
- {
- DebitNonCapTradeAmt = TradeAmt;
- DebitNonTradeCapProfit = ProfitAmt;
- }
- else
- {
- DebitCapTradeAmt = TradeAmt;
- DebitCapSingleReward = ProfitAmt;
- DebitTradeCapProfit = ProfitAmt;
- }
- if (sub.QrPayFlag == 1)
- {
- if (sub.Money < 1)
- {
- QrDebitNotCapTradeAmt = TradeAmt;
- QrDebitProfitRate = ProfitRate;
- QrDebitNonTradeCapProfit = ProfitAmt;
- }
- }
- else
- {
- if (sub.Money < 1)
- {
- NonQrDebitNonTradeCapProfit = ProfitAmt;
- NonQrDebitNotCapTradeAmt = TradeAmt;
- }
- if (sub.HelpFlag == 1)
- {
- if (sub.Money < 1)
- {
- HelpDebitNonCapTradeAmt = TradeAmt;
- HelpDebitNonTradeCapProfit = ProfitAmt;
- }
- HelpDebitProfitRate = ProfitRate;
- }
- else if (sub.HelpFlag == 2)
- {
- if (sub.Money < 1)
- {
- ProfitDebitNonCapTradeAmt = TradeAmt;
- ProfitDebitNonTradeCapProfit = ProfitAmt;
- }
- ProfitDebitProfitRate = ProfitRate;
- }
- else
- {
- if (sub.Money < 1)
- {
- NotHelpDebitNonCapTradeAmt = TradeAmt;
- NotHelpDebitNonTradeCapProfit = ProfitAmt;
- }
- NotHelpDebitProfitRate = ProfitRate;
- }
- }
- }
- db.ProfitRewardRecord.Add(new ProfitRewardRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = sub.UserId,
- MerchantId = sub.MerchantId,
- BrandId = sub.BrandId,
- ProfitType = sub.DirectFlag,
- TradeAmt = sub.TradeAmount,
- TradeProfit = sub.Money,
- TradeMonth = Month,
- RecordNo = RecordNo,
- TopUserId = TopUserId,
- CreditTradeAmt = CreditTradeAmt,
- QrCreditTradeAmt = QrCreditTradeAmt,
- NonQrCreditTradeAmt = NonQrCreditTradeAmt,
- NotHelpCreditTradeAmt = NotHelpCreditTradeAmt,
- HelpCreditTradeAmt = HelpCreditTradeAmt,
- DebitNonCapTradeAmt = DebitNonCapTradeAmt,
- QrDebitNotCapTradeAmt = QrDebitNotCapTradeAmt,
- NonQrDebitNotCapTradeAmt = NonQrDebitNotCapTradeAmt,
- NotHelpDebitNonCapTradeAmt = NotHelpDebitNonCapTradeAmt,
- HelpDebitNonCapTradeAmt = HelpDebitNonCapTradeAmt,
- DebitCapTradeAmt = DebitCapTradeAmt,
- CreditTradeProfit = CreditTradeProfit,
- QrCreditTradeProfit = QrCreditTradeProfit,
- NonQrCreditTradeProfit = NonQrCreditTradeProfit,
- NotHelpCreditTradeProfit = NotHelpCreditTradeProfit,
- HelpCreditTradeProfit = HelpCreditTradeProfit,
- DebitNonTradeCapProfit = DebitNonTradeCapProfit,
- QrDebitNonTradeCapProfit = QrDebitNonTradeCapProfit,
- NonQrDebitNonTradeCapProfit = NonQrDebitNonTradeCapProfit,
- NotHelpDebitNonTradeCapProfit = NotHelpDebitNonTradeCapProfit,
- HelpDebitNonTradeCapProfit = HelpDebitNonTradeCapProfit,
- DebitTradeCapProfit = DebitTradeCapProfit,
- NotHelpCreditProfitRate = NotHelpCreditProfitRate,
- NotHelpCreditProfitStandardRate = NotHelpCreditProfitStandardRate,
- NotHelpCreditAddOrSubRate = NotHelpCreditAddOrSubRate,
- HelpCreditProfitRate = HelpCreditProfitRate,
- HelpCreditProfitStandardRate = HelpCreditProfitStandardRate,
- HelpCreditAddOrSubRate = HelpCreditAddOrSubRate,
- NotHelpDebitProfitRate = NotHelpDebitProfitRate,
- NotHelpDebitProfitStandardRate = NotHelpDebitProfitStandardRate,
- NotHelpDebitAddOrSubRate = NotHelpDebitAddOrSubRate,
- HelpDebitProfitRate = HelpDebitProfitRate,
- HelpDebitProfitStandardRate = HelpDebitProfitStandardRate,
- HelpDebitAddOrSubRate = HelpDebitAddOrSubRate,
- DebitCapSingleReward = DebitCapSingleReward,
- QrCreditProfitRate = QrCreditProfitRate,
- QrCreditProfitStandardRate = QrCreditProfitStandardRate,
- QrCreditAddOrSubRate = QrCreditAddOrSubRate,
- QrDebitProfitRate = QrDebitProfitRate,
- QrDebitProfitStandardRate = QrDebitProfitStandardRate,
- QrDebitAddOrSubRate = QrDebitAddOrSubRate,
- ProfitCreditTradeProfit = ProfitCreditTradeProfit,
- ProfitCreditProfitRate = ProfitCreditProfitRate,
- ProfitCreditTradeAmt = ProfitCreditTradeAmt,
- ProfitDebitNonCapTradeAmt = ProfitDebitNonCapTradeAmt,
- ProfitDebitNonTradeCapProfit = ProfitDebitNonTradeCapProfit,
- ProfitDebitProfitRate = ProfitDebitProfitRate,
- });
-
- }
- }
- db.SaveChanges();
- PageNum += 1;
- }
- else
- {
- op = false;
- }
- }
- }
- }
- db.Dispose();
- }
- catch(Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "分润监控异常");
- }
- ProfitHelper.Instance.StatProfit();
- }
- public List<ProfitResult> StartProftForPosByDate(int BrandId, int BankCardType, string Month, int PageNum = 1)
- {
-
-
- int PageSize = 200;
- int SkipNum = (PageNum - 1) * PageSize;
- string LimitString = " limit " + PageSize;
- if(PageNum > 1)
- {
- LimitString = " limit " + SkipNum + "," + PageSize;
- }
- List<ProfitResult> result = new List<ProfitResult>();
- ProfitObjects obj = RedisDbconn.Instance.Get<ProfitObjects>("pobj" + BrandId);
- if (obj.Status == 1)
- {
- string sqlstr = "";
- if (BankCardType == 1)
- {
- sqlstr = "select UserId,QrPayFlag,HelpDirectTradeAmt,NotHelpDirectTradeAmt,ProfitDirectTradeAmt from CreditTradeDaySummary" + Month + " where BrandId=" + BrandId + LimitString;
- }
- if (BankCardType == 0)
- {
- sqlstr = "select UserId,QrPayFlag,HelpDirectDebitTradeAmt,NotHelpDirectDebitTradeAmt,HelpDirectDebitCapTradeAmt,NotHelpDirectDebitCapTradeAmt,HelpDirectDebitCapNum,NotHelpDirectDebitCapNum,ProfitDirectDebitTradeAmt,ProfitDirectDebitCapTradeAmt,ProfitDirectDebitCapNum from DebitTradeDaySummary" + Month + " where BrandId=" + BrandId + LimitString;
- }
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + sqlstr, "分润监控日志");
- DataTable dt = GetDataTable(sqlstr);
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + dt.Rows.Count.ToString(), "分润监控日志");
- if(dt.Rows.Count > 0)
- {
- foreach (DataRow dr in dt.Rows)
- {
- WebCMSEntities dbnew = new WebCMSEntities();
- try
- {
- int UserId = int.Parse(dr["UserId"].ToString());
- int QrPayFlag = int.Parse(dr["QrPayFlag"].ToString());
- List<UserLevelSet> levels = dbnew.UserLevelSet.ToList();
- SubUser selfUser = GetUser(UserId, Month) ?? new SubUser();
- int Days = int.Parse(RedisDbconn.Instance.Get<string>("pobjrule:" + BrandId + ":HelpPolicy:Days"));
- if (BankCardType == 0)
- {
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":借记卡", "分润监控日志");
- decimal HelpDirectDebitTradeAmt = decimal.Parse(dr[2].ToString());
- decimal NotHelpDirectDebitTradeAmt = decimal.Parse(dr[3].ToString());
- decimal ProfitDirectDebitTradeAmt = decimal.Parse(dr[8].ToString());
- decimal HelpDirectDebitCapTradeAmt = decimal.Parse(dr[4].ToString());
- decimal NotHelpDirectDebitCapTradeAmt = decimal.Parse(dr[5].ToString());
- decimal ProfitDirectDebitCapTradeAmt = decimal.Parse(dr[9].ToString());
- int HelpDirectDebitCapNum = int.Parse(dr[6].ToString().Split('.')[0]);
- int NotHelpDirectDebitCapNum = int.Parse(dr[7].ToString().Split('.')[0]);
- int ProfitDirectDebitCapNum = int.Parse(dr[10].ToString().Split('.')[0]);
- int UserLevel = selfUser.UserLevel;
- decimal getLevelProfit = (HelpDirectDebitTradeAmt + NotHelpDirectDebitTradeAmt + ProfitDirectDebitTradeAmt - HelpDirectDebitCapTradeAmt - NotHelpDirectDebitCapTradeAmt - ProfitDirectDebitCapTradeAmt) * 0.0006M + HelpDirectDebitCapNum + NotHelpDirectDebitCapNum + ProfitDirectDebitCapNum;
- result.Add(new ProfitResult()
- {
- UserId = selfUser.Id,
- UserNav = selfUser.ParentNav,
- Money = PublicFunction.NumberFormat(getLevelProfit),
- ProfitRate = 0.0006M,
- Message = "储蓄卡分润",
- BankCardType = BankCardType,
- QrPayFlag = QrPayFlag,
- BrandId = BrandId,
- DirectFlag = 1,
- IsSubsidy = 0,
- TradeAmount = HelpDirectDebitTradeAmt + NotHelpDirectDebitTradeAmt + ProfitDirectDebitTradeAmt,
- });
- }
- else
- {
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":贷记卡", "分润监控日志");
- decimal HelpDirectTradeAmt = decimal.Parse(dr[2].ToString());
- decimal NotHelpDirectTradeAmt = decimal.Parse(dr[3].ToString());
- decimal ProfitDirectTradeAmt = decimal.Parse(dr[4].ToString());
- int maxLevel = obj.MaxLevel;
- decimal diffLevelProfit = 0;
- int curLevel = 0;
- string ParentNav = selfUser.ParentNav;
- if (string.IsNullOrEmpty(ParentNav))
- {
- ParentNav = ",0,";
- }
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + ParentNav, "分润监控日志");
- if (!string.IsNullOrEmpty(ParentNav))
- {
- ParentNav += "," + UserId + ",";
- string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
- Array.Reverse(ParentNavList);
- int level = 0;
- DateTime now = DateTime.Now;
- DateTime ThisMonth = DateTime.Parse(DateTime.Now.ToString("yyyy-MM") + "-01 00:00:00");
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":扶持期:" + HelpDirectTradeAmt, "分润监控日志");
- if (HelpDirectTradeAmt > 0)
- {
- level = 0;
- curLevel = 0;
- diffLevelProfit = 0;
- decimal checkProfit = HelpDirectTradeAmt * 0.0012M;
- decimal curProfit = 0;
- foreach (string UserIdString in ParentNavList)
- {
- level += 1;
- int uid = int.Parse(UserIdString);
- SubUser user = GetUser(uid, Month) ?? new SubUser();
- int UserLevel = user.PreUserLevel > user.UserLevel ? user.PreUserLevel : user.UserLevel;
- if (curLevel == maxLevel)
- {
- break;
- }
- if (UserLevel <= maxLevel && UserLevel > curLevel)
- {
- int LevelKindId = GetLevelKindId(BrandId, 1, 1);
- ProfitObjectLevels objlevel = RedisDbconn.Instance.Get<ProfitObjectLevels>("pobjlv" + LevelKindId + ":" + UserLevel);
- if (objlevel != null)
- {
- decimal getLevelProfit = 0;
- if (objlevel.Percents > 0)
- {
-
- getLevelProfit += HelpDirectTradeAmt * objlevel.Percents;
- }
- if (objlevel.AddProfitVal > 0)
- {
- getLevelProfit += objlevel.AddProfitVal;
- }
- decimal money = getLevelProfit;
- getLevelProfit -= diffLevelProfit;
- if (objlevel.LevelDiff == 1)
- {
- diffLevelProfit = money;
- }
- if (getLevelProfit >= obj.MinProfitVal)
- {
- int DirectFlag = selfUser.Id == user.Id ? 1 : 0;
- result.Add(new ProfitResult()
- {
- UserId = user.Id,
- UserNav = user.ParentNav,
- Money = PublicFunction.NumberFormat(getLevelProfit),
- ProfitRate = objlevel.Percents,
- Message = "交易分润",
- BankCardType = BankCardType,
- QrPayFlag = QrPayFlag,
- DirectFlag = DirectFlag,
- BrandId = BrandId,
- IsSubsidy = 0,
- TradeAmount = HelpDirectTradeAmt,
- HelpFlag = 1,
- });
- curProfit += getLevelProfit;
- function.WriteLog(user.Id + "-" + UserLevel + "-" + HelpDirectTradeAmt + "-" + DirectFlag + "-扶持期分润:" + getLevelProfit, "分润监控日志");
- }
- }
- }
- if(curLevel < UserLevel)
- {
- curLevel = UserLevel;
- }
- }
- if(curProfit > checkProfit)
- {
- decimal more = curProfit - checkProfit;
- function.WriteLog("超标了:" + more, "分润监控日志");
- }
- }
- function.WriteLog("------------------------", "分润监控日志");
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":稳定期:" + NotHelpDirectTradeAmt, "分润监控日志");
- if (NotHelpDirectTradeAmt > 0)
- {
- level = 0;
- curLevel = 0;
- diffLevelProfit = 0;
- foreach (string UserIdString in ParentNavList)
- {
- level += 1;
- int uid = int.Parse(UserIdString);
- SubUser user = GetUser(uid, Month) ?? new SubUser();
- int UserLevel = user.PreUserLevel > user.UserLevel ? user.PreUserLevel : user.UserLevel;
- if (curLevel == maxLevel)
- {
- break;
- }
- if (UserLevel <= maxLevel && UserLevel > curLevel)
- {
- int LevelKindId = GetLevelKindId(BrandId, 0, 1);
- ProfitObjectLevels objlevel = RedisDbconn.Instance.Get<ProfitObjectLevels>("pobjlv" + LevelKindId + ":" + UserLevel);
- if (objlevel != null)
- {
- decimal getLevelProfit = 0;
- if (objlevel.Percents > 0)
- {
-
- getLevelProfit += NotHelpDirectTradeAmt * objlevel.Percents;
- }
- if (objlevel.AddProfitVal > 0)
- {
- getLevelProfit += objlevel.AddProfitVal;
- }
- decimal money = getLevelProfit;
- getLevelProfit -= diffLevelProfit;
- if (objlevel.LevelDiff == 1)
- {
- diffLevelProfit = money;
- }
- if (getLevelProfit >= obj.MinProfitVal)
- {
- result.Add(new ProfitResult()
- {
- UserId = user.Id,
- UserNav = user.ParentNav,
- Money = PublicFunction.NumberFormat(getLevelProfit),
- ProfitRate = objlevel.Percents,
- Message = "交易分润",
- BankCardType = BankCardType,
- QrPayFlag = QrPayFlag,
- BrandId = BrandId,
- DirectFlag = selfUser.Id == user.Id ? 1 : 0,
- IsSubsidy = 0,
- TradeAmount = NotHelpDirectTradeAmt,
- HelpFlag = 0,
- });
- }
- }
- }
- if(curLevel < UserLevel)
- {
- curLevel = UserLevel;
- }
- }
- }
- function.WriteLog("------------------------", "分润监控日志");
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":盈利期:" + ProfitDirectTradeAmt, "分润监控日志");
- if (ProfitDirectTradeAmt > 0)
- {
- level = 0;
- curLevel = 0;
- diffLevelProfit = 0;
- foreach (string UserIdString in ParentNavList)
- {
- level += 1;
- int uid = int.Parse(UserIdString);
- SubUser user = GetUser(uid, Month) ?? new SubUser();
- int UserLevel = user.PreUserLevel > user.UserLevel ? user.PreUserLevel : user.UserLevel;
- if (curLevel == maxLevel)
- {
- break;
- }
- if (UserLevel <= maxLevel && UserLevel > curLevel)
- {
- int LevelKindId = GetLevelKindId(BrandId, 2, 1);
- ProfitObjectLevels objlevel = RedisDbconn.Instance.Get<ProfitObjectLevels>("pobjlv" + LevelKindId + ":" + UserLevel);
- if (objlevel != null)
- {
- decimal getLevelProfit = 0;
- if (objlevel.Percents > 0)
- {
- getLevelProfit += ProfitDirectTradeAmt * objlevel.Percents;
- }
- if (objlevel.AddProfitVal > 0)
- {
- getLevelProfit += objlevel.AddProfitVal;
- }
- decimal money = getLevelProfit;
- getLevelProfit -= diffLevelProfit;
- if (objlevel.LevelDiff == 1)
- {
- diffLevelProfit = money;
- }
- if (getLevelProfit >= obj.MinProfitVal)
- {
- result.Add(new ProfitResult()
- {
- UserId = user.Id,
- UserNav = user.ParentNav,
- Money = PublicFunction.NumberFormat(getLevelProfit),
- ProfitRate = objlevel.Percents,
- Message = "交易分润",
- BankCardType = BankCardType,
- QrPayFlag = QrPayFlag,
- BrandId = BrandId,
- DirectFlag = selfUser.Id == user.Id ? 1 : 0,
- IsSubsidy = 0,
- TradeAmount = ProfitDirectTradeAmt,
- HelpFlag = 2,
- });
- }
- }
- }
- if(curLevel < UserLevel)
- {
- curLevel = UserLevel;
- }
- }
- }
- }
- }
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":over", "分润监控日志");
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "每月统计分润异常");
- }
- dbnew.Dispose();
- }
- }
- }
- return result;
- }
- #endregion
- public SubUser GetUser(int UserId, string Month)
- {
- SubUser user = new SubUser();
- DataTable dt = GetDataTable("select * from Users" + Month + " where Id=" + UserId);
- if(dt.Rows.Count > 0)
- {
- user.Id = int.Parse(dt.Rows[0]["Id"].ToString());
- user.ParentUserId = int.Parse(dt.Rows[0]["ParentUserId"].ToString());
- user.ParentNav = dt.Rows[0]["ParentNav"].ToString();
- user.UserLevel = int.Parse(dt.Rows[0]["UserLevel"].ToString());
- user.PreUserLevel = int.Parse(dt.Rows[0]["PreUserLevel"].ToString());
- }
- return user;
- }
- public DataTable GetDataTable(string sqlstr)
- {
- DataTable dt = CustomerSqlConn.dtable(sqlstr, Library.ConfigurationManager.AppSettings["MainSqlConnStr"].ToString());
- return dt;
- }
- }
- }
|