|
|
@@ -667,7 +667,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
{
|
|
|
account.TotalAmt -= decimal.Parse(OperationAmount);
|
|
|
OperateType = 2;//系统扣减
|
|
|
- description = "系统扣减未使用额度";
|
|
|
+ description = "系统扣减未使用额度" + "-" + Note;
|
|
|
ChangeType = 13;
|
|
|
}
|
|
|
|
|
|
@@ -677,7 +677,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
// sysAdmin.ReturnAmount = decimal.Parse(OperationAmount);
|
|
|
account.TotalAmt += decimal.Parse(OperationAmount);
|
|
|
OperateType = 1;//系统增加
|
|
|
- description = "系统增加未使用额度";
|
|
|
+ description = "系统增加未使用额度" + "-" + Note;
|
|
|
ChangeType = 12;
|
|
|
}
|
|
|
decimal AfterAmount = account.TotalAmt + account.ValidAmount + account.ValidForGetAmount; //变更后总金额
|
|
|
@@ -751,18 +751,18 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
{
|
|
|
account.ValidForGetAmount -= decimal.Parse(OperationAmount);
|
|
|
OperateType = 2;
|
|
|
- description = "系统扣减可提现额度";
|
|
|
+ description = "系统扣减可提现额度" + "-" + Note;
|
|
|
ChangeType = 13;
|
|
|
}
|
|
|
else if (Kind == 1 && decimal.Parse(OperationAmount) > account.ValidForGetAmount)
|
|
|
{
|
|
|
- return "扣减金额大于可提现额度";
|
|
|
+ return "扣减金额大于可提现额度" + "-" + Note;
|
|
|
}
|
|
|
else if (Kind == 2)
|
|
|
{
|
|
|
account.ValidForGetAmount += decimal.Parse(OperationAmount);
|
|
|
OperateType = 1;
|
|
|
- description = "系统增加可提现额度";
|
|
|
+ description = "系统增加可提现额度" + "-" + Note;
|
|
|
ChangeType = 12;
|
|
|
}
|
|
|
decimal AfterAmount = account.TotalAmt + account.ValidAmount + account.ValidForGetAmount; //变更后总金额
|