|
@@ -48,36 +48,43 @@ namespace MySystem.Controllers
|
|
|
return View();
|
|
|
}
|
|
|
|
|
|
- public string test(int id = 0)
|
|
|
+ public string test()
|
|
|
{
|
|
|
string txt = "ok";
|
|
|
// txt = WeChatFunction.Instance.QueryProfitShare("1646405429","4200001807202306098649105270","2023060910241258564572510");
|
|
|
// ProfitHelper.Instance.ReturnStat(Id, 2);
|
|
|
- WebCMSEntities db = new WebCMSEntities();
|
|
|
- List<int> oids = new List<int>();
|
|
|
- if(id > 0)
|
|
|
- {
|
|
|
- oids.Add(id);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oids.Add(15);
|
|
|
- oids.Add(16);
|
|
|
- oids.Add(17);
|
|
|
- oids.Add(18);
|
|
|
- oids.Add(19);
|
|
|
- oids.Add(20);
|
|
|
- }
|
|
|
- foreach(int oid in oids)
|
|
|
- {
|
|
|
- ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == oid);
|
|
|
- if(order != null)
|
|
|
- {
|
|
|
- RedisDbconn.Instance.AddList("ConsumerOrders:Divi:2:List", order.Id.ToString());
|
|
|
- // RedisDbconn.Instance.AddList("ConsumerOrders:Divi:2:" + order.MerchantId, order);
|
|
|
- }
|
|
|
- }
|
|
|
- db.Dispose();
|
|
|
+ // WebCMSEntities db = new WebCMSEntities();
|
|
|
+ // List<int> oids = new List<int>();
|
|
|
+ // if(id > 0)
|
|
|
+ // {
|
|
|
+ // oids.Add(id);
|
|
|
+ // }
|
|
|
+ // else
|
|
|
+ // {
|
|
|
+ // oids.Add(15);
|
|
|
+ // oids.Add(16);
|
|
|
+ // oids.Add(17);
|
|
|
+ // oids.Add(18);
|
|
|
+ // oids.Add(19);
|
|
|
+ // oids.Add(20);
|
|
|
+ // }
|
|
|
+ // foreach(int oid in oids)
|
|
|
+ // {
|
|
|
+ // ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == oid);
|
|
|
+ // if(order != null)
|
|
|
+ // {
|
|
|
+ // RedisDbconn.Instance.AddList("ConsumerOrders:Divi:2:List", order.Id.ToString());
|
|
|
+ // // RedisDbconn.Instance.AddList("ConsumerOrders:Divi:2:" + order.MerchantId, order);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // db.Dispose();
|
|
|
+
|
|
|
+ // string content = function.ReadInstance("/wx.log");
|
|
|
+ // string[] contents = content.Split('\n');
|
|
|
+ // foreach(string sub in contents)
|
|
|
+ // {
|
|
|
+ // RedisDbconn.Instance.AddList("WeChatPayBack", sub);
|
|
|
+ // }
|
|
|
return txt;
|
|
|
}
|
|
|
|