123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using MySystem.PxcModels;
- using Library;
- namespace MySystem
- {
- public class ProfitWifiBeforeHelper
- {
- public readonly static ProfitWifiBeforeHelper Instance = new ProfitWifiBeforeHelper();
- private ProfitWifiBeforeHelper()
- {
- }
-
- #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 StatProfiting()
- {
- string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
- string check = function.ReadInstance("/ProfitStat/" + Month + "-1-wifi-before.txt");
- if (!string.IsNullOrEmpty(check))
- {
- return;
- }
- function.WritePage("/ProfitStat/", Month + "-1-wifi-before.txt", DateTime.Now.ToString());
- try
- {
- WebCMSEntities db = new WebCMSEntities();
- List<int> BrandIds = new List<int>();
- BrandIds.Add(23);
- BrandIds.Add(24);
- BrandIds.Add(25);
- BrandIds.Add(26);
- foreach (int i in BrandIds) //品牌
- {
- int PageNum = 1;
- bool op = true;
- while(op)
- {
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + "BrandId:" + i + ",Month:" + Month + ",PageNum:" + PageNum, "WIFI分润监控日志");
- List<ProfitResult> result = result = StartProftForPosByDate(i, Month, PageNum);
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + "result:" + result.Count, "WIFI分润监控日志");
- function.WriteLog("\r\n", "WIFI分润监控日志");
- 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;
- 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 ProfitCreditTradeProfit2 = 0;
- decimal ProfitCreditProfitRate2 = 0;
- decimal ProfitCreditTradeAmt2 = 0;
- decimal ProfitDebitNonCapTradeAmt = 0;
- decimal ProfitDebitNonTradeCapProfit = 0;
- decimal ProfitDebitProfitRate = 0;
- CreditTradeAmt = TradeAmt; //贷记卡交易总金额
- CreditTradeProfit = ProfitAmt; //贷记卡分润总金额
- NonQrCreditTradeAmt = TradeAmt; //(非云闪付)贷记卡交易总金额
- NonQrCreditTradeProfit = ProfitAmt; //(非云闪付)贷记卡交易分润
- if(sub.HelpFlag == 1)
- {
- HelpCreditTradeProfit = ProfitAmt; //分润总金额
- HelpCreditProfitRate = ProfitRate; //商户交易对应分润比例
- HelpCreditTradeAmt = TradeAmt; //交易总金额
- }
- db.ProfitRewardRecord.Add(new ProfitRewardRecord()
- {
- Version = 1,
- 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, //(盈利期)(非云闪付)贷记卡交易总金额
- ProfitCreditTradeProfit2 = ProfitCreditTradeProfit2, //(盈利期)(非云闪付)贷记卡分润总金额
- ProfitCreditProfitRate2 = ProfitCreditProfitRate2, //(盈利期)(非云闪付)贷记卡商户交易对应分润比例
- ProfitCreditTradeAmt2 = ProfitCreditTradeAmt2, //(盈利期)(非云闪付)贷记卡交易总金额
- 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(), "WIFI分润监控异常");
- }
- }
- public List<ProfitResult> StartProftForPosByDate(int BrandId, 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>("pobj23");
- if (obj.Status == 1) //判断分润是否开启
- {
- string sqlstr = "select UserId,HelpDirectTradeAmt from TradeDaySummaryBefore where TradeMonth='" + Month + "' and HelpDirectTradeAmt>0 and BrandId=" + BrandId + LimitString;
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + sqlstr, "WIFI分润监控日志");
- DataTable dt = CustomerSqlConn.dtable(sqlstr, MysqlConn.ReadSqlConnStr);
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":" + dt.Rows.Count.ToString(), "WIFI分润监控日志");
- if(dt.Rows.Count > 0)
- {
- foreach (DataRow dr in dt.Rows)
- {
- WebCMSEntities dbnew = new WebCMSEntities();
- try
- {
- int UserId = int.Parse(dr["UserId"].ToString());
- List<UserLevelSet> levels = dbnew.UserLevelSet.ToList();
- SubUser selfUser = ProfitBeforeHelper.Instance.GetUser(UserId, Month) ?? new SubUser();
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "WIFI分润监控日志");
- decimal HelpDirectTradeAmt = decimal.Parse(dr[1].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, "WIFI分润监控日志");
- 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, "WIFI分润监控日志");
- 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 = ProfitBeforeHelper.Instance.GetUser(uid, Month) ?? new SubUser();
- int UserLevel = ProfitBeforeHelper.Instance.GetUserLevel(user); //当前会员等级
- if (curLevel == maxLevel) //判断当前创客是否有直推的激活机具,并且在活动时间内
- {
- break;
- }
- if (UserLevel <= maxLevel && UserLevel >= curLevel)
- {
- int LevelKindId = GetLevelKindId(23, 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 = 1,
- DirectFlag = DirectFlag,
- BrandId = BrandId,
- IsSubsidy = 0,
- TradeAmount = HelpDirectTradeAmt,
- HelpFlag = 1,
- });
- curProfit += getLevelProfit;
- function.WriteLog(user.Id + "-" + UserLevel + "-" + HelpDirectTradeAmt + "-" + DirectFlag + "-扶持期分润:" + getLevelProfit, "WIFI分润监控日志");
- }
- }
- }
- if(curLevel < UserLevel)
- {
- curLevel = UserLevel;
- }
- }
- if(curProfit > checkProfit)
- {
- decimal more = curProfit - checkProfit;
- function.WriteLog("超标了:" + more, "WIFI分润监控日志");
- }
- }
- function.WriteLog("------------------------", "WIFI分润监控日志");
- }
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + ":over", "WIFI分润监控日志");
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "WIFI分润监控异常");
- }
- dbnew.Dispose();
- }
- }
- }
- return result;
- }
- #endregion
- }
- }
|