浏览代码

添加取消返现和回复返现接口

lcl 1 年之前
父节点
当前提交
0f31e2bded
共有 3 个文件被更改,包括 72 次插入5 次删除
  1. 7 0
      AppStart/Redis/RedisDbconn.cs
  2. 60 5
      Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs
  3. 5 0
      global.json

+ 7 - 0
AppStart/Redis/RedisDbconn.cs

@@ -157,6 +157,13 @@ namespace MySystem
         }
         #endregion
 
+        #region 移除列表
+        public long RemoveFromList(string key, object value, int count = 1)
+        {            
+            return csredis.LRem(key, count, value);
+        }
+        #endregion
+
         #region 添加排序列表对象
         public long AddSort(string key, object value, decimal score)
         {

+ 60 - 5
Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs

@@ -394,16 +394,71 @@ namespace MySystem.Areas.Api.Controllers.v1
 
 
 
-
-        public string test()
+        #region 经营数据-统计数据-经营详情-取消返现
+        [Authorize]
+        public JsonResult CancelDivi(string value)
+        {
+            value = DesDecrypt(value);
+            JsonData data = JsonMapper.ToObject(value);
+            AppResultJson result = CancelDiviDo(value);
+            return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
+        }
+        private AppResultJson CancelDiviDo(string value)
         {
-            return new WeChatFunction(_accessor.HttpContext).GetPlatCert();
+            JsonData data = JsonMapper.ToObject(value);
+            Dictionary<string, object> Obj = new Dictionary<string, object>();
+            int Id = int.Parse(function.CheckInt(data["id"].ToString()));
+            ConsumerOrders order = maindb.ConsumerOrders.FirstOrDefault(m => m.Id == Id);
+            if(order != null)
+            {
+                List<ConsumerOrders> suborders = RedisDbconn.Instance.GetList<ConsumerOrders>("ConsumerOrders:Divi:" + order.PayMode + ":" + order.MerchantId);
+                if(suborders.Count > 0)
+                {
+                    ConsumerOrders suborder = suborders.FirstOrDefault(m => m.Id == Id);
+                    if(suborder != null)
+                    {
+                        order.CurDivi = suborder.CurDivi;
+                        maindb.SaveChanges();
+                        RedisDbconn.Instance.RemoveFromList("ConsumerOrders:Divi:" + order.PayMode + ":" + order.MerchantId, suborder);
+                        return new AppResultJson() { Status = "1", Info = "", Data = Obj };
+                    }
+                }
+            }
+            return new AppResultJson() { Status = "-1", Info = "取消失败", Data = Obj };
         }
+        #endregion
 
-        public string test2()
+        #region 经营数据-统计数据-经营详情-恢复返现
+        [Authorize]
+        public JsonResult RestoreDivi(string value)
         {
-            return new WeChatFunction(_accessor.HttpContext).GetPublicKey();
+            value = DesDecrypt(value);
+            JsonData data = JsonMapper.ToObject(value);
+            AppResultJson result = RestoreDiviDo(value);
+            return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
         }
+        private AppResultJson RestoreDiviDo(string value)
+        {
+            JsonData data = JsonMapper.ToObject(value);
+            Dictionary<string, object> Obj = new Dictionary<string, object>();
+            int Id = int.Parse(function.CheckInt(data["id"].ToString()));
+            ConsumerOrders order = maindb.ConsumerOrders.FirstOrDefault(m => m.Id == Id);
+            if(order != null)
+            {
+                List<ConsumerOrders> suborders = RedisDbconn.Instance.GetList<ConsumerOrders>("ConsumerOrders:Divi:" + order.PayMode + ":" + order.MerchantId);
+                if(suborders.Count > 0)
+                {
+                    ConsumerOrders suborder = suborders.FirstOrDefault(m => m.Id == Id);
+                    if(suborder == null)
+                    {
+                        RedisDbconn.Instance.AddRightList("ConsumerOrders:Divi:" + order.PayMode + ":" + order.MerchantId, order);
+                    }
+                    return new AppResultJson() { Status = "1", Info = "", Data = Obj };
+                }
+            }
+            return new AppResultJson() { Status = "-1", Info = "恢复失败", Data = Obj };
+        }
+        #endregion
 
 
 

+ 5 - 0
global.json

@@ -0,0 +1,5 @@
+{
+  "sdk": {
+    "version": "3.0.100"
+  }
+}