瀏覽代碼

盛付通费率调整队列

lcl 9 月之前
父節點
當前提交
6a8de12fae
共有 3 個文件被更改,包括 89 次插入5 次删除
  1. 5 0
      AppStart/Helper/SetDepositPostService.cs
  2. 79 0
      AppStart/Helper/SetSftFeeService.cs
  3. 5 5
      Startup.cs

+ 5 - 0
AppStart/Helper/SetDepositPostService.cs

@@ -82,6 +82,11 @@ namespace MySystem
                                         if(Kind == 1) Kind = 2;
                                         if(Kind == 3) Fee = 0.6M;
                                     }
+                                    if(pos.BrandId == 7 && Kind == 4)
+                                    {
+                                        Fee = 0.65M;
+                                        addRate = 3;
+                                    }
                                     if(pos.BrandId == 1 || pos.BrandId == 3) //金控
                                     {
                                         addRate = addRate * 100;

+ 79 - 0
AppStart/Helper/SetSftFeeService.cs

@@ -0,0 +1,79 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Threading;
+using MySystem.Models;
+using Library;
+
+namespace MySystem
+{
+    /// <summary>
+    /// 设置机具费率标记并推送消息
+    /// </summary>
+    public class SetSftFeeService
+    {
+        public readonly static SetSftFeeService Instance = new SetSftFeeService();
+        private SetSftFeeService()
+        { }
+
+        public void Start()
+        {
+            Thread th = new Thread(doSomething);
+            th.IsBackground = true;
+            th.Start();
+        }
+
+        public void doSomething()
+        {
+            while (true)
+            {
+                if (DateTime.Now.Hour > 0 && DateTime.Now.Hour < 19)
+                {
+                    try
+                    {
+                        string check = function.ReadInstance("/SftFee/check" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt");
+                        if (string.IsNullOrEmpty(check))
+                        {
+                            function.WritePage("/SftFee/", "check" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt", DateTime.Now.ToString("HH:mm:ss"));
+                            WebCMSEntities db = new WebCMSEntities();
+                            var date = DateTime.Now.AddDays(-420);
+                            var checkDate = DateTime.Parse("2024-06-01 00:00:00").AddDays(-420);
+                            bool op = true;
+                            int StartId = 0;
+                            while(op)
+                            {
+                                var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.Status, m.BindingState, m.BindingTime, m.UpFeeFlag, m.DownFeeFlag, m.BrandId }).Where(m => m.Id > StartId && m.Status > -1 && m.BindingTime <= date && m.BindingState == 1 && m.BrandId == 7 && m.BindingTime >= checkDate).OrderBy(m => m.Id).Take(100).ToList();
+                                function.WriteLog(DateTime.Now.ToString(), "420天盛付通费率加万2");
+                                function.WriteLog(posList.Count.ToString(), "420天盛付通费率加万2");
+                                if(posList.Count > 0)
+                                {
+                                    //循环修改机具费率调升标记
+                                    //统计需要推送消息的用户Id
+                                    foreach (var item in posList)
+                                    {
+                                        string Fee = "0.62";
+                                        function.WriteLog(item.Id.ToString(), "420天盛付通费率加万2");
+                                        string info = "{\"RecordId\":\"\",\"PosId\":\"" + item.Id + "\",\"Fee\": \"" + Fee + "\",\"Kind\": \"4\",\"OpMan\": \""+"系统"+"\"}";
+                                        RedisDbconn.Instance.AddList("SetDepositQueue", info);
+                                        StartId = item.Id;
+                                    }
+                                }
+                                else
+                                {
+                                    op = false;
+                                }
+                            }
+                            db.Dispose();
+                        }
+                    }
+                    catch (Exception ex)
+                    {
+                        function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "425天盛付通费率加万2异常");
+                    }
+                }
+                Thread.Sleep(800000);
+            }
+        }
+    }
+}

+ 5 - 5
Startup.cs

@@ -147,11 +147,11 @@ namespace MySystem
             }
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {
-                // SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
-                // SetDepositService.Instance.Start(); //调整费率(通知、标记)
-                // SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
-                // SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
-                // ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
+                SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
+                SetDepositService.Instance.Start(); //调整费率(通知、标记)
+                SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
+                SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
+                ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
             }
         }