|
@@ -33,6 +33,10 @@ namespace MySystem
|
|
|
if(string.IsNullOrEmpty(check))
|
|
|
{
|
|
|
function.WritePage("/LeaderComp/", DateTime.Now.ToString("yyyyMMdd") + ".txt", DateTime.Now.ToString());
|
|
|
+ if(DateTime.Now.Day == 1)
|
|
|
+ {
|
|
|
+ Ready(DateTime.Now.AddMonths(-1).ToString("yyyyMM"));
|
|
|
+ }
|
|
|
Ready(DateTime.Now.ToString("yyyyMM"));
|
|
|
}
|
|
|
}
|
|
@@ -49,11 +53,11 @@ namespace MySystem
|
|
|
|
|
|
public void ListenTest()//启动
|
|
|
{
|
|
|
- string check = function.ReadInstance("/LeaderComp/Repeat/202502.txt");
|
|
|
+ string check = function.ReadInstance("/LeaderComp/Repeat/202503.txt");
|
|
|
if (string.IsNullOrEmpty(check))
|
|
|
{
|
|
|
- function.WritePage("/LeaderComp/Repeat/", "202502.txt", DateTime.Now.ToString());
|
|
|
- Ready("202502");
|
|
|
+ function.WritePage("/LeaderComp/Repeat/", "202503.txt", DateTime.Now.ToString());
|
|
|
+ Ready("202503");
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -297,7 +301,8 @@ namespace MySystem
|
|
|
db.SaveChanges();
|
|
|
|
|
|
LeaderCompTradeStat stat = db.LeaderCompTradeStat.FirstOrDefault(m => m.UserId == UserId) ?? new LeaderCompTradeStat();
|
|
|
- if(stat.LeaderType > 1 && CompPrize > 0)
|
|
|
+ // if(stat.LeaderType > 1 && CompPrize > 0)
|
|
|
+ if(CompPrize > 0)
|
|
|
{
|
|
|
sql += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (1," + stat.TradeAmount + "," + CompPrize + ",now(),'" + MonthFlag + "'," + UserId + ");";
|
|
|
}
|