|
|
@@ -1231,7 +1231,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- BeforeDeposit = int.Parse(pos.PrizeParams);
|
|
|
+ BeforeDeposit = int.Parse(function.CheckInt(pos.PrizeParams));
|
|
|
}
|
|
|
|
|
|
posInfo.StoreId = toStore.Id;
|
|
|
@@ -1373,7 +1373,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- BeforeDeposit = int.Parse(pos.PrizeParams);
|
|
|
+ BeforeDeposit = int.Parse(function.CheckInt(pos.PrizeParams));
|
|
|
}
|
|
|
|
|
|
posInfo.StoreId = toStore.Id;
|