|
@@ -53,7 +53,7 @@ namespace MySystem.Controllers
|
|
|
string txt = "ok";
|
|
|
// txt = WeChatFunction.Instance.QueryProfitShare("1646405429","4200001807202306098649105270","2023060910241258564572510");
|
|
|
// ProfitHelper.Instance.ReturnStat(Id, 2);
|
|
|
- // WebCMSEntities db = new WebCMSEntities();
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
// List<int> oids = new List<int>();
|
|
|
// if(id > 0)
|
|
|
// {
|
|
@@ -77,7 +77,6 @@ namespace MySystem.Controllers
|
|
|
// // RedisDbconn.Instance.AddList("ConsumerOrders:Divi:2:" + order.MerchantId, order);
|
|
|
// }
|
|
|
// }
|
|
|
- // db.Dispose();
|
|
|
|
|
|
// string content = function.ReadInstance("/wx.log");
|
|
|
// string[] contents = content.Split('\n');
|
|
@@ -85,6 +84,28 @@ namespace MySystem.Controllers
|
|
|
// {
|
|
|
// RedisDbconn.Instance.AddList("WeChatPayBack", sub);
|
|
|
// }
|
|
|
+
|
|
|
+ // DataTable dt = CustomerSqlConn.dtable("select Id from ConsumerProfit where CreateDate<='2024-01-26 11:25:00' and SeoDescription is not null order by Id desc limit 2000", MysqlConn.SqlConnStr);
|
|
|
+ // foreach(DataRow dr in dt.Rows)
|
|
|
+ // {
|
|
|
+ // int Id = int.Parse(dr["Id"].ToString());
|
|
|
+ // ConsumerProfit profit = db.ConsumerProfit.FirstOrDefault(m => m.Id == Id);
|
|
|
+ // if(profit != null)
|
|
|
+ // {
|
|
|
+ // ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == profit.OrderId) ?? new ConsumerOrders();
|
|
|
+ // MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == profit.MerchantId) ?? new MerchantAddInfo();
|
|
|
+ // if(order.PayMode == 1)
|
|
|
+ // {
|
|
|
+ // string result = AlipayFunction.Instance.Refund(order.SeoTitle, profit.SeoDescription, profit.GetMoney.ToString(), "门店消费补贴", merchantAdd.AlipayAuthToken);
|
|
|
+ // }
|
|
|
+ // else
|
|
|
+ // {
|
|
|
+ // Dictionary<string, string> dic = WeChatFunction.Instance.Refund(merchantAdd.SubMchid, profit.GetMoney, order.PayMoney, order.OrderNo, profit.SeoDescription, "门店消费补贴");
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // db.Dispose();
|
|
|
+
|
|
|
return txt;
|
|
|
}
|
|
|
|