lcl 1 year ago
parent
commit
3398cb4ad8

BIN
AppStart/Helper/.DS_Store


+ 0 - 1134
AppStart/Helper/AlipayPayBack2Service.cs

@@ -1,1134 +0,0 @@
-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
-
-    }
-}

+ 1 - 1
AppStart/Helper/BalancePayBackService.cs

@@ -98,7 +98,7 @@ namespace MySystem
                             Remark = "购买" + ProductName,
                         }).Entity;
                         db.SaveChanges();
-                        AlipayPayBack2Service.Instance.DoOrderV2(db, OrderId);
+                        // AlipayPayBack2Service.Instance.DoOrderV2(db, OrderId);
                     }
                 }
             }

+ 2 - 3
AppStart/Helper/MerchantConfirmService.cs

@@ -33,8 +33,8 @@ namespace MySystem
                     {
                         JsonData jsonObj = JsonMapper.ToObject(content);
                         int MerchantId = int.Parse(jsonObj["MerchantId"].ToString());
-                        int Kind = int.Parse(jsonObj["Kind"].ToString());
-                        StartDo(MerchantId, Kind);
+                        // int Kind = int.Parse(jsonObj["Kind"].ToString());
+                        StartDo(MerchantId);
                     }
                     catch (Exception ex)
                     {
@@ -69,7 +69,6 @@ namespace MySystem
                     query.IsAll = 1;
                     db.MerchantParamSet.Add(query);
                     db.SaveChanges();
-                    RedisDbconn.Instance.Set("MerchantParamSet:" + MerchantId, query);
                 }
                 PxcModels.MerchantForMobile merchantForMobile = db.MerchantForMobile.FirstOrDefault(m => m.Mobile == AddInfo.MobilePhone);
                 if (merchantForMobile == null)

+ 0 - 185
AppStart/Helper/PosExpiredHelper.cs

@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using System.Linq;
-using System.Data;
-using MySystem;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-public class PosExpiredHelper
-{
-    public readonly static PosExpiredHelper Instance = new PosExpiredHelper();
-    private PosExpiredHelper()
-    {
-    }
-
-    public void Start()
-    {
-        Thread th = new Thread(DoWorks);
-        th.IsBackground = true;
-        th.Start();
-    }
-
-    private void DoWorks()
-    {
-        while (true)
-        {
-            try
-            {
-                string content = RedisDbconn.Instance.RPop<string>("PosExpiredRingQueue");
-                if(!string.IsNullOrEmpty(content))
-                {
-                    WebCMSEntities db = new WebCMSEntities();
-                    DoSomething(db);
-                    db.Dispose();
-                }
-            }
-            catch (Exception ex)
-            {
-                function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "过期机具提醒异常");
-            }
-            function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "过期机具提醒日志");
-            Thread.Sleep(60000);
-        }
-    }
-
-    public void DoSomething(WebCMSEntities db)
-    {
-        DateTime now = DateTime.Now;
-        List<int> BuyUserIds = db.PosMachinesTwo.Select(m => new { m.BuyUserId, m.RecycEndDate, m.Status, m.BindingState }).Where(m => m.RecycEndDate < now && m.Status > -1 && m.BindingState == 0).ToList().Select(m => m.BuyUserId).ToList();
-        foreach(int BuyUserId in BuyUserIds)
-        {
-            RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
-            {
-                UserId = Convert.ToInt32(BuyUserId), //创客
-                Title = "机具循环过期提醒", //标题
-                Content = "尊敬的创客您好<br />您的部分机具循环已过期,请在五日内完成激活或联系在线客服回寄该机具。", //内容
-                Summary = "尊敬的创客您好,您的部分机具循环已过期,请在五日内完成激活或联系在线客服回寄该机具。",
-                CreateDate = DateTime.Now,
-            }));
-        }
-    }
-
-
-
-
-
-    public void StartPay()
-    {
-        Thread th = new Thread(DoPay);
-        th.IsBackground = true;
-        th.Start();
-    }
-
-    private void DoPay()
-    {
-        while (true)
-        {
-            try
-            {
-                string content = RedisDbconn.Instance.RPop<string>("PosExpiredPayQueue");
-                if(!string.IsNullOrEmpty(content))
-                {
-                    WebCMSEntities db = new WebCMSEntities();
-                    using (var tran = db.Database.BeginTransaction())
-                    {
-                        try
-                        {
-                            GoPay(db, int.Parse(content));
-                            tran.Commit();
-                        }
-                        catch(Exception ex)
-                        {
-                            tran.Rollback();
-                            function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "过期机具扣费异常");
-                        }
-                    }
-                    db.Dispose();
-                }
-                else
-                {
-                    Thread.Sleep(60000);
-                }
-            }
-            catch (Exception ex)
-            {
-                function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "过期机具扣费异常");
-            }
-            function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "过期机具扣费日志");
-        }
-    }
-
-    public void GoPay(WebCMSEntities db, int UserId)
-    {
-        UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new UserAccount();
-        decimal BalanceAmount = account.BalanceAmount;
-        List<int> BrandIdList = new List<int>();
-        BrandIdList.Add(3);
-        BrandIdList.Add(5);
-        BrandIdList.Add(9);
-        BrandIdList.Add(11);
-        DateTime now = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00").AddDays(-60);
-        Dictionary<int, decimal> UserList = new Dictionary<int, decimal>();
-        var PosList = db.PosMachinesTwo.Select(m => new { m.Id, m.BuyUserId, m.RecycEndDate, m.Status, m.BindingState, m.BrandId, m.ScanQrTrade }).Where(m => m.BuyUserId == UserId && m.RecycEndDate < now && m.Status > -1 && m.BindingState == 0 && m.ScanQrTrade < 999).OrderBy(m => m.Id).ToList();
-        if(PosList.Count > 0)
-        {
-            foreach(var Pos in PosList)
-            {
-                decimal PayMoney = 200;
-                if(BrandIdList.Contains(Pos.BrandId))
-                {
-                    PayMoney = 300;
-                }
-                PayMoney -= Pos.ScanQrTrade;
-                if(BalanceAmount > 0)
-                {
-                    if(BalanceAmount > PayMoney)
-                    {
-                        if(UserList.ContainsKey(Pos.BuyUserId))
-                        {
-                            UserList[Pos.BuyUserId] += PayMoney;
-                        }
-                        else
-                        {
-                            UserList.Add(Pos.BuyUserId, PayMoney);
-                        }
-                        BalanceAmount -= PayMoney;
-                    }
-                    else
-                    {
-                        PayMoney = BalanceAmount;
-                        if(UserList.ContainsKey(Pos.BuyUserId))
-                        {
-                            UserList[Pos.BuyUserId] += PayMoney;
-                        }
-                        else
-                        {
-                            UserList.Add(Pos.BuyUserId, PayMoney);
-                        }
-                        BalanceAmount = 0;
-                    }
-                    PosMachinesTwo EditPos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Pos.Id);
-                    if(EditPos != null)
-                    {
-                        EditPos.ScanQrTrade += PayMoney;
-                        if(BrandIdList.Contains(Pos.BrandId) && EditPos.ScanQrTrade >= 300)
-                        {
-                            EditPos.ScanQrTrade = 999;
-                        }
-                        else if(!BrandIdList.Contains(Pos.BrandId) && EditPos.ScanQrTrade >= 200)
-                        {
-                            EditPos.ScanQrTrade = 999;
-                        }
-                    }
-                }
-            }
-            db.SaveChanges();
-        }
-        foreach(int UsrId in UserList.Keys)
-        {
-            AlipayPayBack2Service.Instance.ChangeAccount(db, new Orders(), UsrId, -UserList[UsrId], 124, "扣机具货款");
-        }
-    }
-}

+ 1 - 1
AppStart/Helper/ReservePayBackService.cs

@@ -59,7 +59,7 @@ namespace MySystem
                 {
                     if(account.LeaderReserve >= TotalPrice)
                     {
-                        AlipayPayBack2Service.Instance.DoOrderV2(db, OrderId);
+                        // AlipayPayBackService.Instance.DoOrder(db, OrderId);
                     }
                 }
             }

+ 0 - 61
AppStart/Helper/SycnActiveRewardService.cs

@@ -1,61 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-namespace MySystem
-{
-    public class SycnActiveRewardService
-    {
-        public readonly static SycnActiveRewardService Instance = new SycnActiveRewardService();
-        private SycnActiveRewardService()
-        { }
-
-        public void Start(JobMqMsg jobInfo)
-        {
-            string content = "";
-            try
-            {
-                string OrderString = jobInfo.OrderString;
-                if (OrderString.StartsWith("Sp:") && OrderString.EndsWith(":Sycn"))
-                {
-                    string TableName = OrderString.Split(':')[1];
-                    string Msg = "";
-                    bool op = true;
-                    while (op)
-                    {
-                        string data = RedisDbconn.Instance.RPop<string>(TableName);
-                        if(!string.IsNullOrEmpty(data))
-                        {
-                            Dictionary<string, string> dic = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(data);
-                            // ProfitHelper.Instance.StartListenActiveDo(dic);
-                        }
-                        else
-                        {
-                            op = false;
-                        }
-                    }
-                    jobInfo.Status = Msg == "success" ? 1 : 0;
-                    jobInfo.Msg = Msg == "success" ? "执行完成" : Msg;
-                    RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "SycnTableDataBack");
-                }
-            }
-            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(), "public_service");
-                }
-            }
-        }
-    }
-}

+ 0 - 68
AppStart/Helper/SycnMerchantInfoService.cs

@@ -1,68 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-namespace MySystem
-{
-    public class SycnMerchantInfoService
-    {
-        public readonly static SycnMerchantInfoService Instance = new SycnMerchantInfoService();
-        private SycnMerchantInfoService()
-        { }
-
-        public void Start(JobMqMsg jobInfo)
-        {
-            string content = "";
-            try
-            {
-                string OrderString = jobInfo.OrderString;
-                if (OrderString.StartsWith("Sp:") && OrderString.EndsWith(":Sycn"))
-                {
-                    string TableName = OrderString.Split(':')[1];
-                    string Msg = "";
-                    bool op = true;
-                    while (op)
-                    {
-                        string data = RedisDbconn.Instance.RPop<string>(TableName);
-                        if(!string.IsNullOrEmpty(data))
-                        {
-                            Dictionary<string, string> dic = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(data);
-                            if (TableName.StartsWith("kq_"))
-                            {
-                                ProfitHelper.Instance.StartListenMerchantDo(dic, true);
-                            }
-                            else
-                            { 
-                                ProfitHelper.Instance.StartListenMerchantDo(dic);
-                            }
-                        }
-                        else
-                        {
-                            op = false;
-                        }
-                    }
-                    jobInfo.Status = Msg == "success" ? 1 : 0;
-                    jobInfo.Msg = Msg == "success" ? "执行完成" : Msg;
-                    RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "SycnTableDataBack");
-                }
-            }
-            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(), "public_service");
-                }
-            }
-        }
-    }
-}

+ 0 - 96
AppStart/Helper/SycnSpServer/SycnSpActiveService.cs

@@ -1,96 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpActiveService
-    {
-        public readonly static SycnSpActiveService Instance = new SycnSpActiveService();
-        private SycnSpActiveService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    string Month = DateTime.Now.ToString("yyyyMM");
-                    string Date = DateTime.Now.ToString("yyyyMMdd");
-                    DateTime start = DateTime.Now.AddDays(-5);
-                    int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/ActivateRecordId.txt")));
-                    IQueryable<ActivateRecord> acts = spdb.ActivateRecord.Where(m => m.Id >= StartId && m.ActivateDate >= start && m.Status == 1).OrderByDescending(m => m.Id);
-                    foreach (ActivateRecord act in acts.ToList())
-                    {
-                        bool op = false;
-                        if (act.ActivateStatus == "00" && act.ProductType == "1")
-                        {
-                            op = true;
-                        }
-                        else if (act.ProductType == "2" || act.ProductType == "4" || act.ProductType == "6" || act.ProductType == "7" || act.ProductType == "8" || act.ProductType == "9")
-                        {
-                            op = true;
-                        }
-                        if (op)
-                        {
-                            PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == act.MerNo) ?? new PxcModels.MachineForMerNo();
-                            PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                            if (pos != null)
-                            {
-                                // pos.ActivationState = 1;
-                                // pos.ActivationTime = DateTime.Now;
-                                if (pos.BrandId == 2 || pos.BrandId == 4 || pos.BrandId == 5 || pos.BrandId == 6 || pos.BrandId == 7 || pos.BrandId == 8 || pos.BrandId == 9)
-                                {
-                                    pos.SeoKeyword = act.SeoTitle;
-                                    // pos.IsPurchase = 0;
-                                    db.SaveChanges();
-                                }
-
-                                ActivateRecord edit = spdb.ActivateRecord.FirstOrDefault(m => m.Id == act.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                }
-
-                                // 激活奖励
-                                // ProfitHelper.Instance.StartListenActiveDo(pos);
-                            }
-                            pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId && m.ActivationState == 1);
-                            if (pos != null)
-                            {
-                                ActivateRecord edit = spdb.ActivateRecord.FirstOrDefault(m => m.Id == act.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                }
-                            }
-                        }
-                    }
-                    spdb.SaveChanges();
-                    spdb.Dispose();
-                    db.SaveChanges();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP激活数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 202
AppStart/Helper/SycnSpServer/SycnSpBindService.cs

@@ -1,202 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpBindService
-    {
-        public readonly static SycnSpBindService Instance = new SycnSpBindService();
-        private SycnSpBindService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    DateTime start = DateTime.Now.AddDays(-5);
-                    int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/BindRecordId.txt")));
-                    var Binds = spdb.BindRecord.Select(m => new { m.Id, m.CreateTime, m.Status, m.MerNo, m.MerSnNo, m.ProductType, m.Field1 }).Where(m => m.Id >= StartId && m.CreateTime >= start && m.Status == 1).OrderByDescending(m => m.Id).ToList();
-                    foreach (var Bind in Binds)
-                    {
-                        var tran = db.Database.BeginTransaction();
-                        try
-                        {
-                            if(Bind.Field1 == "解绑" && Bind.ProductType == "1")
-                            {
-                                // string PosSn = Bind.MerSnNo;
-                                // string MerNo = Bind.MerNo;
-                                // PxcModels.MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn);
-                                // PxcModels.MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == MerNo);
-                                // PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId);
-                                // if (pos.ActivationState == 0 && pos.BuyUserId > 0 && pos.BindingState == 0)
-                                // {
-                                //     if (forMerNo != null)
-                                //     {
-                                //         db.MachineForMerNo.Remove(forMerNo);
-                                //         db.SaveChanges();
-                                //     }
-                                //     db.MachineUnBind.Add(new PxcModels.MachineUnBind()
-                                //     {
-                                //         CreateDate = DateTime.Now,
-                                //         MerchantId = pos.BindMerchantId,
-                                //         AuditDate = DateTime.Now,
-                                //         AuditDesc = "金控推送解绑",
-                                //         AuditStatus = 1,
-                                //         SnNo = pos.PosSn,
-                                //         BrandId = pos.BrandId,
-                                //         UserId = pos.BuyUserId,
-                                //         ApplyNo = "U" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8),
-                                //     });
-                                //     pos.BindMerchantId = 0;
-                                //     pos.BindingState = 0;
-                                //     pos.BindingTime = DateTime.Parse("1900-01-01");
-                                //     pos.UserId = pos.BuyUserId;
-                                //     string IdBrand = pos.BuyUserId + "_" + pos.BrandId;
-                                //     PxcModels.UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
-                                //     if (userData == null)
-                                //     {
-                                //         userData = db.UserMachineData.Add(new PxcModels.UserMachineData()
-                                //         {
-                                //             IdBrand = IdBrand,
-                                //         }).Entity;
-                                //         db.SaveChanges();
-                                //     }
-                                //     userData.BindCount -= 1;
-                                //     userData.UnBindCount += 1;
-                                //     db.SaveChanges();
-
-                                //     BindRecord edit = spdb.BindRecord.FirstOrDefault(m => m.Id == Bind.Id);
-                                //     if (edit != null)
-                                //     {
-                                //         edit.Status = 2;
-                                //         spdb.SaveChanges();
-                                //     }
-                                // }
-
-                                // 删除对应商户
-                                PxcModels.MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Bind.MerNo);
-                                if (forMerNo != null)
-                                {
-                                    db.MachineForMerNo.Remove(forMerNo);
-                                    db.SaveChanges();
-                                }
-                                PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == Bind.MerSnNo) ?? new PxcModels.PosMachinesTwo();
-                                PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
-                                if(merchant != null)
-                                {
-                                    //备份解绑的商户信息
-                                    CustomerSqlConn.op("insert into PosMerchantInfoBak select * from PosMerchantInfo where Id=" + pos.BindMerchantId, MysqlConn.SqlConnStr);
-                                    db.SaveChanges();
-                                    pos.BindMerchantId = 0;
-                                    pos.BindingState = 0;
-                                    pos.BindingTime = null;
-                                    db.PosMerchantInfo.Remove(merchant);
-                                    db.SaveChanges();
-                                }
-
-                                string IdBrand = pos.BuyUserId + "_" + pos.BrandId;
-                                PxcModels.UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
-                                if (userData == null)
-                                {
-                                    userData = db.UserMachineData.Add(new PxcModels.UserMachineData()
-                                    {
-                                        IdBrand = IdBrand,
-                                    }).Entity;
-                                    db.SaveChanges();
-                                }
-                                userData.BindCount -= 1;
-                                userData.UnBindCount += 1;
-                                db.SaveChanges();
-
-                                BindRecord edit = spdb.BindRecord.FirstOrDefault(m => m.Id == Bind.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                    spdb.SaveChanges();
-                                }
-                            }
-                            else
-                            {
-                                PxcModels.MachineForSnNo posFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == Bind.MerSnNo) ?? new PxcModels.MachineForSnNo();
-                                PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                                if (pos != null)
-                                {
-                                    pos.BindingState = 1;
-                                    pos.BindingTime = Bind.CreateTime;
-                                    pos.Status = 0;
-                                    PxcModels.MachineForMerNo merFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Bind.MerNo);
-                                    if (merFor == null)
-                                    {
-                                        merFor = db.MachineForMerNo.Add(new PxcModels.MachineForMerNo()
-                                        {
-                                            MerNo = Bind.MerNo,
-                                            SnId = pos.Id,
-                                        }).Entity;
-                                    }
-                                    else
-                                    {
-                                        merFor.SnId = pos.Id;
-                                    }
-                                    db.SaveChanges();
-
-                                    BindRecord edit = spdb.BindRecord.FirstOrDefault(m => m.Id == Bind.Id);
-                                    if (edit != null)
-                                    {
-                                        edit.Status = 2;
-                                        spdb.SaveChanges();
-                                    }
-
-                                    string IdBrand = pos.UserId + "_" + pos.BrandId;
-                                    PxcModels.UserMachineData MachineData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
-                                    if (MachineData == null)
-                                    {
-                                        MachineData = db.UserMachineData.Add(new PxcModels.UserMachineData()
-                                        {
-                                            IdBrand = IdBrand,
-                                        }).Entity;
-                                        db.SaveChanges();
-                                    }
-                                    MachineData.BindCount += 1;
-                                    MachineData.UnBindCount -= 1;
-                                    db.SaveChanges();
-                                }
-                            }
-                            tran.Commit();
-                        }
-                        catch (Exception ex)
-                        {
-                            tran.Rollback();
-                            function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Bind.Id, "同步SP绑定数据到MAIN异常");
-                        }
-                        tran.Dispose();
-                    }
-                    spdb.SaveChanges();
-                    spdb.Dispose();
-                    db.SaveChanges();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP绑定数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 164
AppStart/Helper/SycnSpServer/SycnSpChangeBindService.cs

@@ -1,164 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpChangeBindService
-    {
-        public readonly static SycnSpChangeBindService Instance = new SycnSpChangeBindService();
-        private SycnSpChangeBindService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    DateTime start = DateTime.Now.AddDays(-30);
-                    List<ChangeBindRecord> Binds = spdb.ChangeBindRecord.Where(m => m.ReBindTime >= start && m.Status == 1).OrderByDescending(m => m.Id).ToList();
-                    foreach (ChangeBindRecord Bind in Binds)
-                    {
-                        var tran = db.Database.BeginTransaction();
-                        try
-                        {
-                            string OldSnNum = Bind.MerSnNo;
-                            string NewSnNum = Bind.MerNewSnNo;
-                            string MerNo = Bind.MerNo;
-                            PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == MerNo) ?? new PxcModels.PosMerchantInfo();
-                            PxcModels.MachineForSnNo oldForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == OldSnNum) ?? new PxcModels.MachineForSnNo();
-                            PxcModels.MachineForSnNo newForSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == NewSnNum) ?? new PxcModels.MachineForSnNo();
-                            PxcModels.PosMachinesTwo oldpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldForSnNo.SnId);
-                            PxcModels.PosMachinesTwo newpos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == newForSnNo.SnId);
-                            PxcModels.StoreHouse BackStore = db.StoreHouse.FirstOrDefault(m => m.Id == oldpos.StoreId) ?? new PxcModels.StoreHouse();
-                            PxcModels.StoreHouse OutStore = db.StoreHouse.FirstOrDefault(m => m.Id == newpos.StoreId) ?? new PxcModels.StoreHouse();
-                            string ChangeNo = "BMC" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(3);
-                            PxcModels.MachineChange add = db.MachineChange.Add(new PxcModels.MachineChange()
-                            {
-                                CreateDate = DateTime.Now,
-                                UpdateDate = DateTime.Now,
-                                ChangeNo = ChangeNo, //转换单号
-                                UserId = 0, //创客
-                                ChangeTime = DateTime.Now, //转换时间
-                                BackStoreId = BackStore.Id, //退回仓库
-                                BackStoreName = BackStore.StoreName, //退回仓库名称
-                                Remark = "机具更换", //订单备注
-                                BackStoreUserId = BackStore.UserId, //退回仓库归属人
-                                OutProductType = int.Parse(OutStore.BrandId), //出库产品类型
-                                OutProductName = OutStore.ProductName, //出库产品名称
-                                OutStoreId = OutStore.Id, //出库仓库
-                                OutStoreName = OutStore.StoreName, //出库仓库名称
-                                OutStoreAreas = OutStore.Areas, //出库仓库所在地区
-                                OutStoreAddress = OutStore.Address, //出库仓库地址
-                                OutStoreManager = "", //出库仓库联系人
-                                OutStoreManagerMobile = OutStore.ManageMobile, //出库仓库联系人手机号
-                            }).Entity;
-                            db.SaveChanges();
-                            int BackProductType = 0;
-                            string BackProductName = "";
-                            string ChangeDeviceName = "";
-                            string ChangeSnExpand = "";
-                            PxcModels.KqProducts oldPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == oldpos.BrandId) ?? new PxcModels.KqProducts();
-                            PxcModels.KqProducts newPosBrand = db.KqProducts.FirstOrDefault(m => m.Id == newpos.BrandId) ?? new PxcModels.KqProducts();
-                            newpos.BindMerchantId = merchant.Id;
-                            newpos.BuyUserId = oldpos.BuyUserId;
-                            newpos.UserId = oldpos.UserId;
-                            newpos.RecycEndDate = oldpos.RecycEndDate;
-                            newpos.ScanQrTrade = oldpos.ScanQrTrade;
-                            newpos.DebitCardTrade = oldpos.DebitCardTrade;
-                            newpos.CreditTrade = oldpos.CreditTrade;
-                            newpos.PosSnType = oldpos.PosSnType;
-                            newpos.TransferTime = oldpos.TransferTime;
-                            newpos.IsPurchase = oldpos.IsPurchase;
-                            newpos.BindingState = oldpos.BindingState;
-                            newpos.ActivationState = oldpos.ActivationState;
-                            newpos.BindingTime = oldpos.BindingTime;
-                            newpos.ActivationTime = oldpos.ActivationTime;
-                            newpos.IsFirst = oldpos.IsFirst;
-                            // bool checkActReward = db.ActiveReward.Any(m => m.KqMerNo == merchant.KqMerNo);
-                            // if (!checkActReward)
-                            // {
-                            newpos.SeoKeyword = oldpos.SeoKeyword;
-                            newpos.PrizeParams = oldpos.PrizeParams;
-                            newpos.LeaderUserId= oldpos.LeaderUserId;
-                            // }
-                            // oldpos.BuyUserId = 0;
-                            // oldpos.UserId = 0;
-                            oldpos.Status = -1;
-                            PxcModels.MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == merchant.KqMerNo);
-                            if (forMerNo != null)
-                            {
-                                forMerNo.SnId = newpos.Id;
-                            }
-                            merchant.KqSnNo = NewSnNum;
-                            db.MachineChangeDetail.Add(new PxcModels.MachineChangeDetail()
-                            {
-                                CreateDate = DateTime.Now,
-                                UpdateDate = DateTime.Now,
-                                ChangeNo = ChangeNo, //订单号
-                                ChangeId = add.Id, //订单Id
-                                BackProductType = oldpos.BrandId, //退回产品类型
-                                BackProductName = oldPosBrand.Name, //退回产品名称
-                                UserId = 0, //创客
-                                BackSnNo = oldpos.PosSn, //设备SN编号
-                                OutProductType = newpos.BrandId, //出库产品类型
-                                OutProductName = newPosBrand.Name, //出库产品名称
-                                OutSnNo = newpos.PosSn, //出库设备SN编号
-                                OutSnType = newpos.PosSnType, //出库SN机具类型
-                                Remark = "机具更换", //备注
-                                BackSnType = oldpos.PosSnType, //退回SN机具类型
-                            });
-                            db.SaveChanges();
-                            BackProductType = oldpos.BrandId;
-                            BackProductName = newPosBrand.Name;
-                            ChangeDeviceName = oldpos.DeviceName;
-                            ChangeSnExpand = oldpos.PosSn;                            
-                            add.BackProductType = BackProductType; //退回产品类型
-                            add.BackProductName = BackProductName; //退回产品名称
-                            add.ChangeDeviceName = ChangeDeviceName; //转换机具名称
-                            add.ChangeDeviceNum = 1; //转换机具数量
-                            add.ChangeSnExpand = ChangeSnExpand; //机具SN
-                            db.SaveChanges();
-
-                            ChangeBindRecord edit = spdb.ChangeBindRecord.FirstOrDefault(m => m.Id == Bind.Id);
-                            if (edit != null)
-                            {
-                                edit.Status = 2;
-                                spdb.SaveChanges();
-                            }
-
-                            tran.Commit();
-                        }
-                        catch (Exception ex)
-                        {
-                            tran.Rollback();
-                            function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Bind.Id, "同步SP换绑数据到MAIN异常");
-                        }
-                        tran.Dispose();
-                    }
-                    spdb.Dispose();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP换绑数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 170
AppStart/Helper/SycnSpServer/SycnSpMerchantService.cs

@@ -1,170 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpMerchantService
-    {
-        public readonly static SycnSpMerchantService Instance = new SycnSpMerchantService();
-        private SycnSpMerchantService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    DateTime start = DateTime.Now.AddDays(-5);
-                    int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/MerchantsId.txt")));
-                    var Mers = spdb.Merchants.Where(m => m.Id >= StartId && m.CreateTime >= start && m.Status == 1).OrderByDescending(m => m.Id).ToList();
-                    foreach (var Mer in Mers)
-                    {
-                        var tran = db.Database.BeginTransaction();
-                        try
-                        {
-                            // PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Mer.MerNo) ?? new PxcModels.MachineForMerNo();
-                            PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == Mer.SnNo) ?? new PxcModels.PosMachinesTwo();
-                            if (pos.BindingState == 1 && Mer.Field2 != "解绑")
-                            {
-                                PxcModels.Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new PxcModels.Users();
-                                int TopUserId = 0;
-                                if (!string.IsNullOrEmpty(user.ParentNav))
-                                {
-                                    TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
-                                }
-                                int BrandId = pos.BrandId;
-
-                                PxcModels.PosMerchantInfo add = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == Mer.MerNo);
-                                if (add == null)
-                                {
-                                    int IsFirst = 1;
-                                    if(!string.IsNullOrEmpty(Mer.MerIdcardNo))
-                                    {
-                                        string startNo = Mer.MerIdcardNo.Substring(0, 6);
-                                        string endNo = Mer.MerIdcardNo.Substring(Mer.MerIdcardNo.Length - 4, 4).ToUpper();
-                                        string Name = Mer.MerName;
-                                        if (Mer.ProductType == "2")
-                                        {
-                                            if (Name.Contains("-"))
-                                            {
-                                                Name = Name.Split('-')[1];
-                                            }
-                                            else if (Name.Contains("_"))
-                                            {
-                                                Name = Name.Split('_')[1];
-                                            }
-                                        }
-                                        else if (Mer.ProductType == "4" || Mer.ProductType == "8" || Mer.ProductType == "9")
-                                        {
-                                            Name = Mer.SeoTitle;
-                                        }
-                                        else if (Mer.ProductType == "10")
-                                        {
-                                            Name = Name.Replace("*", "");
-                                        }
-                                        Name = Name.Replace("个体户", "");
-                                        Name = Name.Replace("个体商户", "");
-                                        Name = Name.Replace("企业户", "");
-                                        Name = Name.Replace("企业商户", "");
-                                        function.WriteLog(DateTime.Now.ToString() + "-----startNo:" + startNo + ",endNo:" + endNo + ",Name:" + Name, "监控机具是否互斥");
-                                        bool check = db.PosMerchantInfo.Any(m => m.MerIdcardNo.StartsWith(startNo) && m.MerIdcardNo.EndsWith(endNo) && m.MerchantName.Contains(Name));
-                                        if(check)
-                                        {
-                                            IsFirst = 0;
-                                        }
-                                    }
-                                    pos.IsFirst = IsFirst;
-                                    add = db.PosMerchantInfo.Add(new PxcModels.PosMerchantInfo()
-                                    {
-                                        CreateDate = Mer.CreateTime,
-                                        KqMerNo = Mer.MerNo,
-                                        MerchantNo = Mer.MerNo,
-                                    }).Entity;
-                                    db.SaveChanges();
-                                    function.WriteLog("MerNo:" + Mer.MerNo + ",PosSn:" + pos.PosSn + ",IsFirst:" + IsFirst + "\n\n", "监控机具是否互斥");
-                                }
-                                // else
-                                // {
-                                //     string SnNo = add.KqSnNo;
-                                //     PxcModels.MachineForMerNo oldPosFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == SnNo) ?? new PxcModels.MachineForMerNo();
-                                //     PxcModels.PosMachinesTwo oldPos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldPosFor.SnId) ?? new PxcModels.PosMachinesTwo();
-                                //     pos.IsFirst = oldPos.IsFirst;
-                                // }
-                                add.UpdateDate = Mer.UpdateTime;
-                                add.TopUserId = TopUserId;
-                                add.BrandId = BrandId;
-                                add.SnStoreId = pos.StoreId;
-                                add.SnType = pos.PosSnType;
-                                add.UserId = pos.UserId;
-                                add.MgrName = Mer.AgentName;
-                                add.MerStatus = 1;
-                                add.KqSnNo = Mer.SnNo;
-                                add.MerIdcardNo = function.CheckNull(Mer.MerIdcardNo).ToUpper();
-                                add.MerRealName = Mer.MerRealName;
-                                add.MerchantMobile = Mer.MerMobile;
-                                add.MerchantName = Mer.MerName;
-                                pos.BindMerchantId = add.Id;
-                                db.SaveChanges();
-                                PxcModels.Users buser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new PxcModels.Users();
-                                if(buser.BusinessFlag == 1)
-                                {
-                                    bool checkMer = db.BusinessPartnerMerchant.Any(m => m.MerchantId == add.Id);
-                                    if(!checkMer)
-                                    {
-                                        PxcModels.BusinessPartnerPos bpos = db.BusinessPartnerPos.FirstOrDefault(m => m.PosId == pos.Id) ?? new PxcModels.BusinessPartnerPos();
-                                        db.BusinessPartnerMerchant.Add(new PxcModels.BusinessPartnerMerchant()
-                                        {
-                                            CreateDate = DateTime.Now,
-                                            MerNo = Mer.MerNo,
-                                            MerchantId = add.Id,
-                                            PartnerId = bpos.PartnerId,
-                                            UserId = pos.BuyUserId,
-                                        });
-                                        db.SaveChanges();
-                                    }
-                                }
-                                Merchants edit = spdb.Merchants.FirstOrDefault(m => m.Id == Mer.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                    spdb.SaveChanges();
-                                }
-                                tran.Commit();
-                            }
-                        }
-                        catch (Exception ex)
-                        {
-                            tran.Rollback();
-                            function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Mer.Id, "同步SP商户数据到MAIN异常");
-                        }
-                        tran.Dispose();
-                    }
-                    spdb.SaveChanges();
-                    spdb.Dispose();
-                    db.SaveChanges();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP商户数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 56
AppStart/Helper/SycnSpServer/SycnSpService.cs

@@ -1,56 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-namespace MySystem
-{
-    public class SycnSpService
-    {
-        public readonly static SycnSpService Instance = new SycnSpService();
-        private SycnSpService()
-        { }
-
-        public void Start(JobMqMsg jobInfo)
-        {
-            try
-            {
-                string OrderString = jobInfo.OrderString;
-                if (OrderString.StartsWith("Sp:") && OrderString.EndsWith(":SpServer"))
-                {
-                    string Kind = OrderString.Split(':')[1];
-                    dosomething(Kind);
-                    // jobInfo.Status = 1;
-                    // jobInfo.Msg = "执行完成";
-                    // RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "SycnSpServerBack");
-                }
-            }
-            catch (Exception ex)
-            {
-                function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "同步SP数据到MAIN异常");
-            }
-        }
-
-        public void dosomething(string Kind)
-        { 
-            // if (Kind == "bind")
-            // {
-            //     SycnSpBindService.Instance.Start();
-            // }
-            // else if (Kind == "active")
-            // { 
-            //     SycnSpActiveService.Instance.Start();
-            // }
-            // else if (Kind == "trade")
-            // { 
-            //     SycnSpTradeService.Instance.Start();
-            // }
-            // else if (Kind == "merchant")
-            // { 
-            //     SycnSpMerchantService.Instance.Start();
-            // }
-        }
-    }
-}

+ 0 - 445
AppStart/Helper/SycnSpServer/SycnSpTradeService.cs

@@ -1,445 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpTradeService
-    {
-        public readonly static SycnSpTradeService Instance = new SycnSpTradeService();
-        private SycnSpTradeService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    DateTime start = DateTime.Now.AddDays(-10);
-                    int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/TradeRecordId.txt")));
-                    IQueryable<TradeRecord> trades = spdb.TradeRecord.Where(m => m.Id >= StartId && m.CreateDate >= start && m.Status == 1).OrderBy(m => m.CreateDate);
-                    foreach (TradeRecord trade in trades.ToList())
-                    {
-                        bool op = true;
-                        if (trade.SerEntryMode == "N" && trade.ProductType == "1") //金控押金获取
-                        {
-                            if (trade.TradeAmount == 9900 || trade.TradeAmount == 19900 || trade.TradeAmount == 29900)
-                            {
-                                op = false;
-                                PxcModels.MachineForSnNo posFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == trade.TradeSnNo) ?? new PxcModels.MachineForSnNo();
-                                PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                                if (pos != null)
-                                {
-                                    pos.SeoKeyword = trade.TradeAmount.ToString("f2");
-                                    // pos.IsPurchase = 0;
-                                    db.SaveChanges();
-                                }
-                                TradeRecord edit = spdb.TradeRecord.FirstOrDefault(m => m.Id == trade.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                }
-                                spdb.SaveChanges();
-                            }
-                        }
-                        else if (trade.SerEntryMode == "1" && trade.ProductType == "10") //联动押金获取
-                        {
-                            if (trade.TradeAmount == 99 || trade.TradeAmount == 199 || trade.TradeAmount == 299)
-                            {
-                                op = false;
-                                PxcModels.MachineForSnNo posFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == trade.TradeSnNo) ?? new PxcModels.MachineForSnNo();
-                                PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                                if (pos != null)
-                                {
-                                    pos.SeoKeyword = trade.TradeAmount.ToString("f2");
-                                    db.SaveChanges();
-                                }
-                                TradeRecord edit = spdb.TradeRecord.FirstOrDefault(m => m.Id == trade.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                }
-                                spdb.SaveChanges();
-                            }
-                        }
-                        if (trade.DiscountRateFlag == "True")
-                        {
-                            op = false;
-                            TradeRecord edit = spdb.TradeRecord.FirstOrDefault(m => m.Id == trade.Id);
-                            if (edit != null)
-                            {
-                                edit.Status = 2;
-                            }
-                            spdb.SaveChanges();
-                        }
-                        if(trade.ProductType == "7" && trade.TradeStatus != "00")
-                        {
-                            op = false;
-                            TradeRecord edit = spdb.TradeRecord.FirstOrDefault(m => m.Id == trade.Id);
-                            if (edit != null)
-                            {
-                                edit.Status = 2;
-                            }
-                            spdb.SaveChanges();
-                        }
-                        if (op)
-                        {
-                            PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == trade.MerNo) ?? new PxcModels.MachineForMerNo();
-                            PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                            if (pos != null)
-                            {
-                                if (pos.BindMerchantId > 0)
-                                {
-                                    PxcModels.Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new PxcModels.Users();
-                                    int TopUserId = 0;
-                                    if (!string.IsNullOrEmpty(user.ParentNav))
-                                    {
-                                        TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
-                                    }
-                                    bool check = db.SpOrderNos.Any(m => m.OrderNo == trade.TradeSerialNo);
-                                    if (!check)
-                                    {
-                                        decimal TradeAmount = trade.TradeAmount;
-                                        int BankCardType = -1;
-                                        int QrPayFlag = 0;
-                                        int VipFlag = 0;
-                                        int PayType = 0;
-                                        if (pos.BrandId == 1 || pos.BrandId == 3)
-                                        {
-                                            TradeAmount = TradeAmount / 100;
-                                            BankCardType = int.Parse(trade.BankCardType);
-                                            if (trade.TradeType == "02") QrPayFlag = 1;
-                                            else if (trade.TradeType == "NQ") PayType = 1;
-                                            if (trade.SettleMethod == "E") VipFlag = 1;
-                                        }
-                                        else if (pos.BrandId == 2)
-                                        {
-                                            if (trade.TradeType == "DEBIT_BY_CARD")
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                            else
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                            if (trade.TradeType == "CLOUD_PAY") QrPayFlag = 1;
-                                        }
-                                        else if (pos.BrandId == 4 || pos.BrandId == 5)
-                                        {
-                                            TradeAmount = TradeAmount / 100;
-                                            if (trade.BankCardType == "100")
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                            else if (trade.BankCardType == "200")
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                            if (trade.TradeType == "200") QrPayFlag = 1;
-                                            if (trade.Field1 == "1") VipFlag = 1;
-                                        }
-                                        else if (pos.BrandId == 6)
-                                        {
-                                            TradeAmount = TradeAmount / 100;
-                                            if (trade.BankCardType == "01" || trade.BankCardType == "11")
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                            else
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                        }
-                                        else if (pos.BrandId == 7)
-                                        {
-                                            TradeAmount = TradeAmount / 100;
-                                            if (trade.BankCardType == "OA" || trade.BankCardType == "CC" || trade.BankCardType == "SCC")
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                            else
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                        }
-                                        else if (pos.BrandId == 8 || pos.BrandId == 9)
-                                        {
-                                            TradeAmount = TradeAmount / 100;
-                                            if (trade.BankCardType == "100")
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                            else if (trade.BankCardType == "200")
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                            if (trade.TradeType == "200") QrPayFlag = 1;
-                                            if (trade.Field1 == "1") VipFlag = 1;
-                                        }
-                                        else if (pos.BrandId == 10 || pos.BrandId == 11)
-                                        {
-                                            if (trade.BankCardType == "01")
-                                            {
-                                                BankCardType = 1;
-                                            }
-                                            else if (trade.BankCardType == "00")
-                                            {
-                                                BankCardType = 0;
-                                            }
-                                            if (trade.TradeType == "F010") QrPayFlag = 1;
-                                            PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
-                                            if(merchant != null)
-                                            {
-                                                if(string.IsNullOrEmpty(merchant.MerIdcardNo) && !string.IsNullOrEmpty(trade.Field2))
-                                                {
-                                                    merchant.MerIdcardNo = trade.Field2.ToUpper(); //商户身份证号
-                                                }
-                                                if(!string.IsNullOrEmpty(trade.Field1))
-                                                {
-                                                    merchant.MerchantMobile = trade.Field1; //商户手机号
-                                                }
-                                                if(!string.IsNullOrEmpty(merchant.MerIdcardNo))
-                                                {
-                                                    string startNo = merchant.MerIdcardNo.Substring(0, 6);
-                                                    string endNo = merchant.MerIdcardNo.Substring(merchant.MerIdcardNo.Length - 4, 4).ToUpper();
-                                                    string Name = merchant.MerchantName;
-                                                    Name = Name.Replace("*", "");
-                                                    function.WriteLog(DateTime.Now.ToString() + "-----startNo:" + startNo + ",endNo:" + endNo + ",Name:" + Name, "监控机具是否互斥");
-                                                    bool chk = db.PosMerchantInfo.Any(m => m.MerIdcardNo.StartsWith(startNo) && m.MerIdcardNo.EndsWith(endNo) && m.MerchantName.Contains(Name));
-                                                    if(chk)
-                                                    {
-                                                        pos.IsFirst = 0;
-                                                    }
-                                                }
-                                                db.SaveChanges();
-                                            }
-                                        }
-                                        int BrandId = pos.BrandId;
-                                        // int BrandId = int.Parse(trade.ProductType);
-                                        // if (BrandId == 1 && trade.MerNo.StartsWith("M900"))
-                                        // {
-                                        //     BrandId = 3;
-                                        // }
-                                        // if (BrandId == 4 && trade.DeviceType == "200")
-                                        // {
-                                        //     BrandId = 5;
-                                        // }
-                                        decimal SourceTradeAmount = TradeAmount;
-                                        if (pos.Sort == 0 && pos.BrandId == 7)
-                                        {
-                                            decimal deposit = decimal.Parse(function.CheckNum(pos.SeoKeyword));
-                                            if (deposit > 0)
-                                            {
-                                                TradeAmount -= deposit;
-                                                pos.Sort = 1;
-                                            }
-                                        }
-                                        decimal CheckMoney = 1000;
-                                        int CheckDays = 30;
-                                        if (pos.BrandId == 6)
-                                        {
-                                            CheckMoney = 5000;
-                                        }
-                                        //联动
-                                        if(BankCardType == 1 && trade.TradeType == "M015" && (pos.BrandId == 10 || pos.BrandId == 11))
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        //金控
-                                        else if((BankCardType == 1 || BankCardType == 2) && (pos.BrandId == 1 || pos.BrandId == 3))
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        //开店宝
-                                        else if (BankCardType == 1 && pos.BrandId == 2)
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        //乐刷or海科
-                                        else if (BankCardType == 1 && (trade.TradeType == "100" || trade.TradeType == "200") && (pos.BrandId == 4 || pos.BrandId == 5 || pos.BrandId == 8 || pos.BrandId == 9))
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        //立刷
-                                        else if(BankCardType == 1 && trade.Field2 == "0104" && pos.BrandId == 6)
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        //盛付通
-                                        else if(BankCardType == 1 && trade.TradeType == "PUR" && pos.BrandId == 7)
-                                        {
-                                            pos.CreditTrade += SourceTradeAmount;
-                                        }
-                                        else if (BankCardType == 0)
-                                        {
-                                            pos.DebitCardTrade += TradeAmount;
-                                        }
-                                        //判断激活条件并激活
-                                        if (pos.CreditTrade >= CheckMoney && pos.ActivationState == 0 && pos.TransferTime < pos.BindingTime && pos.BindingTime > DateTime.Now.AddDays(-CheckDays))
-                                        {
-                                            pos.ActivationState = 1;
-                                            pos.ActivationTime = DateTime.Now;
-                                            PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
-                                            if (merchant != null)
-                                            {
-                                                merchant.ActiveStatus = 1;
-                                                merchant.MerStandardDate = DateTime.Now;
-                                                db.SaveChanges();
-
-                                                // 推荐王逻辑(激活)
-                                                string SendData = "{\"Kind\":\"3\",\"Data\":{\"UserId\":\"" + pos.BuyUserId + "\",\"PosId\":\"" + pos.Id + "\",\"TradeMonth\":\"" + DateTime.Now.ToString("yyyyMM") + "\"}}";
-                                                RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
-
-                                                //发放开机奖励
-                                                if(pos.IsFirst == 1)
-                                                {
-                                                    RedisDbconn.Instance.AddList("OpenRewardQueue", pos.Id.ToString());
-                                                }
-                                            }
-                                            //发放大盟主奖励
-                                            if(pos.LeaderUserId > 0)
-                                            {
-                                                RedisDbconn.Instance.AddList("LeaderPrizeQueue", pos.Id);
-                                            }
-                                            //发放运营中心奖励
-                                            RedisDbconn.Instance.AddList("OperatePrizeQueue", pos.Id);
-                                            AlipayPayBack2Service.Instance.ActReserveBack(pos.OpId, pos.OpReserve1, pos.OpReserve2, pos.OpReserve3);
-                                        }
-                                        if (TradeAmount > 0)
-                                        {
-                                            ulong MerHelpFlag = 0;
-                                            decimal DepositAmt = decimal.Parse(function.CheckNum(pos.SeoKeyword));
-                                            if (pos.DownFeeFlag == 1)
-                                            {
-                                                MerHelpFlag = 2;
-                                            }
-                                            else if (DepositAmt > 0 && pos.IsFirst == 1)
-                                            {
-                                                string DayString = RedisDbconn.Instance.Get<string>("pobjrule:" + pos.BrandId + ":HelpPolicy:Days");
-                                                int Days = int.Parse(DayString); //天数
-                                                if (pos.BindingTime != null)
-                                                {
-                                                    if (pos.BindingTime.Value.AddDays(Days) > DateTime.Now)
-                                                    {
-                                                        MerHelpFlag = 1;
-                                                    }
-                                                }
-                                            }
-                                            if((pos.BrandId == 10 || pos.BrandId == 11) && trade.TradeType == "T015" && MerHelpFlag == 1)
-                                            {
-                                                MerHelpFlag = 0;
-                                            }
-                                            int CapFlag = 0;
-                                            if(BankCardType == 0 && TradeAmount >= 1666.67M)
-                                            {
-                                                CapFlag = 1;
-                                            }
-                                            string HelpProfitFlag = "";
-                                            bool checkHelpProfit = db.HelpProfitMerchantForUser.Any(m => m.MerchantId == pos.BindMerchantId);
-                                            if(checkHelpProfit)
-                                            {
-                                                HelpProfitFlag = "HelpProfit";
-                                            }
-                                            db.TradeRecord.Add(new PxcModels.TradeRecord()
-                                            {
-                                                ParentNav = user.ParentNav,
-                                                CreateDate = trade.CreateDate,
-                                                UpdateDate = trade.UpdateDate,
-                                                RecordNo = trade.TradeSerialNo, //单号
-                                                UserId = pos.UserId, //创客
-                                                MerchantId = pos.BindMerchantId, //商户
-                                                MerNo = trade.MerNo, //渠道商户编号
-                                                MerHelpFlag = MerHelpFlag, //1扶持周,0稳定期,2盈利期
-                                                HelpMonthCount = 0, //扶持第几个月
-                                                MerBuddyType = user.MerchantType, //商户创客类型
-                                                SnNo = trade.TradeSnNo, //渠道SN号
-                                                TradeSerialNo = trade.ChannelSerial, //交易流水号
-                                                TradeAmount = TradeAmount, //交易金额
-                                                BankCardType = BankCardType, //银行卡类型
-                                                QrPayFlag = QrPayFlag, //云闪付标识
-                                                CapFlag = CapFlag, //借记卡是否封顶
-                                                VipFlag = VipFlag, //会员标记
-                                                PayType = PayType, //支付方式
-                                                BrandId = BrandId, //品牌
-                                                Remark = trade.Remark, //备注
-                                                TopUserId = TopUserId, //顶级创客
-                                                MerUserId = pos.UserId, //商户直属创客
-                                                SeoTitle = HelpProfitFlag,
-                                                Version = MerHelpFlag == 2 ? 1 : 0,
-                                                ActStatus = pos.ActivationState,
-                                            });
-                                        }
-                                        // 立刷60天内刷满10000,再返40
-                                        if (pos.BrandId == 6 && decimal.Parse(function.CheckNum(pos.SeoKeyword)) > 0 && pos.ActivationState == 1 && pos.CreditTrade >= 10000 && pos.BindingTime > DateTime.Now.AddDays(-60))
-                                        {
-                                            // PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId && m.Sort == 1);
-                                            PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
-                                            if(merchant != null)
-                                            {
-                                                PxcModels.Users getUser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new PxcModels.Users();
-                                                int BuyTopUserId = 0;
-                                                string ParentNav = getUser.ParentNav;
-                                                if (!string.IsNullOrEmpty(ParentNav))
-                                                {
-                                                    string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
-                                                    if (ParentNavList.Length > 1)
-                                                    {
-                                                        BuyTopUserId = int.Parse(ParentNavList[1]);
-                                                    }
-                                                    else if (ParentNavList.Length == 1)
-                                                    {
-                                                        BuyTopUserId = int.Parse(ParentNavList[0]);
-                                                    }
-                                                }
-                                                StatService.Instance.doActiveReward(db, merchant, pos, getUser.Id, getUser.ParentNav, BuyTopUserId, 40, 12);
-                                            }
-                                        }
-                                        db.SpOrderNos.Add(new PxcModels.SpOrderNos()
-                                        {
-                                            OrderNo = trade.TradeSerialNo
-                                        });
-                                        db.SaveChanges();
-
-                                        // 推荐王逻辑(交易)
-                                        if(TradeAmount > 0)
-                                        {
-                                            string Send = "{\"Kind\":\"4\",\"Data\":{\"PosId\":\"" + pos.Id + "\",\"TradeMonth\":\"" + trade.CreateDate.Value.ToString("yyyyMM") + "\",\"TradeAmount\":\"" + TradeAmount + "\"}}";
-                                            RedisDbconn.Instance.AddList("RecommendActStatQueue", Send);
-                                        }
-                                    }
-                                    TradeRecord edit = spdb.TradeRecord.FirstOrDefault(m => m.Id == trade.Id);
-                                    if (edit != null)
-                                    {
-                                        edit.Status = 2;
-                                    }
-                                    spdb.SaveChanges();
-                                }
-                            }
-                        }
-                    }
-                    spdb.Dispose();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP交易数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 124
AppStart/Helper/SycnSpServer/SycnSpUnBindService.cs

@@ -1,124 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.SpModels;
-using Library;
-using LitJson;
-using System.Threading;
-
-namespace MySystem
-{
-    public class SycnSpUnBindService
-    {
-        public readonly static SycnSpUnBindService Instance = new SycnSpUnBindService();
-        private SycnSpUnBindService()
-        { }
-
-        public void Start()
-        {
-            Thread th = new Thread(StartDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-
-        public void StartDo()
-        {
-            while (true)
-            {
-                try
-                {
-                    WebCMSEntities spdb = new WebCMSEntities();
-                    PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-                    DateTime start = DateTime.Now.AddDays(-30);
-                    List<UnBindRecord> Binds = spdb.UnBindRecord.Where(m => m.UnBindTime >= start && m.Status == 1).OrderByDescending(m => m.Id).ToList();
-                    foreach (UnBindRecord Bind in Binds)
-                    {
-                        var tran = db.Database.BeginTransaction();
-                        try
-                        {
-                            string PosSn = Bind.MerSnNo;
-                            string MerNo = Bind.MerNo;
-                            PxcModels.MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == PosSn);
-                            PxcModels.MachineForMerNo forMerNo = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == MerNo);
-                            PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId);
-                            if (pos.ActivationState == 0 && pos.BuyUserId > 0 && pos.BindingState == 0)
-                            {
-                                string BrandName = RelationClass.GetKqProductsInfo(pos.BrandId);
-                                if (forMerNo != null)
-                                {
-                                    // 删除对应商户
-                                    PxcModels.MachineForMerNo MerEdit = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == MerNo);
-                                    if (MerEdit != null)
-                                    {
-                                        db.MachineForMerNo.Remove(MerEdit);
-                                        db.SaveChanges();
-                                    }
-                                    PxcModels.PosMachinesTwo EditPos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == PosSn) ?? new PxcModels.PosMachinesTwo();
-                                    PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == EditPos.BindMerchantId);
-                                    if(merchant != null)
-                                    {
-                                        pos.BindMerchantId = 0;
-                                        pos.BindingState = 0;
-                                        pos.BindingTime = null;
-                                        db.PosMerchantInfo.Remove(merchant);
-                                        db.SaveChanges();
-                                    }
-                                }
-                                db.MachineUnBind.Add(new PxcModels.MachineUnBind()
-                                {
-                                    CreateDate = DateTime.Now,
-                                    MerchantId = pos.BindMerchantId,
-                                    AuditDate = DateTime.Now,
-                                    AuditDesc = BrandName + "推送解绑",
-                                    AuditStatus = 1,
-                                    SnNo = pos.PosSn,
-                                    BrandId = pos.BrandId,
-                                    UserId = pos.BuyUserId,
-                                    ApplyNo = "U" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8),
-                                });
-                                pos.BindMerchantId = 0;
-                                pos.BindingState = 0;
-                                pos.BindingTime = DateTime.Parse("1900-01-01");
-                                pos.UserId = pos.BuyUserId;
-                                string IdBrand = pos.BuyUserId + "_" + pos.BrandId;
-                                PxcModels.UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
-                                if (userData == null)
-                                {
-                                    userData = db.UserMachineData.Add(new PxcModels.UserMachineData()
-                                    {
-                                        IdBrand = IdBrand,
-                                    }).Entity;
-                                    db.SaveChanges();
-                                }
-                                userData.BindCount -= 1;
-                                userData.UnBindCount += 1;
-                                db.SaveChanges();
-
-                                UnBindRecord edit = spdb.UnBindRecord.FirstOrDefault(m => m.Id == Bind.Id);
-                                if (edit != null)
-                                {
-                                    edit.Status = 2;
-                                    spdb.SaveChanges();
-                                }
-                            }
-                            tran.Commit();
-                        }
-                        catch (Exception ex)
-                        {
-                            tran.Rollback();
-                            function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Bind.Id, "同步SP解绑数据到MAIN异常");
-                        }
-                        tran.Dispose();
-                    }
-                    spdb.Dispose();
-                    db.Dispose();
-                }
-                catch (Exception ex)
-                {
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP解绑数据到MAIN异常");
-                }
-                Thread.Sleep(1000);
-            }
-        }
-    }
-}

+ 0 - 61
AppStart/Helper/SycnTradeRecordService.cs

@@ -1,61 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-namespace MySystem
-{
-    public class SycnTradeRecordService
-    {
-        public readonly static SycnTradeRecordService Instance = new SycnTradeRecordService();
-        private SycnTradeRecordService()
-        { }
-
-        public void Start(JobMqMsg jobInfo)
-        {
-            string content = "";
-            try
-            {
-                string OrderString = jobInfo.OrderString;
-                if (OrderString.StartsWith("Sp:") && OrderString.EndsWith(":Sycn"))
-                {
-                    string TableName = OrderString.Split(':')[1];
-                    string Msg = "";
-                    bool op = true;
-                    while (op)
-                    {
-                        string data = RedisDbconn.Instance.RPop<string>(TableName);
-                        if(!string.IsNullOrEmpty(data))
-                        {
-                            Dictionary<string, string> dic = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(data);
-                            ProfitHelper.Instance.StartListenTradeDo();
-                        }
-                        else
-                        {
-                            op = false;
-                        }
-                    }
-                    jobInfo.Status = Msg == "success" ? 1 : 0;
-                    jobInfo.Msg = Msg == "success" ? "执行完成" : Msg;
-                    RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "SycnTableDataBack");
-                }
-            }
-            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(), "public_service");
-                }
-            }
-        }
-    }
-}

+ 0 - 320
AppStart/RabbitMQClient.cs

@@ -1,320 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using RabbitMQ.Client;
-using RabbitMQ.Client.Events;
-using Library;
-using System.Threading;
-
-namespace MySystem
-{
-    public class RabbitMQClient
-    {
-        public readonly static RabbitMQClient Instance = new RabbitMQClient();
-        string UserName,Password,HostName;
-        private RabbitMQClient()
-        {
-            UserName = ConfigurationManager.AppSettings["MqUserName"].ToString();
-            Password = ConfigurationManager.AppSettings["MqPassword"].ToString();
-            HostName = ConfigurationManager.AppSettings["MqHostName"].ToString();
-        }
-
-        #region 单对单发送
-        public void SendMsg(string content, string QueueName = "")
-        {
-            RedisDbconn.Instance.AddList(QueueName, content);
-            //创建连接对象工厂
-            // var factory = new ConnectionFactory()
-            // {
-            //     UserName = UserName,
-            //     Password = Password,
-            //     AutomaticRecoveryEnabled = true,  //如果connection挂掉是否重新连接
-            //     TopologyRecoveryEnabled = true  //连接恢复后,连接的交换机,队列等是否一同恢复
-            // };
-            // List<AmqpTcpEndpoint> p = new List<AmqpTcpEndpoint>();
-            // string[] HostNames = HostName.Split(',');
-            // foreach (string subHostName in HostNames)
-            // {
-            //     string[] subHostNameData = subHostName.Split(':');
-            //     p.Add(new AmqpTcpEndpoint(subHostNameData[0], int.Parse(subHostNameData[1])));
-            // }
-            // var conn = factory.CreateConnection(p);
-            // var channel = conn.CreateModel();
-            // channel.QueueDeclare(QueueName, true, false, false);
-            // channel.BasicPublish("", QueueName, null, Encoding.Default.GetBytes(content));
-            // channel.Dispose();
-            // conn.Dispose();
-        }
-        #endregion
-
-        #region 单对单发送
-        public void ListenSendMsg()
-        {
-            Thread th = new Thread(ListenSendMsgDo);
-            th.IsBackground = true;
-            th.Start();
-        }
-        Dictionary<string, IModel> channels = new Dictionary<string, IModel>();
-        public void ListenSendMsgDo()
-        {
-            while (true)
-            {
-                //创建连接对象工厂
-                var factory = new ConnectionFactory()
-                {
-                    UserName = UserName,
-                    Password = Password,
-                    AutomaticRecoveryEnabled = true,  //如果connection挂掉是否重新连接
-                    TopologyRecoveryEnabled = true  //连接恢复后,连接的交换机,队列等是否一同恢复
-                };
-                List<AmqpTcpEndpoint> p = new List<AmqpTcpEndpoint>();
-                string[] HostNames = HostName.Split(',');
-                foreach (string subHostName in HostNames)
-                {
-                    string[] subHostNameData = subHostName.Split(':');
-                    p.Add(new AmqpTcpEndpoint(subHostNameData[0], int.Parse(subHostNameData[1])));
-                }
-                var conn = factory.CreateConnection(p);
-                bool op = true;
-                while (op)
-                {
-                    string data = RedisDbconn.Instance.RPop<string>("MainServerMq");
-                    if (!string.IsNullOrEmpty(data))
-                    {
-                        try
-                        {
-                            string[] dataList = data.Split("#cut#");
-                            string QueueName = dataList[0];
-                            if (!channels.ContainsKey(QueueName))
-                            { 
-                                var channelCreate = conn.CreateModel();
-                                channels.Add(QueueName, channelCreate);
-                            }
-                            var channel = channels[QueueName];
-                            channel.QueueDeclare(QueueName, true, false, false);
-                            channel.BasicPublish("", QueueName, null, Encoding.Default.GetBytes(dataList[1]));
-                        }
-                        catch (Exception ex)
-                        {
-                            op = false;
-                            function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "MQ消息队列单对单发送监听异常");
-                        }
-                    }
-                }
-                // channel.Dispose();
-                conn.Dispose();
-                function.WriteLog(DateTime.Now.ToString(), "MQ测试");
-            }
-        }
-        #endregion
-
-        #region 单对单接收
-        public static IConnection _connection;
-        public void CreateConn()
-        { 
-            var factory = new ConnectionFactory()
-            {
-                UserName = UserName,
-                Password = Password,
-                AutomaticRecoveryEnabled = true,  //如果connection挂掉是否重新连接
-                TopologyRecoveryEnabled = true,  //连接恢复后,连接的交换机,队列等是否一同恢复
-                RequestedHeartbeat = TimeSpan.FromMinutes(1),
-            };
-            List<AmqpTcpEndpoint> p = new List<AmqpTcpEndpoint>();
-            string[] HostNames = HostName.Split(',');
-            foreach (string subHostName in HostNames)
-            {
-                string[] subHostNameData = subHostName.Split(':');
-                p.Add(new AmqpTcpEndpoint(subHostNameData[0], int.Parse(subHostNameData[1])));
-            }
-            _connection = factory.CreateConnection(p);
-        }
-        public void StartReceive(string QueueName)
-        {
-            if (_connection == null)
-            {
-                CreateConn();
-            }
-            else if (!_connection.IsOpen)
-            {
-                CreateConn();
-            }
-            var channel = _connection.CreateModel();
-            channel.QueueDeclare(QueueName, true, false, false);
-            EventingBasicConsumer consumer = new EventingBasicConsumer(channel);
-            consumer.Received += (a, e) =>
-            {
-                string MsgContent = Encoding.Default.GetString(e.Body.ToArray());                
-                if (QueueName == "TimerStat")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    StatTimerService.Instance.Start(job);
-                }
-                else if (QueueName == "PosTradeStat")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    StatService.Instance.Start(job);
-                }
-                else if (QueueName == "SycnSpServer")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    SycnSpService.Instance.Start(job);
-                }
-                else if (QueueName == "CheckWeChatSign")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    // CheckWeChatSignService.Instance.Start(job);
-                }
-                else if (QueueName == "CheckAlipaySign")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    // CheckAlipaySignService.Instance.Start(job);
-                }
-                else if (QueueName == "WeChatPayBack")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    WeChatPayBackService.Instance.Start(job);
-                }
-                else if (QueueName == "AlipayPayBack")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    // AlipayPayBackService.Instance.Start(job);
-                }
-                else if (QueueName == "AlipayPayBack2")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    AlipayPayBack2Service.Instance.Start(job);
-                }
-                else if (QueueName == "ConsumerOrdersDiviList")
-                { 
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    ReceiveProfitService.Instance.Start(job);
-                }
-                else if (QueueName == "ConsumerOrdersStat")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    ConsumerOrdersStatService.Instance.Start(job);
-                }
-                else if (QueueName == "ConsumerOrdersReturnDo")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    ConsumerOrdersReturnDoService.Instance.Start(job);
-                }
-                else if (QueueName == "ConsumerOrdersReturnStat")
-                {
-                    JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                    ConsumerOrdersReturnStatService.Instance.Start(job);
-                }
-                else if (QueueName == "MerchantConfirmList")
-                {
-                    // MerchantConfirmService.Instance.Start(MsgContent);
-                }
-                else if (QueueName == "DeleteMySqlData")
-                {
-                    DeleteMySqlDataService.Instance.Start(MsgContent);
-                }
-                // else if (QueueName == "PublicMainServer")
-                // { 
-                //     JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                //     ReceiveTaskService.Instance.Start(job);
-                // }
-                // else if (QueueName == "SycnTableData")
-                // {
-                //     JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                //     if (job.BrandInfo.DataType == 1)
-                //     {
-                //         //同步激活
-                //         SycnActiveRewardService.Instance.Start(job);
-                //     }
-                //     else if (job.BrandInfo.DataType == 2)
-                //     {
-                //         //同步交易
-                //         SycnTradeRecordService.Instance.Start(job);
-                //     }
-                //     else if (job.BrandInfo.DataType == 8)
-                //     {
-                //         //同步商户
-                //         SycnMerchantInfoService.Instance.Start(job);
-                //     }
-                // }
-                // else if (QueueName == "ProfitForEverMonth")
-                // {
-                //     JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                //     ProfitService.Instance.Start(job);
-                // }
-                // else if (QueueName == "FluxPrize")
-                // {
-                //     JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-                //     FluxService.Instance.Start(job);
-                // }
-                channel.BasicAck(e.DeliveryTag, true); //收到回复后,RabbitMQ会直接在队列中删除这条消息
-            };
-            channel.BasicConsume(QueueName, false, consumer);
-        }
-        #endregion
-
-
-
-        #region 单对多发送
-        public void SendMsgToExchange(string content, string Exchange = "")
-        {
-            //创建连接对象工厂
-            var factory = new ConnectionFactory()
-            {
-                UserName = UserName,
-                Password = Password,
-                AutomaticRecoveryEnabled = true,  //如果connection挂掉是否重新连接
-                TopologyRecoveryEnabled = true  //连接恢复后,连接的交换机,队列等是否一同恢复
-            };
-            List<AmqpTcpEndpoint> p = new List<AmqpTcpEndpoint>();
-            string[] HostNames = HostName.Split(',');
-            foreach (string subHostName in HostNames)
-            {
-                string[] subHostNameData = subHostName.Split(':');
-                p.Add(new AmqpTcpEndpoint(subHostNameData[0], int.Parse(subHostNameData[1])));
-            }
-            var conn = factory.CreateConnection(p);
-            var channel = conn.CreateModel();
-            channel.ExchangeDeclare(Exchange, ExchangeType.Fanout, true, false);
-            channel.BasicPublish(Exchange, "", null, Encoding.Default.GetBytes(content));
-            channel.Dispose();
-            conn.Dispose();
-        }
-        #endregion
-
-        #region 单对多接收
-        public void StartReceiveFromExchange(string QueueName = "", string Exchange = "")
-        {
-            var factory = new ConnectionFactory()
-            {
-                UserName = UserName,
-                Password = Password,
-                AutomaticRecoveryEnabled = true,  //如果connection挂掉是否重新连接
-                TopologyRecoveryEnabled = true  //连接恢复后,连接的交换机,队列等是否一同恢复
-            };
-            List<AmqpTcpEndpoint> p = new List<AmqpTcpEndpoint>();
-            string[] HostNames = HostName.Split(',');
-            foreach (string subHostName in HostNames)
-            {
-                string[] subHostNameData = subHostName.Split(':');
-                p.Add(new AmqpTcpEndpoint(subHostNameData[0], int.Parse(subHostNameData[1])));
-            }
-            var conn = factory.CreateConnection(p);
-            var channel = conn.CreateModel();
-            //定义队列
-            channel.QueueDeclare(QueueName, true, false, false);
-            //定义交换机
-            channel.ExchangeDeclare(Exchange, ExchangeType.Fanout, true, false);
-            //绑定队列到交换机
-            channel.QueueBind(QueueName, Exchange, "");
-            var consumer = new EventingBasicConsumer(channel);
-            consumer.Received += (a, e) =>
-            {
-                Library.function.WriteLog(Encoding.Default.GetString(e.Body.ToArray()), "接收到的MQ消息");
-                channel.BasicAck(e.DeliveryTag, true); //收到回复后,RabbitMQ会直接在队列中删除这条消息
-            };
-            channel.BasicConsume(QueueName, false, consumer);
-        }
-        #endregion
-    }
-}

+ 0 - 347
AppStart/RabbitMQClientV2.cs

@@ -1,347 +0,0 @@
-using Newtonsoft.Json;
-using RabbitMQ.Client;
-using RabbitMQ.Client.Events;
-using System;
-using System.Text;
-
-namespace MySystem
-{
-    class ConfigModel
-    {
-    }
-
-    public enum ExchangeTypeEnum
-    {
-        /// <summary>
-        /// 不处理路由键。你只需要简单的将队列绑定到交换机上。一个发送到交换机的消息都会被转发到与该交换机绑定的所有队列上。
-        /// 很像子网广播,每台子网内的主机都获得了一份复制的消息。Fanout交换机转发消息是最快的。
-        /// </summary>
-        fanout = 1,
-
-        /// <summary>
-        /// 处理路由键。需要将一个队列绑定到交换机上,要求该消息与一个特定的路由键完全匹配
-        /// 。这是一个完整的匹配。如果一个队列绑定到该交换机上要求路由键 “dog”,
-        /// 则只有被标记为“dog”的消息才被转发,不会转发dog.puppy,也不会转发dog.guard,只会转发dog。
-        /// </summary>
-        direct = 2,
-
-        /// <summary>
-        /// 将路由键和某模式进行匹配。此时队列需要绑定要一个模式上。
-        /// 符号“#”匹配一个或多个词,符号“*”匹配不多不少一个词。
-        /// 因此“audit.#”能够匹配到“audit.irs.corporate”,但是“audit.*” 只会匹配到“audit.irs”
-        /// </summary>
-        topic = 3,
-
-        header = 4
-    }
-
-
-    /// <summary>
-    /// 数据被执行后的处理方式
-    /// </summary>
-    public enum ProcessingResultsEnum
-    {
-        /// <summary>
-        /// 处理成功
-        /// </summary>
-        Accept,
-
-        /// <summary>
-        /// 可以重试的错误
-        /// </summary>
-        Retry,
-
-        /// <summary>
-        /// 无需重试的错误
-        /// </summary>
-        Reject,
-    }
-
-    /// <summary>
-    /// 消息队列的配置信息
-    /// </summary>
-    public class RabbitMqConfigModel
-    {
-        #region host
-        /// <summary>
-        /// 服务器IP地址
-        /// </summary>
-        public string IP { get; set; }
-
-        /// <summary>
-        /// 服务器端口,默认是 5672
-        /// </summary>
-        public int Port { get; set; }
-
-        /// <summary>
-        /// 登录用户名
-        /// </summary>
-        public string UserName { get; set; }
-
-        /// <summary>
-        /// 登录密码
-        /// </summary>
-        public string Password { get; set; }
-        /// <summary>
-        /// 虚拟主机名称
-        /// </summary>
-        public string VirtualHost { get; set; }
-        #endregion
-
-        #region Queue
-        /// <summary>
-        /// 队列名称
-        /// </summary>
-        public string QueueName { get; set; }
-
-        /// <summary>
-        /// 是否持久化该队列
-        /// </summary>
-        public bool DurableQueue { get; set; }
-        #endregion
-
-        #region exchange
-        /// <summary>
-        /// 路由名称
-        /// </summary>
-        public string ExchangeName { get; set; }
-
-        /// <summary>
-        /// 路由的类型枚举
-        /// </summary>
-        public ExchangeTypeEnum ExchangeType { get; set; }
-
-        /// <summary>
-        /// 路由的关键字
-        /// </summary>
-        public string RoutingKey { get; set; }
-
-        #endregion
-
-        #region message
-        /// <summary>
-        /// 是否持久化队列中的消息
-        /// </summary>
-        public bool DurableMessage { get; set; }
-        #endregion
-    }
-    /// <summary>
-    /// 基类
-    /// </summary>
-    public class BaseService
-    {
-
-        public static IConnection _connection;
-
-        /// <summary>
-        /// 服务器配置
-        /// </summary>
-        public RabbitMqConfigModel RabbitConfig { get; set; }
-
-
-        #region 构造函数
-        /// <summary>
-        /// 构造函数
-        /// </summary>
-        /// <param name="config"></param>
-        public BaseService(RabbitMqConfigModel config)
-        {
-            try
-            {
-                RabbitConfig = config;
-                CreateConn();
-            }
-            catch (Exception)
-            {
-                throw;
-            }
-        }
-        #endregion
-
-        #region 方法
-        #region 初始化
-        /// <summary>
-        /// 创建连接
-        /// </summary>
-        public void CreateConn()
-        {
-            ConnectionFactory cf = new ConnectionFactory();
-            cf.Port = RabbitConfig.Port; //服务器的端口
-            cf.Endpoint = new AmqpTcpEndpoint(new Uri("amqp://" + RabbitConfig.IP + "/")); //服务器ip
-            cf.UserName = RabbitConfig.UserName; //登录账户
-            cf.Password = RabbitConfig.Password; //登录账户
-            cf.VirtualHost = RabbitConfig.VirtualHost; //虚拟主机
-            cf.RequestedHeartbeat = TimeSpan.Parse("60"); //虚拟主机
-
-            _connection = cf.CreateConnection();
-        }
-        #endregion
-
-        #region 发送消息
-        /// <summary>
-        /// 发送消息,泛型
-        /// </summary>
-        /// <typeparam name="T"></typeparam>
-        /// <param name="message"></param>
-        /// <returns></returns>
-        public bool Send<T>(T messageInfo, ref string errMsg)
-        {
-            if (messageInfo == null)
-            {
-                errMsg = "消息对象不能为空";
-                return false;
-            }
-            string value = JsonConvert.SerializeObject(messageInfo);
-            return Send(value, ref errMsg);
-        }
-        /// <summary>
-        /// 发送消息,string类型
-        /// </summary>
-        /// <param name="message"></param>
-        /// <param name="errMsg"></param>
-        /// <returns></returns>
-        public bool Send(string message)
-        {
-            if (string.IsNullOrEmpty(message))
-            {
-                return false;
-            }
-            try
-            {
-                if (!_connection.IsOpen)
-                {
-                    CreateConn();
-                }
-                using (var channel = _connection.CreateModel())
-                {
-                    //推送消息
-                    byte[] bytes = Encoding.UTF8.GetBytes(message);
-
-                    IBasicProperties properties = channel.CreateBasicProperties();
-                    properties.DeliveryMode = Convert.ToByte(RabbitConfig.DurableMessage ? 2 : 1); //支持可持久化数据
-
-                    if (string.IsNullOrEmpty(RabbitConfig.ExchangeName))
-                    {
-                        //使用自定义的路由
-                        channel.ExchangeDeclare(RabbitConfig.ExchangeName, RabbitConfig.ExchangeType.ToString(), RabbitConfig.DurableMessage, false, null);
-                        channel.BasicPublish("", RabbitConfig.QueueName, properties, bytes);
-                    }
-                    else
-                    {
-                        //申明消息队列,且为可持久化的,如果队列的名称不存在,系统会自动创建,有的话不会覆盖
-                        channel.QueueDeclare(RabbitConfig.QueueName, RabbitConfig.DurableQueue, false, false, null);
-                        channel.BasicPublish(RabbitConfig.ExchangeName, RabbitConfig.RoutingKey, properties, bytes);
-                    }
-                    return true;
-                }
-
-            }
-            catch (Exception ex)
-            {
-                Library.function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "发送MQ队列消息异常");
-                return false;
-            }
-        }
-        #endregion
-    }
-    public class RabbitBasicService : BaseService
-    {
-
-        /// <summary>
-        /// 构造函数
-        /// </summary>
-        /// <param name="config"></param>
-        public RabbitBasicService(RabbitMqConfigModel config)
-        : base(config)
-        { }
-
-
-        /// <summary>
-        /// 接受消息,使用Action进行处理
-        /// </summary>
-        /// <typeparam name="T"></typeparam>
-        /// <param name="method"></param>
-        public void Receive()
-        {
-            try
-            {
-                using (var channel = _connection.CreateModel())
-                {
-                    //申明队列
-                    channel.QueueDeclare(RabbitConfig.QueueName, RabbitConfig.DurableQueue, false, false, null);
-                    //使用路由
-                    if (!string.IsNullOrEmpty(RabbitConfig.ExchangeName))
-                    {
-                        //申明路由
-                        channel.ExchangeDeclare(RabbitConfig.ExchangeName, RabbitConfig.ExchangeType.ToString(), RabbitConfig.DurableQueue);
-                        //队列和交换机绑定
-                        channel.QueueBind(RabbitConfig.QueueName, RabbitConfig.ExchangeName, RabbitConfig.RoutingKey);
-                    }
-
-                    //输入1,那如果接收一个消息,但是没有应答,则客户端不会收到下一个消息
-                    channel.BasicQos(0, 1, false);
-                    //在队列上定义一个消费者
-                    // var customer = new QueueingBasicConsumer(channel);
-                    var customer = new EventingBasicConsumer(channel);
-                    EventingBasicConsumer consumer = new EventingBasicConsumer(channel);
-                    consumer.Received += (a, e) =>
-                    {
-                        string MsgContent = Encoding.Default.GetString(e.Body.ToArray());
-                        
-                        channel.BasicAck(e.DeliveryTag, true); //收到回复后,RabbitMQ会直接在队列中删除这条消息
-                    };
-                    //消费队列,并设置应答模式为程序主动应答
-                    channel.BasicConsume(RabbitConfig.QueueName, false, customer);
-
-                    // while (true)//timer
-                    // {
-                    //     //阻塞函数,获取队列中的消息
-                    //     ProcessingResultsEnum processingResult = ProcessingResultsEnum.Retry;
-                    //     ulong deliveryTag = 0;
-                    //     try
-                    //     {
-                    //         //Thread.Sleep(10);
-
-                    //         var ea = customer.Queue.Dequeue();
-                    //         deliveryTag = ea.DeliveryTag;
-                    //         byte[] bytes = ea.Body;
-                    //         string body = Encoding.UTF8.GetString(bytes);
-                    //         // T info = JsonConvert.DeserializeObject<T>(body);
-                    //         method(body);
-                    //         processingResult = ProcessingResultsEnum.Accept;
-                    //     }
-                    //     catch (Exception ex)
-                    //     {
-                    //         processingResult = ProcessingResultsEnum.Reject; //系统无法处理的错误
-                    //     }
-                    //     finally
-                    //     {
-                    //         switch (processingResult)
-                    //         {
-                    //             case ProcessingResultsEnum.Accept:
-                    //                 //回复确认处理成功
-                    //                 channel.BasicAck(deliveryTag,
-                    //                 false);//处理单挑信息
-                    //                 break;
-                    //             case ProcessingResultsEnum.Retry:
-                    //                 //发生错误了,但是还可以重新提交给队列重新分配
-                    //                 channel.BasicNack(deliveryTag, false, true);
-                    //                 break;
-                    //             case ProcessingResultsEnum.Reject:
-                    //                 //发生严重错误,无法继续进行,这种情况应该写日志或者是发送消息通知管理员
-                    //                 channel.BasicNack(deliveryTag, false, false);
-                    //                 //写日志
-                    //                 break;
-                    //         }
-                    //     }
-                    // }
-
-                }
-            }
-            catch (Exception ex)
-            {
-            }
-        }
-    }
-    #endregion
-}

+ 0 - 39
AppStart/Timer/AlipayPayBack2Timer.cs

@@ -1,39 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Linq;
-using Microsoft.Extensions.Hosting;
-using MySystem;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-public class AlipayPayBack2Timer : BackgroundService
-{
-    protected override async Task ExecuteAsync(CancellationToken stoppingToken)
-    {
-        while (!stoppingToken.IsCancellationRequested)
-        {
-            int timespan = 1000;
-            await Task.Delay(timespan).ContinueWith(tsk =>
-            {
-                DoWorks();
-            });
-        }
-    }
-
-    private void DoWorks()
-    {
-        string MsgContent = RedisDbconn.Instance.RPop<string>("AlipayPayBack2");
-        if (!string.IsNullOrEmpty(MsgContent))
-        {
-            JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-            AlipayPayBack2Service.Instance.Start(job);
-        }
-        else
-        {
-            Thread.Sleep(1000);
-        }
-    }
-}

+ 0 - 35
AppStart/Timer/SycnSpTimer.cs

@@ -1,35 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Linq;
-using Microsoft.Extensions.Hosting;
-using MySystem;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-public class SycnSpTimer : BackgroundService
-{
-    protected override async Task ExecuteAsync(CancellationToken stoppingToken)
-    {
-        while (!stoppingToken.IsCancellationRequested)
-        {
-            int timespan = 100;
-            await Task.Delay(timespan).ContinueWith(tsk =>
-            {
-                DoWorks();
-            });
-        }
-    }
-
-    private void DoWorks()
-    {
-        string MsgContent = RedisDbconn.Instance.RPop<string>("SycnSpServer");
-        if (!string.IsNullOrEmpty(MsgContent))
-        {
-            JobMqMsg job = Newtonsoft.Json.JsonConvert.DeserializeObject<JobMqMsg>(MsgContent);
-            SycnSpService.Instance.Start(job);
-        }
-    }
-}

+ 0 - 131
AppStart/UserMonthFeeHelper.cs

@@ -1,131 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using System.Linq;
-using System.Data;
-using MySystem;
-using MySystem.PxcModels;
-using Library;
-using LitJson;
-
-public class UserMonthFeeHelper
-{
-    public readonly static UserMonthFeeHelper Instance = new UserMonthFeeHelper();
-    private UserMonthFeeHelper()
-    {
-    }
-
-    public void Start()
-    {
-        Thread th = new Thread(DoWorks);
-        th.IsBackground = true;
-        th.Start();
-    }
-
-    private void DoWorks()
-    {
-        while (true)
-        {
-            try
-            {
-                string content = RedisDbconn.Instance.RPop<string>("UserMonthFeeQueue");
-                if(!string.IsNullOrEmpty(content))
-                {
-                    int uid = int.Parse(content);
-                    WebCMSEntities db = new WebCMSEntities();
-                    DoSomething(db, uid);
-                    db.Dispose();
-                    RedisDbconn.Instance.AddList("PosExpiredPayQueue", content);
-                }
-                else
-                {
-                    Thread.Sleep(60000);
-                }
-            }
-            catch (Exception ex)
-            {
-                function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "创客每月月费扣款异常");
-            }
-            function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "创客每月月费扣款日志");
-        }
-    }
-
-    public void DoSomething(WebCMSEntities db, int UserId)
-    {
-        DateTime Start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM") + "-01 00:00:00");
-        DateTime WithoutStart = DateTime.Parse("2023-02-20 00:00:00"); //收支明细服务费记录开始时间
-        UserAccount User = db.UserAccount.FirstOrDefault(m => m.Id == UserId && m.BalanceAmount > 0);
-        if(User != null)
-        {
-            bool check = db.UserAccountRecord.Any(m => m.UserId == User.Id && m.CreateDate >= Start && m.CreateDate >= WithoutStart && m.ChangeType == 125);
-            if(!check)
-            {
-                if(User.BalanceAmount > 10)
-                {
-                    AlipayPayBack2Service.Instance.ChangeAccount(db, new Orders(), User.Id, -10, 125);
-                }
-                else
-                {
-                    AlipayPayBack2Service.Instance.ChangeAccount(db, new Orders(), User.Id, -User.BalanceAmount, 125);
-                }
-            }
-        }
-    }
-
-    public void Start2()
-    {
-        Thread th = new Thread(DoWorks2);
-        th.IsBackground = true;
-        th.Start();
-    }
-
-
-    private void DoWorks2()
-    {
-        while (true)
-        {
-            try
-            {
-                if(DateTime.Now.Hour == 1 && DateTime.Now < DateTime.Parse("2023-02-20 00:00:00"))
-                {
-                    string check = function.ReadInstance("/UserMonthFee/" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt");
-                    if(string.IsNullOrEmpty(check))
-                    {
-                        function.WritePage("/UserMonthFee/", DateTime.Now.ToString("yyyy-MM-dd") + ".txt", DateTime.Now.ToString("HH:mm:ss"));
-                        WebCMSEntities db = new WebCMSEntities();
-                        DoSomething2(db);
-                        db.Dispose();
-                    }
-                }
-            }
-            catch (Exception ex)
-            {
-                function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "创客每月月费补扣款异常");
-            }
-            function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "创客每月月费补扣款日志");
-            Thread.Sleep(60000);
-        }
-    }
-
-    public void DoSomething2(WebCMSEntities db)
-    {
-        DateTime Start = DateTime.Parse("2023-01-19 00:00:00"); //收支明细服务费记录开始时间
-        // DateTime ExpireDate = DateTime.Parse(DateTime.Now.ToString("yyyy-MM") + "-01 00:00:00").AddDays(-90); //创客认证超过90天比对时间
-
-        // //超过90天创客ID集合
-        // List<int> UserIds = db.Users.Where(m => m.AuthFlag == 1 && m.AuthDate < ExpireDate).ToList().Select(m => m.Id).ToList();
-
-        List<int> UserIds = new List<int>();
-        UserIds.Add(311);
-
-        //已扣费创客ID集合  
-        List<int> UserAccountRecordIds = db.UserAccountRecord.Where(m => UserIds.Contains(m.UserId) && m.CreateDate >= Start && m.ChangeType == 125).ToList().Select(m => m.UserId).ToList();
-
-        //应该扣除而未扣的创客集合 
-        var Users = db.UserAccount.Select(m => new { m.Id, m.BalanceAmount }).Where(m => !UserAccountRecordIds.Contains(m.Id) && UserIds.Contains(m.Id) && m.BalanceAmount >= 10).ToList();
-        foreach(var User in Users)
-        {
-            AlipayPayBack2Service.Instance.ChangeAccount(db, new Orders(), User.Id, -10, 125); //执行扣费
-        }
-    }
-}

+ 0 - 1534
Controllers/HomeController.cs

@@ -47,1540 +47,6 @@ namespace MySystem.Controllers
             }
             return View();
         }
-
-
-        private static object o = new object();
-        public string addmer(int mid, int k = 0)
-        {
-            // MerchantConfirmService.Instance.StartDo(mid, k);
-            return "ok";
-        }
-
-        public string setqrcode(int uid = 0)
-        {
-            return "ok";
-        }
-
-        public string userqrcode(int uid)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            Users user = db.Users.FirstOrDefault(m => m.Id == uid);
-            if (user != null)
-            {
-                MakeReferenceQrCodeService.Instance.Start(user.Id.ToString());
-                return "ok";
-            }
-            db.Dispose();
-            return "fail";
-        }
-
-        public string getqrcode(int uid, int pid)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            Users user = db.Users.FirstOrDefault(m => m.Id == uid);
-            if (user != null)
-            {
-                return MakeReferenceQrCodeService.Instance.MergeQrCode(user, pid);
-            }
-            db.Dispose();
-            return "fail";
-        }
-
-        private void th1()
-        {
-            Thread th = new Thread(th1do);
-            th.IsBackground = true;
-            th.Start();
-        }
-        private void th1do()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            Users user = db.Users.FirstOrDefault(m => m.Id == 2);
-            if (user != null)
-            {
-                user.SeoTitle = "111111";
-                Thread.Sleep(5000);
-                user.SeoDescription = "222222";
-                db.SaveChanges();
-            }
-            db.Dispose();
-        }
-        private void th2()
-        {
-            Thread th = new Thread(th2do);
-            th.IsBackground = true;
-            th.Start();
-        }
-        private void th2do()
-        {
-            Thread.Sleep(2000);
-            WebCMSEntities db = new WebCMSEntities();
-            Users user = db.Users.FirstOrDefault(m => m.Id == 2);
-            if (user != null)
-            {
-                user.SeoKeyword = "看看有没有值写入";
-                db.SaveChanges();
-            }
-            db.Dispose();
-        }
-
-        // 补激活奖励
-        public string setmeruser(string date)
-        {
-            StatService.Instance.dosomething1(date);
-            return "ok";
-        }
-        // 补发小盟主15000返现
-        public string LeaderBack(int oid)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            Orders order = db.Orders.FirstOrDefault(m => m.Id == oid);
-            if(order != null)
-            {
-                AlipayPayBack2Service.Instance.LeaderBack(db, order);
-            }
-            db.Dispose();
-            return "ok";
-        }
-        public string chkactprize(int Id = 0)
-        {
-            if (Id > 0)
-            {
-                StatService.Instance.dosomething3(Id);
-            }
-            return "ok";
-        }
-        public string chkactprize2(int Id = 0)
-        {
-            if (Id > 0)
-            {
-                StatService.Instance.activePrizeWithoutDeposit(Id);
-            }
-            return "ok";
-        }
-
-        public string mutilactprize()
-        {
-            List<int> ids = new List<int>();
-            WebCMSEntities db = new WebCMSEntities();
-            SpModels.WebCMSEntities spdb = new SpModels.WebCMSEntities();
-            foreach (int id in ids)
-            {
-                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == id);
-                if (pos != null)
-                {
-                    SpModels.ActivateRecord act = spdb.ActivateRecord.FirstOrDefault(m => m.SnNo == pos.PosSn && m.SeoTitle != "0" && !string.IsNullOrEmpty(m.SeoTitle));
-                    if (act != null)
-                    {
-                        pos.SeoKeyword = act.SeoTitle;
-                        db.SaveChanges();
-                        StatService.Instance.dosomething3(pos.Id);
-                    }
-                }
-            }
-            db.Dispose();
-            spdb.Dispose();
-            return "ok";
-        }
-
-        public string scanBind()
-        {
-            SpModels.WebCMSEntities spdb = new SpModels.WebCMSEntities();
-            PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-            var Binds = spdb.BindRecord.Select(m => new { m.Id, m.CreateTime, m.Status, m.MerNo, m.MerSnNo }).OrderBy(m => m.Id).ToList();
-            foreach (var Bind in Binds)
-            {
-                var tran = db.Database.BeginTransaction();
-                try
-                {
-                    PxcModels.MachineForSnNo posFor = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == Bind.MerSnNo) ?? new PxcModels.MachineForSnNo();
-                    PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                    if (pos != null)
-                    {
-                        if (pos.BindingState == 0)
-                        {
-                            pos.BindingState = 1;
-                            pos.BindingTime = Bind.CreateTime;
-                            PxcModels.MachineForMerNo merFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Bind.MerNo);
-                            if (merFor == null)
-                            {
-                                merFor = db.MachineForMerNo.Add(new PxcModels.MachineForMerNo()
-                                {
-                                    MerNo = Bind.MerNo,
-                                    SnId = pos.Id,
-                                }).Entity;
-                            }
-                            db.SaveChanges();
-                            tran.Commit();
-                            function.WriteLog(pos.PosSn, "补充绑定数据");
-                        }
-                    }
-                }
-                catch (Exception ex)
-                {
-                    tran.Rollback();
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Bind.Id, "同步SP绑定数据到MAIN异常");
-                }
-                tran.Dispose();
-            }
-            spdb.SaveChanges();
-            spdb.Dispose();
-            db.SaveChanges();
-            db.Dispose();
-            return "ok";
-        }
-
-        public string scanMerchant()
-        {
-            SpModels.WebCMSEntities spdb = new SpModels.WebCMSEntities();
-            PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-            var Mers = spdb.Merchants.OrderBy(m => m.Id).ToList();
-            foreach (var Mer in Mers)
-            {
-                var tran = db.Database.BeginTransaction();
-                try
-                {
-                    PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Mer.MerNo) ?? new PxcModels.MachineForMerNo();
-                    PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId) ?? new PxcModels.PosMachinesTwo();
-                    if (pos.BindingState == 1)
-                    {
-                        PxcModels.Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new PxcModels.Users();
-                        int TopUserId = 0;
-                        if (!string.IsNullOrEmpty(user.ParentNav))
-                        {
-                            TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
-                        }
-                        int BrandId = int.Parse(Mer.ProductType);
-                        if (Mer.MerNo.StartsWith("M900"))
-                        {
-                            BrandId = 3;
-                        }
-                        bool check = db.PosMerchantInfo.Any(m => m.KqMerNo == Mer.MerNo);
-                        if (!check)
-                        {
-                            PxcModels.PosMerchantInfo add = db.PosMerchantInfo.Add(new PxcModels.PosMerchantInfo()
-                            {
-                                CreateDate = Mer.CreateTime,
-                                UpdateDate = Mer.UpdateTime,
-                                TopUserId = TopUserId,
-                                MerUserType = user.MerchantType,
-                                BrandId = BrandId,
-                                SnStoreId = pos.StoreId,
-                                SnType = pos.PosSnType,
-                                UserId = pos.UserId,
-                                MgrName = Mer.AgentName,
-                                MerStatus = 1,
-                                KqSnNo = Mer.SnNo,
-                                KqMerNo = Mer.MerNo,
-                                MerIdcardNo = Mer.MerIdcardNo,
-                                MerRealName = Mer.MerRealName,
-                                MerchantMobile = Mer.MerMobile,
-                                MerchantName = Mer.MerName,
-                                MerchantNo = Mer.MerNo.Length > 16 ? Mer.MerNo.Substring(0, 16) : Mer.MerNo,
-                            }).Entity;
-                            db.SaveChanges();
-                            pos.BindMerchantId = add.Id;
-                            db.SaveChanges();
-                            tran.Commit();
-                            function.WriteLog(Mer.MerNo, "补充商户数据");
-                        }
-                    }
-                }
-                catch (Exception ex)
-                {
-                    tran.Rollback();
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Mer.Id, "同步SP商户数据到MAIN异常");
-                }
-                tran.Dispose();
-            }
-            spdb.Dispose();
-            db.Dispose();
-            return "ok";
-        }
-
-        public string scanTrade()
-        {
-            SpModels.WebCMSEntities spdb = new SpModels.WebCMSEntities();
-            PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
-            IQueryable<SpModels.TradeRecord> trades = spdb.TradeRecord.OrderBy(m => m.Id);
-            foreach (SpModels.TradeRecord trade in trades.ToList())
-            {
-                bool op = true;
-                if (trade.SerEntryMode == "N")
-                {
-                    if (trade.TradeAmount == 9900 || trade.TradeAmount == 19900 || trade.TradeAmount == 29900)
-                    {
-                        op = false;
-                        PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == trade.MerNo) ?? new PxcModels.MachineForMerNo();
-                        PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                        if (pos != null)
-                        {
-                            if (trade.SerEntryMode == "N" && trade.ProductType == "1")
-                            {
-                                pos.SeoKeyword = trade.TradeAmount.ToString("f2");
-                                db.SaveChanges();
-                            }
-                        }
-                    }
-                }
-                if (op)
-                {
-                    PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == trade.MerNo) ?? new PxcModels.MachineForMerNo();
-                    PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == posFor.SnId);
-                    if (pos != null)
-                    {
-                        if (pos.BindMerchantId > 0)
-                        {
-                            PxcModels.Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new PxcModels.Users();
-                            int TopUserId = 0;
-                            if (!string.IsNullOrEmpty(user.ParentNav))
-                            {
-                                TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
-                            }
-                            bool check = db.TradeRecord.Any(m => m.RecordNo == trade.TradeSerialNo);
-                            if (!check)
-                            {
-                                decimal TradeAmount = trade.TradeAmount;
-                                int BankCardType = -1;
-                                int QrPayFlag = 0;
-                                if (pos.BrandId == 1 || pos.BrandId == 3)
-                                {
-                                    TradeAmount = TradeAmount / 100;
-                                    BankCardType = int.Parse(trade.BankCardType);
-                                    if (trade.TradeType == "02") QrPayFlag = 1;
-                                }
-                                else if (pos.BrandId == 2)
-                                {
-                                    if (trade.TradeType == "CREDIT_BY_CARD")
-                                    {
-                                        BankCardType = 1;
-                                    }
-                                    else if (trade.TradeType == "DEBIT_BY_CARD")
-                                    {
-                                        BankCardType = 0;
-                                    }
-                                    if (trade.TradeType == "CLOUD_PAY") QrPayFlag = 1;
-                                }
-                                int BrandId = int.Parse(trade.ProductType);
-                                if (trade.MerNo.StartsWith("M900"))
-                                {
-                                    BrandId = 3;
-                                }
-                                db.TradeRecord.Add(new PxcModels.TradeRecord()
-                                {
-                                    CreateDate = trade.CreateDate,
-                                    UpdateDate = trade.UpdateDate,
-                                    RecordNo = trade.TradeSerialNo, //单号
-                                    UserId = pos.UserId, //创客
-                                    MerchantId = pos.BindMerchantId, //商户
-                                    MerNo = trade.MerNo, //渠道商户编号
-                                    MerHelpFlag = 0, //是否属于扶持周期内商户
-                                    HelpMonthCount = 0, //扶持第几个月
-                                    MerBuddyType = user.MerchantType, //商户创客类型
-                                    SnNo = trade.TradeSnNo, //渠道SN号
-                                    // TradeDate = DateTime.Parse(trade.TradeTime), //交易日期
-                                    TradeSerialNo = trade.ChannelSerial, //交易流水号
-                                    TradeAmount = TradeAmount, //交易金额
-                                    BankCardType = BankCardType, //银行卡类型
-                                    QrPayFlag = QrPayFlag, //云闪付标识
-                                    BrandId = BrandId, //品牌
-                                    Remark = trade.Remark, //备注
-                                    TopUserId = TopUserId, //顶级创客
-                                    MerUserId = pos.UserId, //商户直属创客
-                                    ParentNav = user.ParentNav,
-                                });
-                                if (BankCardType == 1)
-                                {
-                                    pos.CreditTrade += TradeAmount;
-                                }
-                                else if (BankCardType == 0)
-                                {
-                                    pos.DebitCardTrade += TradeAmount;
-                                }
-                                else if (pos.CreditTrade >= 1000 && pos.ActivationState == 0 && pos.BindingTime > DateTime.Now.AddDays(-20))
-                                {
-                                    // pos.IsPurchase = 0;
-                                    pos.ActivationState = 1;
-                                    pos.ActivationTime = DateTime.Now;
-                                    PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
-                                    if (merchant != null)
-                                    {
-                                        merchant.ActiveStatus = 1;
-                                        merchant.MerStandardDate = DateTime.Now;
-                                        db.SaveChanges();
-                                    }
-                                }
-                                db.SaveChanges();
-                                function.WriteLog(trade.Id.ToString(), "补充交易数据");
-                            }
-                        }
-                    }
-                }
-            }
-            spdb.Dispose();
-            db.Dispose();
-            return "ok";
-        }
-
-        // public string add100()
-        // {
-        //     WebCMSEntities db = new WebCMSEntities();
-        //     List<int> uids = new List<int>();
-        //     uids.Add(1053);
-        //     foreach (int uid in uids)
-        //     {
-        //         int ParentUserId = uid;
-        //         int machineCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.PosSnType == 0); //判断是否拥有3台兑换机
-        //         int ActiveCount = db.PosMachinesTwo.Count(m => m.UserId == ParentUserId && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
-        //         if (machineCount + ActiveCount >= 3)
-        //         {
-        //             UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == ParentUserId);
-        //             if (account == null)
-        //             {
-        //                 account = db.UserAccount.Add(new UserAccount()
-        //                 {
-        //                     Id = ParentUserId,
-        //                     UserId = ParentUserId,
-        //                 }).Entity;
-        //                 db.SaveChanges();
-        //             }
-        //             decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
-        //             decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
-        //             decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
-        //             account.BalanceAmount += 100;
-        //             account.TotalAmount += 100;
-        //             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 = ParentUserId, //创客
-        //                 ChangeType = 112, //变动类型
-        //                 ChangeAmount = 100, //变更金额
-        //                 BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
-        //                 AfterTotalAmount = AfterTotalAmount, //变更后总金额
-        //                 BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
-        //                 AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
-        //                 BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
-        //                 AfterBalanceAmount = AfterBalanceAmount, //变更后余额
-        //             }).Entity;
-        //             db.SaveChanges();
-
-        //             //推荐下单上级获得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();
-        //         }
-        //     }
-        //     db.Dispose();
-        //     return "finish";
-        // }
-
-        //交易不到1000的机具,顶级姓名-代理姓名-客户姓名-客户电话-开机日期-SN // TODO:做到BS后台导出,按绑定时间查
-        public IActionResult PosTable()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            List<PosMachinesTwo> poses = db.PosMachinesTwo.Where(m => m.CreditTrade < 1000 && m.BindingState == 1).ToList();
-            List<Dictionary<string, string>> list = new List<Dictionary<string, string>>();
-            foreach (PosMachinesTwo pos in poses)
-            {
-                PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new PosMerchantInfo();
-                Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new Users();
-                Users puser = db.Users.FirstOrDefault(m => m.Id == user.ParentUserId) ?? new Users();
-                Users ppuser = db.Users.FirstOrDefault(m => m.Id == puser.ParentUserId) ?? new Users();
-                Dictionary<string, string> item = new Dictionary<string, string>();
-                string TopRealName = "";
-                string TopMakerCode = "";
-                string TopMobile = "";
-                string ParentNav = user.ParentNav;
-                if (!string.IsNullOrEmpty(ParentNav))
-                {
-                    string[] navlist = ParentNav.Trim(',').Replace(",,", ",").Split(',');
-                    if (navlist.Length > 1)
-                    {
-                        int TopId = int.Parse(function.CheckInt(navlist[1]));
-                        Users tuser = db.Users.FirstOrDefault(m => m.Id == TopId) ?? new Users();
-                        TopRealName = tuser.RealName;
-                        TopMakerCode = tuser.MakerCode;
-                        TopMobile = tuser.Mobile;
-                    }
-                }
-                item.Add("TopRealName", TopRealName); //顶级姓名
-                item.Add("TopMakerCode", TopMakerCode); //顶级编号
-                item.Add("UpUpRealName", ppuser.RealName); //上上级姓名
-                item.Add("UpRealName", puser.RealName); //上级姓名
-                item.Add("RealName", user.RealName); //代理姓名
-                item.Add("MakerCode", user.MakerCode); //代理编号
-                item.Add("Mobile", user.Mobile); //代理手机号
-                item.Add("MerchantName", merchant.MerchantName); //客户姓名
-                item.Add("MerchantMobile", merchant.MerchantMobile); //客户电话
-                item.Add("OpenTime", pos.BindingTime == null ? "" : pos.BindingTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //开机日期
-                item.Add("Sn", pos.PosSn); //SN
-                list.Add(item);
-            }
-            db.Dispose();
-            ViewBag.list = list;
-            return View();
-        }
-        
-        public string resetpos(int uid, int kind)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            string IdBrand = uid + "_" + kind;
-            UserMachineData machineData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
-            if (machineData == null)
-            {
-                machineData = db.UserMachineData.Add(new UserMachineData()
-                {
-                    IdBrand = IdBrand
-                }).Entity;
-                db.SaveChanges();
-            }
-            machineData.BindCount = db.PosMachinesTwo.Count(m => m.Status > -1 && m.BuyUserId == uid && m.BrandId == kind && m.BindingState == 1);
-            machineData.UnBindCount = db.PosMachinesTwo.Count(m => m.Status > -1 && m.BuyUserId == uid && m.BrandId == kind && m.BindingState == 0);
-            machineData.TotalMachineCount = machineData.BindCount + machineData.UnBindCount;
-            db.SaveChanges();
-            db.Dispose();
-            return "finish";
-        }
-
-        // 更新分仓库存
-        public string resetstorestock()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            DataTable dt = dbconn.dtable("select s.Id,LaveNum,count(p.Id) as CurLaveNum from StoreHouse s left join PosMachinesTwo p on s.Id=p.StoreId and s.BrandId=p.BrandId and p.UserId=0 group by s.Id HAVING LaveNum!=count(p.Id)");
-            foreach (DataRow dr in dt.Rows)
-            {
-                int Id = int.Parse(function.CheckInt(dr["Id"].ToString()));
-                int CurLaveNum = int.Parse(function.CheckInt(dr["CurLaveNum"].ToString()));
-                StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == Id);
-                if (store != null)
-                {
-                    store.LaveNum = CurLaveNum;
-                    db.SaveChanges();
-                }
-            }
-            db.Dispose();
-            return "ok";
-        }
-        public string resetstorestock2(int id)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            DataTable dt = dbconn.dtable("select Id,LaveNum,(select count(Id) from PosMachinesTwo where StoreId=s.Id and UserId=0) as CurLaveNum from StoreHouse s where Id=" + id);
-            foreach (DataRow dr in dt.Rows)
-            {
-                int Id = int.Parse(function.CheckInt(dr["Id"].ToString()));
-                int CurLaveNum = int.Parse(function.CheckInt(dr["CurLaveNum"].ToString()));
-                StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == Id);
-                if (store != null)
-                {
-                    store.LaveNum = CurLaveNum;
-                    db.SaveChanges();
-                }
-            }
-            db.Dispose();
-            return "ok";
-        }
-
-        public string chkpwd(string pwd)
-        {
-            return function.MD532(pwd);
-        }
-
-        //重置本月团队交易额
-        public string resetMonthTrade()
-        {
-
-            return "";
-        }
-
-        public string traderecord(int kind, int id = 0)
-        {
-            OtherMySqlConn.connstr = Library.ConfigurationManager.AppSettings["Pxc1SqlConnStr"].ToString();
-            if (kind == 1)
-            {
-                OtherMySqlConn.op("delete from TradeRecordTest;insert into TradeRecordTest (Sort,QueryCount,Status,Version,CreateDate,UpdateDate,CreateMan,UpdateMan,SeoTitle,SeoKeyword,SeoDescription,MerUserId,TopUserId,Remark,BrandId,DirectFlag,CapFlag,QrPayFlag,BankCardType,TradeAmount,TradeSerialNo,ClearDate,TradeDate,SnNo,MerBuddyType,HelpMonthCount,MerHelpFlag,MerNo,MerchantId,UserId,RecordNo) select Sort,QueryCount,Status,Version,CreateDate,UpdateDate,CreateMan,UpdateMan,SeoTitle,SeoKeyword,SeoDescription,MerUserId,TopUserId,Remark,BrandId,DirectFlag,CapFlag,QrPayFlag,BankCardType,TradeAmount,TradeSerialNo,ClearDate,TradeDate,SnNo,MerBuddyType,HelpMonthCount,MerHelpFlag,MerNo,MerchantId,UserId,RecordNo from TradeRecord order by CreateDate;");
-            }
-            else if (kind == 2)
-            {
-                OtherMySqlConn.op("delete from TradeRecord where Id<" + id + ";insert into TradeRecord (Id,Sort,QueryCount,Status,Version,CreateDate,UpdateDate,CreateMan,UpdateMan,SeoTitle,SeoKeyword,SeoDescription,MerUserId,TopUserId,Remark,BrandId,DirectFlag,CapFlag,QrPayFlag,BankCardType,TradeAmount,TradeSerialNo,ClearDate,TradeDate,SnNo,MerBuddyType,HelpMonthCount,MerHelpFlag,MerNo,MerchantId,UserId,RecordNo) select Id,Sort,QueryCount,Status,Version,CreateDate,UpdateDate,CreateMan,UpdateMan,SeoTitle,SeoKeyword,SeoDescription,MerUserId,TopUserId,Remark,BrandId,DirectFlag,CapFlag,QrPayFlag,BankCardType,TradeAmount,TradeSerialNo,ClearDate,TradeDate,SnNo,MerBuddyType,HelpMonthCount,MerHelpFlag,MerNo,MerchantId,UserId,RecordNo from TradeRecordTest order by Id;");
-            }
-            // OtherMySqlConn.connstr = ;
-            return "ok";
-        }
-
-        public string test()
-        {
-            string result = "ok";
-            OtherMySqlConn.connstr = "server=47.109.31.237;port=3306;user=KxsMainServer;password=Rw2imhXQQt5ODWIF;database=KxsMainServer;charset=utf8;";
-            DataTable dt = OtherMySqlConn.dtable("select * from ProfitSubsidyDetail where TradeMonth='202204'");
-            WebCMSEntities db = new WebCMSEntities();
-            foreach (DataRow dr in dt.Rows)
-            {
-                int BrandId = int.Parse(function.CheckInt(dr["BrandId"].ToString()));
-                int MerchantId = int.Parse(function.CheckInt(dr["MerchantId"].ToString()));
-                int SubsidyUserId = int.Parse(function.CheckInt(dr["SubsidyUserId"].ToString()));
-                int SubsidyType = int.Parse(function.CheckInt(dr["SubsidyType"].ToString()));
-                ulong MerHelpFlag = ulong.Parse(function.CheckInt(dr["MerHelpFlag"].ToString()));
-                decimal SubsidyProfitRate = decimal.Parse(function.CheckNum(dr["SubsidyProfitRate"].ToString()));
-                decimal CreditTradeAmt = decimal.Parse(function.CheckNum(dr["CreditTradeAmt"].ToString()));
-                decimal QrCreditTradeAmt = decimal.Parse(function.CheckNum(dr["QrCreditTradeAmt"].ToString()));
-                decimal NonQrCreditTradeAmt = decimal.Parse(function.CheckNum(dr["NonQrCreditTradeAmt"].ToString()));
-                decimal CreditProfitRate = decimal.Parse(function.CheckNum(dr["CreditProfitRate"].ToString()));
-                decimal SubsidyProfit = decimal.Parse(function.CheckNum(dr["SubsidyProfit"].ToString()));
-                string TradeMonth = dr["TradeMonth"].ToString();
-                string SnNo = dr["SnNo"].ToString();
-                string MerNo = dr["MerNo"].ToString();
-                string RecordNo = dr["RecordNo"].ToString();
-
-                MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == SnNo) ?? new MachineForSnNo();
-                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId) ?? new PosMachinesTwo();
-                PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == MerchantId) ?? new PosMerchantInfo();
-                ProfitSubsidyDetail item = db.ProfitSubsidyDetail.FirstOrDefault(m => m.SubsidyUserId == SubsidyUserId && m.TradeMonth == TradeMonth && m.MerchantId == MerchantId && m.SnNo == SnNo);
-                if (item == null)
-                {
-                    db.ProfitSubsidyDetail.Add(new ProfitSubsidyDetail()
-                    {
-                        CreateDate = DateTime.Now,
-                        UpdateDate = DateTime.Now,
-                        RecordNo = RecordNo, //流水号
-                        BrandId = BrandId, //品牌
-                        ProductName = RelationClass.GetKqProductBrandInfo(BrandId), //产品名称
-                        TradeMonth = TradeMonth, //交易月份
-                        MerchantId = MerchantId, //商户
-                        MerNo = MerNo, //渠道商户编号
-                        SnNo = SnNo, //渠道SN号
-                        MerRegTime = pos.BindingTime, //渠道注册时间
-                        MerStandardDate = merchant.MerStandardDate, //商户激活时间
-                        BelongUserId = merchant.UserId, //商户归属人
-                        MerHelpFlag = MerHelpFlag, //是否属于扶持周期内商户
-                        SubsidyUserId = SubsidyUserId, //补贴人
-                        SubsidyType = SubsidyType, //分润补贴类型
-                        SubsidyProfitRate = SubsidyProfitRate, //创客活动期内直营商户分润万分之十
-                        CreditTradeAmt = CreditTradeAmt, //商户贷记卡交易总金额
-                        QrCreditTradeAmt = QrCreditTradeAmt, //商户(云闪付)贷记卡交易总金额
-                        NonQrCreditTradeAmt = NonQrCreditTradeAmt, //商户(非云闪付)贷记卡交易总金额
-                        CreditProfitRate = CreditProfitRate, //(非云闪付)贷记卡交易分润比例
-                        SubsidyProfit = SubsidyProfit, //商户(非云闪付)贷记卡交易分润补贴金额
-                    });
-                    // db.SaveChanges();
-                    result += "增加--SubsidyUserId:" + SubsidyUserId + ";SnNo" + SnNo + ";SubsidyProfit" + SubsidyProfit + ";";
-                }
-                else
-                {
-                    if (item.SubsidyProfit < SubsidyProfit)
-                    {
-                        item.SubsidyProfitRate = SubsidyProfitRate; //创客活动期内直营商户分润万分之十
-                        item.SubsidyProfit = SubsidyProfit; //商户(非云闪付)贷记卡交易分润补贴金额
-                        result += "更新--SubsidyUserId:" + SubsidyUserId + ";SnNo" + SnNo + ";SubsidyProfit" + SubsidyProfit + ";";
-                        // db.SaveChanges();
-                    }
-                }
-            }
-            // OtherMySqlConn.connstr = ;
-            db.Dispose();
-            return result;
-        }
-
-        public string test2()
-        {
-            string result = "ok";
-            OtherMySqlConn.connstr = "server=47.108.231.170;port=3306;user=KxsMainServer;password=Rw2imhXQQt5ODWIF;database=KxsMainServer;charset=utf8;";
-            DataTable dt = OtherMySqlConn.dtable("select SubsidyUserId,BrandId,sum(SubsidyProfitRate) as SubsidyProfit from ProfitSubsidyDetail where TradeMonth='202204' and SubsidyUserId>0 GROUP BY SubsidyUserId,BrandId");
-            WebCMSEntities db = new WebCMSEntities();
-            DateTime checkDate = DateTime.Parse("2022-05-20 00:00:00");
-            foreach (DataRow dr in dt.Rows)
-            {
-                int BrandId = int.Parse(function.CheckInt(dr["BrandId"].ToString()));
-                int SubsidyUserId = int.Parse(function.CheckInt(dr["SubsidyUserId"].ToString()));
-                decimal SubsidyProfit = decimal.Parse(function.CheckNum(dr["SubsidyProfit"].ToString()));
-                UserAccountRecord userAccountRecord = db.UserAccountRecord.FirstOrDefault(m => m.Id > 86538 && m.CreateDate > checkDate && m.UserId == SubsidyUserId && m.ProductType == BrandId && m.ChangeType == 111);
-                if (userAccountRecord == null)
-                {
-                    UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == SubsidyUserId);
-                    if (account == null)
-                    {
-                        account = db.UserAccount.Add(new UserAccount()
-                        {
-                            Id = SubsidyUserId,
-                            UserId = SubsidyUserId,
-                        }).Entity;
-                        db.SaveChanges();
-                    }
-                    decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
-                    decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
-                    decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
-                    // account.BalanceAmount += SubsidyProfit;
-                    // account.TotalAmount += SubsidyProfit;
-                    decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
-                    decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
-                    decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
-                    userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
-                    {
-                        CreateDate = DateTime.Now,
-                        UpdateDate = DateTime.Now,
-                        UserId = SubsidyUserId, //创客
-                        ProductType = BrandId,
-                        ChangeType = 111, //变动类型
-                        ChangeAmount = SubsidyProfit, //变更金额
-                        BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
-                        AfterTotalAmount = AfterTotalAmount, //变更后总金额
-                        BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
-                        AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
-                        BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
-                        AfterBalanceAmount = AfterBalanceAmount, //变更后余额
-                        Remark = "直拓商户补贴",
-                    }).Entity;
-                    db.SaveChanges();
-                }
-                else
-                {
-                    userAccountRecord.ChangeAmount = SubsidyProfit;
-                    db.SaveChanges();
-                }
-            }
-            // OtherMySqlConn.connstr = ;
-            db.Dispose();
-            return result;
-        }
-
-        // 大盟主标记扫描
-        public string leaderflag()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            List<int> ids = new List<int>();
-            // List<PosCouponRecord> records = db.PosCouponRecord.Where(m => m.FromUserId == 597).ToList();
-            // foreach(PosCouponRecord record in records)
-            // {
-            //     ids.Add(record.PosCouponId);
-            // }
-            ids.Add(6843);
-            List<PosCoupons> coupons = db.PosCoupons.Where(m => ids.Contains(m.Id) && m.IsUse == 1).ToList();
-            foreach (PosCoupons coupon in coupons)
-            {
-                PosSns.Add(coupon.ExchangeCode);
-            }
-            foreach (PosCoupons coupon in coupons)
-            {
-                ChildNo(db, coupon.ExchangeCode, coupon.ExchangeCode, coupon.LeaderUserId);
-            }
-            // db.SaveChanges();
-            db.Dispose();
-            return "ok";
-        }
-        List<string> nos = new List<string>();
-        private void ChildNo(WebCMSEntities db, string RootCheckNo, string CheckNo, int LeaderUserId)
-        {
-            MachineApply apply = db.MachineApply.FirstOrDefault(m => m.SwapSnExpand.Contains(CheckNo));
-            if(apply != null)
-            {
-                int len = 0;
-                string[] SnList = apply.SwapSnExpand.TrimEnd('\n').Split('\n');
-                foreach(string sn in SnList)
-                {
-                    if(PosSns.Contains(sn.Split(':')[0]) || nos.Contains(sn.Split(':')[0]))
-                    {
-                        len += 1;
-                    }
-                }
-                Orders order = db.Orders.FirstOrDefault(m => m.Id == apply.QueryCount);
-                if(order != null)
-                {
-                    if(!string.IsNullOrEmpty(order.SnNos))
-                    {
-                        if(order.SnNos.Contains(","))
-                        {
-                            string[] SwapSnExpands = order.SnNos.TrimEnd(',').Split(',');
-                            int index = 0;
-                            foreach(string no in SwapSnExpands)
-                            {
-                                if(!nos.Contains(no) && index < len)
-                                {
-                                    index += 1;
-                                    nos.Add(no);
-                                    ChildNo(db, RootCheckNo, no, LeaderUserId);
-                                }
-                            }
-                        }
-                        else
-                        {
-                            string[] SwapSnExpands = order.SnNos.TrimEnd('\n').Split('\n');
-                            int index = 0;
-                            foreach(string no in SwapSnExpands)
-                            {
-                                if(!nos.Contains(no) && index < len)
-                                {
-                                    index += 1;
-                                    nos.Add(no);
-                                    ChildNo(db, RootCheckNo, no, LeaderUserId);
-                                }
-                            }
-                        }
-                    }
-                    else
-                    {
-                        MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == CheckNo) ?? new MachineForSnNo();
-                        PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == forSnNo.SnId);
-                        if(pos != null)
-                        {
-                            // pos.LeaderUserId = LeaderUserId;
-                            // Library.function.WriteLog(LeaderUserId + ":" + pos.PosSn + ":" + apply.SwapSnExpand.TrimEnd('\n').Split('\n').Length, "大盟主奖励标记机具");
-                            Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
-                            Library.function.WriteLog(pos.PosSn + ":" + RootCheckNo + ":" + user.MakerCode + ":" + user.RealName, "大盟主奖励标记机具");
-                        }
-                    }
-                }
-            }
-            else
-            {
-                MachineForSnNo forSnNo = db.MachineForSnNo.FirstOrDefault(m => m.SnNo == CheckNo) ?? new MachineForSnNo();
-                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m=>m.Id == forSnNo.SnId);
-                if(pos != null)
-                {
-                    // pos.LeaderUserId = LeaderUserId;
-                    // Library.function.WriteLog(LeaderUserId + ":" + pos.PosSn, "大盟主奖励标记机具");
-                    Users user = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new Users();
-                    Library.function.WriteLog(pos.PosSn + ":" + RootCheckNo + ":" + user.MakerCode + ":" + user.RealName, "大盟主奖励标记机具");
-                }
-            }
-        }
-        List<string> PosSns = new List<string>();
-        public string ScanNos()
-        {
-            PosSns = new List<string>();
-            PosSns.Add("00005002681889125851");
-            WebCMSEntities db = new WebCMSEntities();
-            foreach(string PosSn in PosSns)
-            {
-                ChildNo(db, PosSn, PosSn, 0);
-            }
-            db.Dispose();
-            return "ok";
-        }
-        
-
-        //补推荐奖励
-        public string AddDirectPrice(int oid = 0)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            List<int> uids = new List<int>(); //领取过的下单创客
-            IQueryable<Orders> orders = db.Orders.Where(m => m.Status > 1 && m.UserId > 1 && m.TotalPrice % 600 == 0 && m.Sort == 0);
-            if(oid > 0)
-            {
-                orders = orders.Where(m => m.Id == oid);
-            }
-            foreach (Orders order in orders.ToList())
-            {
-                if(!uids.Contains(order.UserId))
-                {
-                    bool checkPrize = db.UserAccountRecord.Any(m => m.QueryCount == oid && m.ChangeType == 112);
-                    if(checkPrize)
-                    {
-                        uids.Add(order.UserId);
-                    }
-                    else
-                    {
-                        OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == oid) ?? new OrderProduct();
-                        if (pro.ProductId == 10 || pro.ProductId == 11)
-                        {
-                            Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
-                            if (user != null)
-                            {
-                                bool directPrize = false; //直推奖标记
-                                int ParentUserId = user.ParentUserId;
-                                List<int> proids = new List<int>();
-                                proids.Add(10);
-                                proids.Add(11);
-                                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张券
-                                    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)
-                                            {
-                                                // AlipayPayBack2Service.Instance.DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
-                                                function.WriteLog(order.Id + "," + ParentUserId + "," + pro.ProductCount, "没发的推荐奖励");
-                                                directPrize = true;
-                                            }
-                                        }
-                                        else
-                                        {
-                                            // 盟主直推奖励,可以每次下单获得
-                                            // AlipayPayBack2Service.Instance.DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
-                                            function.WriteLog(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(directPrize)
-                                    {
-                                        ParentUserId = 0;
-                                    }
-                                    else
-                                    {
-                                        ParentUserId = puser.ParentUserId;
-                                    }
-                                }
-                            }
-                        }
-                    }
-                }
-            }
-            return "ok";
-        }
-
-        public string checkLeaderOrder(int OrderId)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            Orders order = db.Orders.FirstOrDefault(m => m.Id == OrderId);
-            if (order != null)
-            {
-                OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == OrderId);
-                if (pro != null)
-                {
-                    //推荐下单奖励
-                    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)
-                            {
-                                bool directPrize = false; //直推奖标记
-                                bool buyPrize = false; //返100购机奖励标记
-                                int leaderFlag = 0; //返600备用金标记
-                                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)
-                                        {
-                                            //扣减备用金
-                                            AlipayPayBack2Service.Instance.OpReserve(db, order, order.UserId, order.TotalPrice, 2, 0, "商城购机");
-                                            //返回到余额
-                                            // OpAccount(db, order, order.UserId, order.TotalPrice / pro.ProductCount, pro.ProductCount);
-                                        }
-                                    }
-                                    //获得100元奖励
-                                    AlipayPayBack2Service.Instance.OpAccount(db, order, order.UserId, 100, pro.ProductCount);
-                                    //推荐奖励
-                                    AlipayPayBack2Service.Instance.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(user.LeaderLevel != 2)
-                                    {
-                                        int PUserId = user.ParentUserId;
-                                        while(PUserId > 0)
-                                        {
-                                            Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId) ?? new Users();
-                                            if(puser.LeaderLevel == 2)
-                                            {
-                                                UserAccount acc = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
-                                                if(acc.LeaderReserve >= order.TotalPrice)
-                                                {
-                                                    //扣减备用金
-                                                    AlipayPayBack2Service.Instance.OpReserve(db, order, puser.Id, order.TotalPrice, 2, order.UserId, "购机奖励");
-                                                    //返回到余额
-                                                    AlipayPayBack2Service.Instance.OpAccount(db, order, puser.Id, order.TotalPrice / pro.ProductCount, pro.ProductCount);
-                                                }
-                                                PUserId = 0;
-                                            }
-                                            else
-                                            {
-                                                PUserId = puser.ParentUserId;
-                                            }
-                                        }
-                                    }
-                                    return "自己就是盟主,发放成功";
-                                }
-                                int ParentUserId = user.ParentUserId;
-                                // List<int> proids = new List<int>();
-                                // proids.Add(10);
-                                // proids.Add(11);
-                                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张券
-                                    if ((machineCount + ActiveCount + couponCount >= 3 || puser.LeaderLevel > 0) && !directPrize)
-                                    {
-                                        // 盟主直推奖励,可以每次下单获得
-                                        AlipayPayBack2Service.Instance.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)
-                                        {
-                                            //购机奖励
-                                            AlipayPayBack2Service.Instance.OpAccount(db, order, puser.Id, 100, pro.ProductCount);
-                                            buyPrize = true;
-                                        }
-                                        if(acccount.LeaderReserve >= order.TotalPrice && puser.LeaderLevel > leaderFlag)
-                                        {
-                                            //扣减备用金
-                                            AlipayPayBack2Service.Instance.OpReserve(db, order, puser.Id, order.TotalPrice, 2, order.UserId, "购机奖励");
-                                            //返回到余额
-                                            AlipayPayBack2Service.Instance.OpAccount(db, order, puser.Id, order.TotalPrice / pro.ProductCount, pro.ProductCount);
-                                            leaderFlag = puser.LeaderLevel;
-                                        }
-                                    }
-                                    ParentUserId = puser.ParentUserId;
-                                }
-                                return "找到上级盟主,发放成功";
-                            }
-                        }
-                    }
-                }
-            }
-            return "失败";
-        }
-    
-    
-        public string setdeposit()
-        {
-            // List<string> ordernos = new List<string>();
-            // ordernos.Add("17343379");
-            string content = "";
-            // foreach(string orderno in ordernos)
-            // {
-            //     content += SetDepositPostService.Instance.QueryFee(orderno) + "\n";
-            // }
-            // List<string> snnos = new List<string>();
-            // foreach(string snno in snnos)
-            // {
-            //     content += SetDepositPostService.Instance.ModifyFee(snno, 0.0006M) + "\n";
-            // }
-            // content = SetDepositPostService.Instance.SetFeeForSft("38888910", "0.63");
-            // content = SetDepositPostService.Instance.SetFeeForBrand("00003202D9625450004213", bzConfigId, yhConfigId, surfeeConfigId, "");
-            return content;
-        }
-
-        public string putdata()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            var list = db.PosMachinesFeeChangeRecord.Where(m => m.Sort == 2 && m.Status == 0).ToList();
-            foreach(var sub in list)
-            {
-                Users user = db.Users.FirstOrDefault(m => m.Id == sub.UserId) ?? new Users();
-                string info = "{\"RecordId\":\"" + sub.Id + "\",\"PosId\":\"" + sub.PosId + "\",\"Fee\": \"0.6\",\"Kind\": \"2\",\"OpMan\": \"" + user.MakerCode + "\"}";
-                RedisDbconn.Instance.AddList("SetDepositQueue", info);
-            }
-            db.Dispose();
-            return "ok";
-        }
-    
-
-        public string test3()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            StoreApplyHelper.Instance.DoSomething(db, 152335);
-            // AlipayPayBack2Service.Instance.DoOrderV2(db, 139620);
-            // PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == sn);
-            // if(pos != null)
-            // {
-            //     //发放大盟主奖励
-            //     if(pos.LeaderUserId > 0)
-            //     {
-            //         RedisDbconn.Instance.AddList("LeaderPrizeQueue", pos.Id);
-            //     }
-            //     //发放运营中心奖励
-            //     if(pos.OpId > 0)
-            //     {
-            //         RedisDbconn.Instance.AddList("OperatePrizeQueue", pos.Id);
-            //         AlipayPayBack2Service.Instance.ActReserveBack(pos.OpId, pos.OpReserve1, pos.OpReserve2, pos.OpReserve3);
-            //     }
-            // }
-            // db.Dispose();
-            return "ok";
-        }
-    
-        public string test5()
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
-            string PreMonth = DateTime.Now.AddMonths(-2).ToString("yyyyMM");
-            string minId = "0";
-            string connstr = Library.ConfigurationManager.AppSettings["Pxc1SqlConnStr"].ToString();
-            DataTable minIdDt = CustomerSqlConn.dtable("select min(Id) from ProfitRewardRecord where TradeMonth='" + PreMonth + "'", connstr);
-            if(minIdDt.Rows.Count > 0)
-            {
-                minId = minIdDt.Rows[0][0].ToString();
-            }
-            ResetSmallStoreHelper.Instance.DoMethod(db, PreMonth, minId, "10115");
-            db.Dispose();
-            return "ok";
-        }
-
-        public string test6()
-        {
-            return "ok";
-        }
-
-        public string sethkfee()
-        {
-            string bzConfigId = "", yhConfigId = "", surfeeConfigId = "";
-            int Kind = 2;
-            WebCMSEntities db = new WebCMSEntities();
-            PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == "00005702832513011041") ?? new PosMachinesTwo();
-            if(pos.BrandId == 8)
-            {
-                if(Kind == 1)
-                {
-                    bzConfigId = "684753829778436096";
-                    yhConfigId = "684754046342934528";
-                    surfeeConfigId = "570331704834170880";
-                }
-                else
-                {
-                    bzConfigId = "585167132691009536";
-                    yhConfigId = "579355312831074304";
-                    surfeeConfigId = "570331704834170880";
-                }
-            }
-            else
-            {
-                if(Kind == 1)
-                {
-                    bzConfigId = "691739824478494720";
-                    yhConfigId = "691740128238383104";
-                    surfeeConfigId = "574600660289888256";
-                }
-                else
-                {
-                    bzConfigId = "584068951081226240";
-                    yhConfigId = "584070145207963648";
-                    surfeeConfigId = "574600660289888256";
-                }
-            }
-            string content = SetDepositPostService.Instance.HKSetFeeForBrand(pos.PosSn, bzConfigId, yhConfigId, surfeeConfigId, pos.BrandId);
-            return content;
-        }
-    
-    
-    
-    
-    
-    
-    
-        public string add600(int OrderId = 0)
-        {
-            WebCMSEntities db = new WebCMSEntities();
-            List<int> couponIds = new List<int>();
-            couponIds.Add(74648);
-            couponIds.Add(74649);
-            couponIds.Add(74650);
-            Orders order = db.Orders.FirstOrDefault(m => m.Id == OrderId) ?? new Orders();
-            OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == OrderId) ?? new OrderProduct();
-            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元奖励
-                            AlipayPayBack2Service.Instance.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)
-                                    {
-                                        //扣减备用金
-                                        AlipayPayBack2Service.Instance.OpReserve(db, order, order.UserId, order.TotalPrice, 0, 0, "商城购机(储备金支付)");
-                                    }
-                                }
-                            }
-                            //获得100元奖励
-                            AlipayPayBack2Service.Instance.OpAccount(db, order, order.UserId, 100, pro.ProductCount);
-                            //推荐奖励
-                            AlipayPayBack2Service.Instance.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)
-                                                    {
-                                                        //扣减备用金
-                                                        AlipayPayBack2Service.Instance.OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
-                                                        //返回到余额
-                                                        AlipayPayBack2Service.Instance.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)
-                                                {
-                                                    //扣减备用金
-                                                    AlipayPayBack2Service.Instance.OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
-                                                    //返回到余额
-                                                    AlipayPayBack2Service.Instance.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)
-                                                {
-                                                    //扣减备用金
-                                                    AlipayPayBack2Service.Instance.OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, 0, "商城购机");
-                                                    //返回到余额
-                                                    AlipayPayBack2Service.Instance.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;
-                                    }
-                                }
-                            }
-                            return "ok";
-                        }
-                        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)
-                            {
-                                AlipayPayBack2Service.Instance.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)
-                                {
-                                    //购机奖励
-                                    AlipayPayBack2Service.Instance.OpAccount(db, order, puser.Id, 100, pro.ProductCount);
-                                    buyPrize = true;
-                                }
-                                if(acccount.LeaderReserve >= 400 * pro.ProductCount && puser.LeaderLevel > leaderFlag && leaderFlag < 2 && OncePrizeFlag4)
-                                {
-                                    //扣减备用金
-                                    AlipayPayBack2Service.Instance.OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, order.UserId, "购机奖励");
-                                    //返回到余额
-                                    AlipayPayBack2Service.Instance.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)
-                                {
-                                    //购机奖励
-                                    AlipayPayBack2Service.Instance.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;
-                        }
-                    }
-                }
-                function.WriteLog("\r\n\r\n", "推荐下单奖励监控日志");
-            }
-            db.Dispose();
-            return "ok";
-        }
     
     }
 }