|
@@ -146,10 +146,11 @@ namespace MySystem
|
|
|
{
|
|
|
merchant.TotalActAmount += TradeAmount;
|
|
|
merchant.TotalActActual += ActualAmount;
|
|
|
- if(merchant.Version == 0 && merchant.TotalActAmount >= 10000M)
|
|
|
+ if(merchant.ActivationStatus == 0 && merchant.TotalActAmount >= 10000M)
|
|
|
{
|
|
|
RedisDbconn.Instance.AddList("ActProfitQueue", MerchantId.ToString());
|
|
|
- merchant.Version = 1;
|
|
|
+ merchant.ActivationStatus = 1;
|
|
|
+ merchant.ActivationDate = DateTime.Now;
|
|
|
}
|
|
|
}
|
|
|
}
|