123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using MySystem.PxcModels;
- using Library;
- using LitJson;
- namespace MySystem
- {
- public class AlipayPayBack2Service
- {
- public readonly static AlipayPayBack2Service Instance = new AlipayPayBack2Service();
- private AlipayPayBack2Service()
- { }
- public void Start(JobMqMsg jobInfo)
- {
- string content = "";
- try
- {
- dosomething();
- // string Msg = "success";
- // jobInfo.Status = Msg == "success" ? 1 : 0;
- // jobInfo.Msg = Msg == "success" ? "执行完成" : Msg;
- // RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "PublicBack");
- }
- catch (Exception ex)
- {
- if (!string.IsNullOrEmpty(content))
- {
- Dictionary<string, string> data = new Dictionary<string, string>();
- data.Add("ErrTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
- data.Add("ErrMsg", ex.ToString());
- function.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(data), "public_err");
- }
- else
- {
- function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "商城订单支付回调异常");
- }
- }
- }
-
- private void dosomething()
- {
- bool op = true;
- while (op)
- {
- string content = RedisDbconn.Instance.RPop<string>("PayCallBack2");
- if (!string.IsNullOrEmpty(content))
- {
- sloveAlipayCallBack(content);
- }
- else
- {
- op = false;
- }
- }
- }
- public void sloveAlipayCallBack(string content)
- {
- JsonData jsonObj = JsonMapper.ToObject(content);
- string OrderNo = jsonObj["out_trade_no"].ToString();
- string TradeNo = jsonObj["transaction_id"].ToString();
- decimal TotalFee = decimal.Parse(function.CheckNum(jsonObj["total_fee"].ToString()));
- WebCMSEntities db = new WebCMSEntities();
- OrderForNo forNo = db.OrderForNo.FirstOrDefault(m => m.OrderNo == OrderNo);
- if (forNo != null)
- {
- string[] ids = forNo.OrderIds.Split(',');
- foreach (string idString in ids)
- {
- int OrderId = int.Parse(idString);
- DoOrderV2(db, OrderId);
- }
- }
- db.Dispose();
- }
- #region 新订单流程
- public void DoOrderV2(WebCMSEntities db, int OrderId)
- {
- Orders order = db.Orders.FirstOrDefault(m => m.Id == OrderId && m.Status <= 0);
- if (order != null)
- {
- order.Status = 1;
- order.PayDate = DateTime.Now;
- order.PayStatus = 1;
- db.SaveChanges();
- if(order.ParentOrderId > 0)
- {
- int total = db.Orders.Count(m => m.ParentOrderId == order.ParentOrderId);
- int paycount = db.Orders.Count(m => m.ParentOrderId == order.ParentOrderId && m.Status > 0);
- if(paycount >= total)
- {
- // order = db.Orders.FirstOrDefault(m => m.Id == order.ParentOrderId && m.Status == 0);
- // if (order != null)
- // {
- // order.Status = 2;
- // order.PayDate = DateTime.Now;
- // order.PayStatus = 1;
- // OrderId = order.Id;
- // }
- DoOrderV2(db, order.ParentOrderId);
- }
- return;
- }
- OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == OrderId);
- if (pro != null)
- {
- order.ProductId = pro.ProductId;
- //扣减对应商品的库存
- Products product = db.Products.FirstOrDefault(m => m.Id == pro.ProductId);
- if(product != null)
- {
- product.Stock -= pro.ProductCount;
- product.BuyCount += pro.ProductCount;
- }
- db.SaveChanges();
- if(order.ErpMode > 0)
- {
- pro.ProductId = order.ProductId;
- }
- List<int> couponIds = new List<int>();
- if (pro.ProductId == 10 || pro.ProductId == 11 || pro.ProductId == 27 || pro.ProductId == 28 || pro.ProductId == 34 || pro.ProductId == -2)
- {
- order.Status = 2;
- int BuyCount = pro.ProductCount;
- int Kind = 0;
- int BeforeLeaderLevel = 0;
- if (pro.ProductId == 10 || pro.ProductId == 34)
- {
- Kind = 1;
- }
- else if (pro.ProductId == 11 || pro.ProductId == -2)
- {
- Kind = 2;
- }
- else if (pro.ProductId == 28)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId && m.LeaderLevel == 0);
- if(user != null)
- {
- BeforeLeaderLevel = user.LeaderLevel;
- user.LeaderLevel = 1;
- }
- }
- else if (pro.ProductId == 27)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId && m.LeaderLevel < 2);
- if(user != null)
- {
- BeforeLeaderLevel = user.LeaderLevel;
- user.LeaderLevel = 2;
- }
- }
- if(Kind <= 2 && (pro.ProductId == 10 || pro.ProductId == 11 || pro.ProductId == 34 || pro.ProductId == -2))
- {
- // 购买600一组机具券,返券
- int CouponCount = 0;
- if(Kind == 1)
- {
- CouponCount = 3 * pro.ProductCount;
- }
- else if(Kind == 2)
- {
- CouponCount = 2 * pro.ProductCount;
- }
- string Codes = "";
- var coupons = db.PosCoupons.Where(m => m.IsLock == 0 && m.IsUse == 0 && m.UserId == 0 && m.QueryCount == Kind).OrderBy(m => m.Id).Take(CouponCount).ToList();
- int RecordId = 0;
- if(coupons.Count > 0 && (pro.ProductId == 34 || pro.ProductId == -2))
- {
- var adds = db.HelpProfitExchange.Add(new HelpProfitExchange()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = order.UserId,
- ExchangeCount = coupons.Count,
- }).Entity;
- db.SaveChanges();
- RecordId = adds.Id;
- }
- foreach (var coupon in coupons) // TODO: 数量多的话,会慢
- {
- PosCoupons item = db.PosCoupons.FirstOrDefault(m => m.Id == coupon.Id);
- if (item != null)
- {
- item.CreateDate = DateTime.Now;
- item.UserId = order.UserId;
- item.UpdateDate = DateTime.Now.AddDays(180);
- if(pro.ProductId == 34 || pro.ProductId == -2)
- {
- item.HelpProfitFlag = 1;
- db.HelpProfitExchangeDetail.Add(new HelpProfitExchangeDetail()
- {
- CreateDate = DateTime.Now, //创建时间
- UserId = order.UserId,
- PosCouponId = item.Id,
- ExchangeCode = item.ExchangeCode,
- RecordId = RecordId,
- });
- }
- Codes += item.ExchangeCode + ",";
- couponIds.Add(coupon.Id);
- }
- }
- order.SnNos = Codes.TrimEnd(',');
- }
- db.SaveChanges();
- if (pro.ProductId == 27 || pro.ProductId == 28)
- {
- //充值盟主储备金
- decimal TotalPrice = 10000;
- if(pro.ProductId == 27)
- {
- TotalPrice = 40000;
- }
- OpReserve(db, order, order.UserId, TotalPrice, 1);
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId) ?? new Users();
- if(pro.ProductId == 27)
- {
- OperateReserveBackFor(db, user.Id, 40000);
- //预设大盟主职级
- LeaderPreUserLevel(db, order.UserId, 2);
- decimal Prize = decimal.Parse(function.CheckNum(PublicFunction.GetPublicParam(db, "BigLeaderPrize")));
- if(Prize > 0 && BeforeLeaderLevel < 2 && user.UserType == 0)
- {
- LeaderRecommendPrize(db, order, user.Id, Prize, 122);
- }
- }
- }
- if (pro.ProductId == 28) //购买小盟主,给上级大盟主返储备金
- {
- bool check = LeaderBack(db, order);
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId) ?? new Users();
- if (check) OperateReserveBackFor(db, user.Id, 10000);
- //预设小盟主职级
- LeaderPreUserLevel(db, order.UserId, 1);
- decimal Prize = decimal.Parse(function.CheckNum(PublicFunction.GetPublicParam(db, "SmallLeaderPrize")));
- if(Prize > 0 && BeforeLeaderLevel < 1 && user.UserType == 0)
- {
- LeaderRecommendPrize(db, order, user.Id, Prize, 123);
- }
- }
- }
- // 购买盟主储蓄金
- if (pro.ProductId == 39 || pro.ProductId == 40)
- {
- order.Status = 2;
- //充值盟主储备金
- decimal TotalPrice = 10000;
- if(pro.ProductId == 39)
- {
- TotalPrice = 40000;
- }
- OpReserve(db, order, order.UserId, TotalPrice, 1);
- }
- //推荐下单奖励
- if (pro.ProductId == 10 || pro.ProductId == 11)
- {
- bool checkPrize = db.UserAccountRecord.Any(m => m.QueryCount == OrderId && m.ChangeType == 112);
- function.WriteLog("OrderId:" + OrderId, "推荐下单奖励监控日志");
- function.WriteLog("checkPrize:" + checkPrize, "推荐下单奖励监控日志");
- if (checkPrize)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
- if (user != null)
- {
- if(user.LeaderLevel > 0 || user.UserType == 1) //盟主或运营中心
- {
- //获得100元奖励
- OpAccount(db, order, order.UserId, 100, pro.ProductCount);
- }
- }
- }
- else
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
- if (user != null)
- {
- bool directPrize = false; //直推奖标记
- bool bigLeaderPrize = false; //大盟主券标记
- bool operateFlag = false; //运营中心标记
- bool buyPrize = false; //返100购机奖励标记或返100购机奖励标记-运营中心
- int leaderFlag = 0; //返600备用金标记
- if(user.LeaderLevel > 0 || user.UserType == 1) //盟主或运营中心
- {
- if(user.LeaderLevel > 0)
- {
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
- if(acccount.LeaderReserve >= order.TotalPrice)
- {
- if(order.PayMode == 4)
- {
- //扣减备用金
- OpReserve(db, order, order.UserId, order.TotalPrice, 0, 0, "商城购机(储备金支付)");
- }
- }
- }
- //获得100元奖励
- OpAccount(db, order, order.UserId, 100, pro.ProductCount);
- //推荐奖励
- DirectPrize(db, order.Id, order.UserId, pro.ProductCount);
- //推荐下单上级获得30天的机具循环天数(盟主自己得)
- var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == order.UserId && m.BindingState == 0 && m.RecycEndDate != null).ToList();
- foreach (var subPos in posList)
- {
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == subPos.Id);
- if (pos != null)
- {
- pos.RecycEndDate = pos.RecycEndDate.Value.AddDays(30);
- }
- }
- db.SaveChanges();
- if(order.PayMode == 4 && user.LeaderLevel > 0) //使用盟主储蓄金,并且是盟主
- {
- if(user.UserType == 1)
- {
- if(couponIds.Count > 0)
- {
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == user.Id) ?? new UserAccount();
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- if(acccount.LeaderReserve >= 400 * pro.ProductCount)
- {
- coupon.LeaderUserId = user.Id;
- }
- coupon.OpId = user.Id;
- }
- }
- }
- db.SaveChanges();
- }
- else
- {
- //寻找最近运营中心额度大于0的运营中心
- int PUserId = user.Id;
- bool OperateFlag = true;
- bool OncePrizeFlag1 = true;
- while(PUserId > 0)
- {
- Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
- if(puser != null)
- {
- if(puser.UserType == 1 && OperateFlag == true) //运营中心
- {
- if(couponIds.Count > 0)
- {
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- if(acccount.LeaderReserve >= 400 * pro.ProductCount)
- {
- coupon.LeaderUserId = user.Id;
- }
- coupon.OpId = puser.Id;
- }
- }
- db.SaveChanges();
- if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag1)
- {
- //扣减备用金
- OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
- //返回到余额
- OpLeaderAccount(db, order, order.UserId, 400, pro.ProductCount);
- OncePrizeFlag1 = false;
- }
- OperateFlag = false;
- }
- }
- PUserId = puser.ParentUserId;
- }
- else
- {
- PUserId = 0;
- }
- }
- }
- }
- else if(order.PayMode == 4 && user.UserType == 1) //使用盟主储蓄金,并且是运营中心
- {
- if(couponIds.Count > 0)
- {
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- coupon.OpId = user.Id;
- }
- }
- }
- db.SaveChanges();
- //寻找最近储蓄金充足的大盟主
- int PUserId = user.Id;
- bool LeaderFlag = true;
- bool OncePrizeFlag2 = true;
- while(PUserId > 0)
- {
- Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
- if(puser != null)
- {
- if(puser.LeaderLevel == 2 && LeaderFlag == true) //大盟主
- {
- if(couponIds.Count > 0)
- {
- UserAccount pacccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null && pacccount.LeaderReserve >= 400 * pro.ProductCount)
- {
- coupon.LeaderUserId = puser.Id;
- }
- }
- db.SaveChanges();
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
- if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag2)
- {
- //扣减备用金
- OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
- //返回到余额
- OpLeaderAccount(db, order, order.UserId, 400, pro.ProductCount);
- OncePrizeFlag2 = false;
- }
- LeaderFlag = false;
- }
- }
- PUserId = puser.ParentUserId;
- }
- else
- {
- PUserId = 0;
- }
- }
- }
- else
- {
- //寻找最近储蓄金充足的大盟主及最近运营中心额度大于0的运营中心(含自身)
- int PUserId = user.Id;
- int LeaderFlag = 0;
- bool OperateFlag = true;
- bool OncePrizeFlag3 = true;
- while(PUserId > 0)
- {
- Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
- if(puser != null)
- {
- if(puser.LeaderLevel > 0 && puser.LeaderLevel > LeaderFlag && LeaderFlag < 2) //大盟主
- {
- if(couponIds.Count > 0)
- {
- if(puser.LeaderLevel == 2)
- {
- UserAccount pacccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null && pacccount.LeaderReserve >= 400 * pro.ProductCount)
- {
- coupon.LeaderUserId = puser.Id;
- }
- }
- db.SaveChanges();
- }
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
- if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag3)
- {
- //扣减备用金
- OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, 0, "商城购机");
- //返回到余额
- OpLeaderAccount(db, order, puser.Id, 400, pro.ProductCount);
- LeaderFlag = puser.LeaderLevel;
- OncePrizeFlag3 = false;
- }
- }
- }
- if(puser.UserType == 1 && OperateFlag == true) //运营中心
- {
- if(couponIds.Count > 0)
- {
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- coupon.OpId = puser.Id;
- }
- }
- db.SaveChanges();
- OperateFlag = false;
- }
- }
- PUserId = puser.ParentUserId;
- }
- else
- {
- PUserId = 0;
- }
- }
- //运营中心返额度(下单人自己是运营中心)
- // OperateReserveBackFor(db, order.UserId, order.TotalPrice);
- }
- return;
- }
- int ParentUserId = user.ParentUserId;
- // List<int> proids = new List<int>();
- // proids.Add(10);
- // proids.Add(11);
- // 普通创客购买600一组的机具券
- bool OncePrizeFlag4 = true;
- while(ParentUserId > 0)
- {
- Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
- int machineCount = db.PosMachinesTwo.Count(m => m.BuyUserId == ParentUserId && m.PosSnType == 0 && m.ActivationState == 0); //判断是否拥有3台兑换机
- int ActiveCount = db.PosMachinesTwo.Count(m => m.BuyUserId == ParentUserId && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
- int couponCount = db.PosCoupons.Count(m => m.UserId == ParentUserId && m.IsUse == 0); //判断是否拥有3张券
- function.WriteLog("MakerCode:" + puser.MakerCode, "推荐下单奖励监控日志");
- function.WriteLog("machineCount:" + machineCount, "推荐下单奖励监控日志");
- function.WriteLog("ActiveCount:" + ActiveCount, "推荐下单奖励监控日志");
- if ((machineCount + ActiveCount + couponCount >= 3 || puser.LeaderLevel > 0) && !directPrize)
- {
- // function.WriteLog("满足条件", "推荐下单奖励监控日志");
- // if(puser.LeaderLevel == 0) // 非盟主直推奖励,每个创客第一次下单,上级可得
- // {
- // List<int> oids = new List<int>();
- // var orderpros = db.OrderProduct.Select(m => new { m.OrderId,m.UserId,m.ProductId }).Where(m => m.UserId == order.UserId && proids.Contains(m.ProductId)).ToList();
- // foreach(var orderpro in orderpros)
- // {
- // oids.Add(orderpro.OrderId);
- // }
- // bool check = db.Orders.Any(m => oids.Contains(m.Id) && m.Status > 0);
- // if(!check)
- // {
- // DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
- // directPrize = true;
- // }
- // }
- // else
- // {
- // 盟主直推奖励,可以每次下单获得
- DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
- directPrize = true;
- // }
- //推荐下单上级获得30天的机具循环天数
- var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == ParentUserId && m.BindingState == 0 && m.RecycEndDate != null).ToList();
- foreach (var subPos in posList)
- {
- PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == subPos.Id);
- if (pos != null)
- {
- pos.RecycEndDate = pos.RecycEndDate.Value.AddDays(30);
- }
- }
- db.SaveChanges();
- }
- if(puser.LeaderLevel > 0)
- {
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
- if(acccount.LeaderReserve >= order.TotalPrice && !buyPrize)
- {
- //购机奖励
- OpAccount(db, order, puser.Id, 100, pro.ProductCount);
- buyPrize = true;
- }
- if(acccount.LeaderReserve >= 400 * pro.ProductCount && puser.LeaderLevel > leaderFlag && leaderFlag < 2 && OncePrizeFlag4)
- {
- //扣减备用金
- OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, order.UserId, "购机奖励");
- //返回到余额
- OpLeaderAccount(db, order, puser.Id, 400, pro.ProductCount);
- leaderFlag = puser.LeaderLevel;
- OncePrizeFlag4 = false;
- }
- //如果是大盟主,则标记大盟主标签
- if(couponIds.Count > 0 && puser.LeaderLevel == 2 && acccount.LeaderReserve >= order.TotalPrice && !bigLeaderPrize)
- {
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- coupon.LeaderUserId = puser.Id;
- }
- }
- db.SaveChanges();
- bigLeaderPrize = true;
- }
- }
- if(puser.UserType == 1)
- {
- UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
- if(!buyPrize)
- {
- //购机奖励
- ChangeAccount(db, order, puser.Id, 100 * pro.ProductCount, 120);
- buyPrize = true;
- }
- //标记标签
- if(couponIds.Count > 0 && !operateFlag)
- {
- foreach(int couponId in couponIds)
- {
- PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
- if(coupon != null)
- {
- coupon.OpId= puser.Id;
- }
- }
- db.SaveChanges();
- operateFlag = true;
- }
- }
- ParentUserId = puser.ParentUserId;
- }
- //运营中心返额度
- // OperateReserveBackFor(db, order.UserId, order.TotalPrice);
- }
- }
- function.WriteLog("\r\n\r\n", "推荐下单奖励监控日志");
- }
- //推荐王
- if(pro.ProductId == 29)
- {
- RecommendMethod(order.UserId, order.CreateDate.Value.ToString("yyyyMM"));
- }
- //购买分仓临时额度
- if(pro.ProductId == 30 || pro.ProductId == 31 || pro.ProductId == 32)
- {
- string SendData = "{\"Kind\":\"1\",\"Data\":{\"OrderId\":\"" + order.Id + "\"}}";
- RedisDbconn.Instance.AddList("StoreApplyQueue", SendData);
- }
- }
- else
- {
- if(order.ProductId > 0 && order.ErpMode > 0)
- {
- //盟主储备金-升级/购买 ErpMode:1-升级,2-购买
- if(order.ErpMode > 0)
- {
- Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
- if(user != null)
- {
- if(order.ErpMode == 1)
- {
- user.LeaderLevel = 2;
- db.SaveChanges();
- }
- OpReserve(db, order, order.UserId, order.TotalPrice, 1);
- }
- }
- }
- }
- }
- }
- //小盟主购买逻辑
- public bool LeaderBack(WebCMSEntities db, Orders order)
- {
- int LeaderUserId = order.UserId;
- int level = 0;
- bool result = true;
- while(LeaderUserId > 0)
- {
- level += 1;
- Users user = db.Users.FirstOrDefault(m => m.Id == LeaderUserId);
- if(user != null)
- {
- if(user.LeaderLevel == 2 && level > 1)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == LeaderUserId);
- if(account != null)
- {
- decimal TotalPrice = 10000;
- if(account.LeaderReserve >= TotalPrice)
- {
- OpReserve(db, order, LeaderUserId, TotalPrice, 2, 0, "推荐小盟主");
- OpLeaderAccount(db, order, LeaderUserId, TotalPrice);
- LeaderUserId = 0;
- result = false;
- }
- else
- {
- LeaderUserId = user.ParentUserId;
- // decimal LeaderReserve = account.LeaderReserve;
- // OpReserve(db, order, LeaderUserId, LeaderReserve, 2, 0, "推荐小盟主");
- // OpLeaderAccount(db, order, LeaderUserId, LeaderReserve);
- }
- }
- }
- else
- {
- LeaderUserId = user.ParentUserId;
- }
- }
- else
- {
- LeaderUserId = 0;
- }
- }
- return result;
- }
- //操作储备金
- public void OpReserve(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType, int SourceUserId = 0, string Remark = "储备金购买")
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeAmount = account.LeaderReserve; //变更前总金额
- if(ChangeType == 1)
- {
- account.LeaderReserve += Money;
- }
- else
- {
- account.LeaderReserve -= Money;
- }
- decimal AfterAmount = account.LeaderReserve; //变更后总金额
- LeaderReserveRecord add = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
- {
- CreateDate = DateTime.Now,
- ChangeType = ChangeType,
- OrderId = order.Id,
- Remark = Remark,
- AfterAmt = AfterAmount,
- BeforeAmt = BeforeAmount,
- ChangeAmt = Money,
- TradeDate = DateTime.Now.ToString("yyyyMMdd"),
- TradeMonth = DateTime.Now.ToString("yyyyMM"),
- UserId = UserId,
- SourceUserId = SourceUserId,
- }).Entity;
- db.SaveChanges();
- }
- //操作余额
- public void OpAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int Count = 1)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- int ChangeType = 0;
- if(Money == 600)
- {
- ChangeType = 117;
- }
- else if(Money == 100)
- {
- ChangeType = 118;
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += Money * Count;
- account.TotalAmount += Money * Count;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = ChangeType, //变动类型
- ChangeAmount = Money * Count, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- QueryCount = order.Id,
- }).Entity;
- db.SaveChanges();
- }
- public void ChangeAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType = 0, string Remark = "")
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += Money;
- if(Money > 0)
- {
- account.TotalAmount += Money;
- }
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = ChangeType, //变动类型
- ChangeAmount = Math.Abs(Money), //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- QueryCount = order.Id,
- Remark = Remark,
- }).Entity;
- db.SaveChanges();
- }
- //操作盟主可提现余额
- public void OpLeaderAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int Count = 1)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- int ChangeType = 0;
- if(Money == 400)
- {
- ChangeType = 117;
- }
- decimal BeforeLeaderBalanceAmount = account.LeaderBalanceAmount; //变更前余额
- account.LeaderBalanceAmount += Money * Count;
- decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后余额
- LeaderAccountRecord leaderAccountRecord = db.LeaderAccountRecord.Add(new LeaderAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = ChangeType, //变动类型
- ChangeAmount = Money * Count, //变更金额
- BeforeBalanceAmount = BeforeLeaderBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterLeaderBalanceAmount, //变更后余额
- QueryCount = order.Id,
- }).Entity;
- db.SaveChanges();
- }
- public void DirectPrize(WebCMSEntities db, int OrderId, int UserId, int Count = 1)
- {
- UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
- decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
- decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
- account.BalanceAmount += 100 * Count;
- account.TotalAmount += 100 * Count;
- decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
- decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
- decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
- UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- UserId = UserId, //创客
- ChangeType = 112, //变动类型
- ChangeAmount = 100 * Count, //变更金额
- BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
- AfterTotalAmount = AfterTotalAmount, //变更后总金额
- BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
- AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
- BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
- AfterBalanceAmount = AfterBalanceAmount, //变更后余额
- QueryCount = OrderId,
- }).Entity;
- db.SaveChanges();
- }
- // 推荐王逻辑(下单)
- public void RecommendMethod(int UserId, string TradeMonth)
- {
- string SendData = "{\"Kind\":\"1\",\"Data\":{\"UserId\":\"" + UserId + "\",\"TradeMonth\":\"" + TradeMonth + "\"}}";
- RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
- }
- //操作运营中心额度
- public void OperateReserveBackFor(WebCMSEntities maindb, int UserId, decimal Money)
- {
- OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
- while(UserId > 0)
- {
- Users user = maindb.Users.FirstOrDefault(m => m.Id == UserId);
- if(user != null)
- {
- bool sys = db.SysAdmin.Any(m => m.UserId == UserId);
- if(sys)
- {
- OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new OpModels.UserAccount();
- if(account.TotalAmt <= 0)
- {
- return;
- }
- if(account.TotalAmt < Money)
- {
- Money = account.TotalAmt;
- }
- if(Money > 0)
- {
- OperateAmountChange(db, UserId, Money, 2, 1, "商城购机");
- OperateAmountChange(db, UserId, Money, 1, 2, "商城购机");
- }
- UserId = 0;
- }
- else
- {
- UserId = user.ParentUserId;
- }
- }
- else
- {
- UserId = 0;
- }
- }
- db.Dispose();
- }
- public void OperateReserveBack(int UserId, decimal Money)
- {
- OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
- OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new OpModels.UserAccount();
- if(account.TotalAmt <= 0)
- {
- return;
- }
- if(account.TotalAmt < Money)
- {
- Money = account.TotalAmt;
- }
- if(Money > 0)
- {
- OperateAmountChange(db, UserId, Money, 2, 1, "商城购机");
- OperateAmountChange(db, UserId, Money, 1, 2, "商城购机");
- }
- db.Dispose();
- }
- public void ActReserveBack(int UserId, decimal OpReserve1, decimal OpReserve2, decimal OpReserve3)
- {
- OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
- if(OpReserve1 > 0) OperateAmountChange(db, UserId, OpReserve1, 1, 1, "机具激活", true);
- if(OpReserve2 > 0) OperateAmountChange(db, UserId, OpReserve2, 1, 2, "机具激活", true);
- if(OpReserve3 > 0) OperateAmountChange(db, UserId, OpReserve3, 1, 3, "机具激活", true);
- db.Dispose();
- }
- public void OperateAmountChange(OpModels.WebCMSEntities db, int UserId, decimal Money, int OperateType, int AmountType, string Remark = "", bool record = false)
- {
- OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
- if (account == null)
- {
- account = db.UserAccount.Add(new OpModels.UserAccount()
- {
- Id = UserId,
- UserId = UserId,
- }).Entity;
- db.SaveChanges();
- }
- decimal BeforeAmount = account.ValidAmount + account.TotalAmt + account.ValidForGetAmount; //变更前总金额
- if(OperateType == 1)
- {
- if(AmountType == 1)
- {
- // BeforeAmount = account.TotalAmt;
- account.TotalAmt += Money;
- // AfterAmount = account.TotalAmt;
- }
- else if(AmountType == 2)
- {
- // BeforeAmount = account.ValidForGetAmount;
- account.ValidForGetAmount += Money;
- // AfterAmount = account.ValidForGetAmount;
- }
- else
- {
- // BeforeAmount = account.ValidAmount;
- account.ValidAmount += Money;
- // AfterAmount = account.ValidAmount;
- }
- }
- else
- {
- if(AmountType == 1)
- {
- // BeforeAmount = account.TotalAmt;
- account.TotalAmt -= Money;
- // AfterAmount = account.TotalAmt;
- }
- else if(AmountType == 2)
- {
- // BeforeAmount = account.ValidForGetAmount;
- account.ValidForGetAmount -= Money;
- // AfterAmount = account.ValidForGetAmount;
- }
- else
- {
- // BeforeAmount = account.ValidAmount;
- account.ValidAmount -= Money;
- // AfterAmount = account.ValidAmount;
- }
- }
- decimal AfterAmount = account.ValidAmount + account.TotalAmt + account.ValidForGetAmount; //变更后总金额
- if(record)
- {
- OpModels.AmountRecord add = db.AmountRecord.Add(new OpModels.AmountRecord()
- {
- CreateDate = DateTime.Now,
- UpdateDate = DateTime.Now,
- OperateType = OperateType,
- AfterAmount = AfterAmount,
- BeforeAmount = BeforeAmount,
- UseAmount = Money,
- UserId = UserId,
- SeoDescription = Remark,
- Version = AmountType,
- }).Entity;
- }
- db.SaveChanges();
- }
- #endregion
- #region 盟主推荐奖励
- public void LeaderRecommendPrize(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType)
- {
- int level = 0;
- while(UserId > 0)
- {
- level += 1;
- Users user = db.Users.FirstOrDefault(m => m.Id == UserId);
- if(user != null)
- {
- if((user.UserType == 1 || user.LeaderLevel > 0) && level > 1)
- {
- ChangeAccount(db, order, UserId, Money, ChangeType);
- UserId = 0;
- }
- else
- {
- UserId = user.ParentUserId;
- }
- }
- else
- {
- UserId = 0;
- }
- }
- db.Dispose();
- }
- #endregion
- #region 购买盟主预设职级
- public void LeaderPreUserLevel(WebCMSEntities db, int UserId, int LeaderKind)
- {
- int Month = LeaderKind == 1 ? 6 : 12;
- int Rank = LeaderKind == 1 ? 5 : 7;
- UserRankWhite check = db.UserRankWhite.FirstOrDefault(m => m.Id == UserId);
- if(check == null)
- {
- db.UserRankWhite.Add(new UserRankWhite()
- {
- CreateDate = DateTime.Now, //设置时间
- UpdateDate = DateTime.Now.AddMonths(Month), //过期时间
- Rank = Rank,
- UserId = UserId, //用户
- Id = UserId,
- });
- }
- else
- {
- if(check.Rank < Rank)
- {
- check.Rank = Rank;
- check.UpdateDate = DateTime.Now.AddMonths(Month);
- }
- else if(check.Rank == Rank && check.UpdateDate < DateTime.Now.AddMonths(Month))
- {
- check.UpdateDate = DateTime.Now.AddMonths(Month);
- }
- }
- db.SaveChanges();
- }
- #endregion
- }
- }
|