|
@@ -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)
|