|
@@ -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
|
|
|
|
|
|
|
|
|
|