lcl 1 рік тому
батько
коміт
a3ffadf164
1 змінених файлів з 14 додано та 0 видалено
  1. 14 0
      AppStart/Helper/Profit/ProfitHelper.cs

+ 14 - 0
AppStart/Helper/Profit/ProfitHelper.cs

@@ -70,6 +70,20 @@ namespace MySystem
                         ActDate = pos.ActivationTime, //激活时间
                     });
                     db.SaveChanges();
+
+                    string IdBrand = merchant.UserId + "_0";
+                    UserMachineData userData = db.UserMachineData.FirstOrDefault(m => m.IdBrand == IdBrand);
+                    if (userData == null)
+                    {
+                        userData = db.UserMachineData.Add(new UserMachineData()
+                        {
+                            IdBrand = IdBrand,
+                        }).Entity;
+                        db.SaveChanges();
+                    }
+                    userData.ActProfit += ActPrize;
+                    db.SaveChanges();
+
                     int GetUserId = merchant.UserId;
                     KxsMainModels.UserAccount account = kxsdb.UserAccount.FirstOrDefault(m => m.Id == GetUserId);
                     if (account == null)