浏览代码

修复展示分润问题

lichunlei 1 年之前
父节点
当前提交
8c7375a2bb
共有 3 个文件被更改,包括 38 次插入2 次删除
  1. 2 1
      .gitignore
  2. 1 1
      AppStart/Helper/SycnProfitServiceV3.cs
  3. 35 0
      Controllers/HomeController.cs

+ 2 - 1
.gitignore

@@ -1,3 +1,4 @@
 /bin
 /publish
-/obj
+/obj
+/appsettings.json

+ 1 - 1
AppStart/Helper/SycnProfitServiceV3.cs

@@ -66,7 +66,7 @@ namespace MySystem
             {
                 StartId = "0";
             }
-            CustomerSqlConn.op("insert into ProfitRecord (CreateDate,CreateMan,SeoTitle,UserId,DirectFlag,ProfitAmount) select now(),'root','" + date + "',UserId,sum(CreditTradeProfit+TradeProfit) from ProfitRewardRecord p where Id>=" + StartId + " and CheckStatus=0 and UserId>0 and TradeMonth='" + date + "' group by UserId order by UserId", MysqlConn.connstr);
+            CustomerSqlConn.op("insert into ProfitRecord (CreateDate,CreateMan,SeoTitle,UserId,DirectFlag,ProfitAmount) select now(),'root','" + date + "',UserId,ProfitType,sum(CreditTradeProfit+TradeProfit) from ProfitRewardRecord p where Id>=" + StartId + " and CheckStatus=0 and UserId>0 and TradeMonth='" + date + "' group by UserId,ProfitType order by UserId", MysqlConn.connstr);
             
             CustomerSqlConn.op("update ProfitRewardRecord set CheckStatus=1 where Id>=" + StartId + " and CheckStatus=0 and BrandId=" + BrandId + " and UserId>0 and TradeMonth='" + date + "'", MysqlConn.connstr);
 

+ 35 - 0
Controllers/HomeController.cs

@@ -72,5 +72,40 @@ namespace MySystem.Controllers
             db.Dispose();
             return "ok";
         }
+
+        public string test()
+        {
+            // DataTable dt = CustomerSqlConn.dtable("select UserId,sum(ProfitAmount) from ProfitRecord where UserId>0 group by UserId", MysqlConn.connstr);
+            // int index = 0;
+            // WebCMSEntities db = new WebCMSEntities();
+            // foreach (DataRow dr in dt.Rows)
+            // {
+            //     index += 1;
+            //     int UserId = int.Parse(dr["UserId"].ToString());
+            //     decimal ProfitMoney = decimal.Parse(dr[1].ToString());
+            //     try
+            //     {
+            //         string IdBrand = UserId + "_0";
+            //         UserMachineData MachineData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
+            //         if (MachineData == null)
+            //         {
+            //             MachineData = db.UserMachineData.Add(new UserMachineData()
+            //             {
+            //                 IdBrand = IdBrand,
+            //             }).Entity;
+            //             db.SaveChanges();
+            //         }
+            //         MachineData.TradeProfit = ProfitMoney;
+            //         db.SaveChanges();
+            //     }
+            //     catch (Exception ex)
+            //     {
+            //         function.WriteLog(DateTime.Now.ToString() + "\n" + UserId + "," + ProfitMoney + "\n" + ex.ToString(), "同步到余额异常");
+            //     }
+            //     function.WriteLog(index.ToString(), "同步分润数据");
+            // }
+            // db.Dispose();
+            return "ok";
+        }
     }
 }