123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- 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);
- IQueryable<ActivateRecord> acts = spdb.ActivateRecord;
- acts = acts.Where(m => m.ActivateDate >= start && m.Status == 1);
- acts = acts.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();
- RedisDbconn.Instance.Set("PosMachinesTwo:" + pos.Id, pos);
- RedisDbconn.Instance.Set("PosMachinesTwo:" + pos.PosSn, pos);
- }
- // PxcModels.PosMerchantInfo merchant = db.PosMerchantInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId);
- // if (merchant != null)
- // {
- // merchant.ActiveStatus = 1;
- // merchant.MerStandardDate = DateTime.Now;
- // db.SaveChanges();
- // RedisDbconn.Instance.Set("PosMerchantInfo:" + merchant.Id, merchant);
- // }
- 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);
- }
- }
- }
- }
|