|
|
@@ -360,6 +360,7 @@ namespace MySystem
|
|
|
decimal TradeAmount = decimal.Parse(selfDr[11].ToString());
|
|
|
int TradeCount = int.Parse(selfDr[12].ToString());
|
|
|
string TradeMonth = TradeDate.Substring(0, 6);
|
|
|
+ ParentNav += "," + UserId + ",";
|
|
|
if (Version < 2)
|
|
|
{
|
|
|
TradeDaySummaryAfter selfStat = db.TradeDaySummaryAfter.FirstOrDefault(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.TradeDate == TradeDate && m.BrandId == BrandId && m.QueryCount == QrPayFlag && m.VipFlag == VipFlag && m.PayType == PayType && m.SeoTitle == "self");
|
|
|
@@ -423,7 +424,6 @@ namespace MySystem
|
|
|
selfStat.NotHelpDirectTradeAmt += TradeAmount;
|
|
|
}
|
|
|
}
|
|
|
- ParentNav += "," + UserId + ",";
|
|
|
if (!string.IsNullOrEmpty(ParentNav))
|
|
|
{
|
|
|
string[] ParentNavList = ParentNav.Trim(',').Replace(",,", ",").Split(',');
|