Browse Source

恢复返现功能

lcl 1 year ago
parent
commit
f0d5dfb13c
2 changed files with 31 additions and 10 deletions
  1. 8 8
      AppStart/Helper/Profit/ProfitHelper.cs
  2. 23 2
      Controllers/HomeController.cs

+ 8 - 8
AppStart/Helper/Profit/ProfitHelper.cs

@@ -278,14 +278,14 @@ namespace MySystem
                                                     {
                                                         string RefundNo = DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
                                                         int Status = 1;
-                                                        // if(order.PayMode == 1)
-                                                        // {
-                                                        //     string result = AlipayFunction.Instance.Refund(suborder.SeoTitle, RefundNo, Math.Round(GetMoney, 2).ToString(), "门店消费补贴", merchantAdd.AlipayAuthToken);
-                                                        // }
-                                                        // else
-                                                        // {
-                                                        //     Dictionary<string, string> dic = WeChatFunction.Instance.Refund(merchantAdd.SubMchid, Math.Round(GetMoney, 2), suborder.PayMoney, suborder.OrderNo, RefundNo, "门店消费补贴");
-                                                        // }
+                                                        if(order.PayMode == 1)
+                                                        {
+                                                            string result = AlipayFunction.Instance.Refund(suborder.SeoTitle, RefundNo, Math.Round(GetMoney, 2).ToString(), "门店消费补贴", merchantAdd.AlipayAuthToken);
+                                                        }
+                                                        else
+                                                        {
+                                                            Dictionary<string, string> dic = WeChatFunction.Instance.Refund(merchantAdd.SubMchid, Math.Round(GetMoney, 2), suborder.PayMoney, suborder.OrderNo, RefundNo, "门店消费补贴");
+                                                        }
                                                         if(Status == 1)
                                                         {
                                                             db.ConsumerProfit.Add(new ConsumerProfit()

+ 23 - 2
Controllers/HomeController.cs

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