|
|
@@ -19,7 +19,7 @@ func GetAppointIndexFromAlias(year string, week string) string { |
|
|
|
func GetLatestEffectiveIndexFromAlias(now time.Time) string { |
|
|
|
var esIndexName string |
|
|
|
year, week := now.ISOWeek() |
|
|
|
if now.Weekday() > time.Wednesday && now.Hour() > 14 { |
|
|
|
if now.Weekday() > time.Wednesday || (now.Weekday() > time.Wednesday && now.Hour() > 14) { |
|
|
|
// 当前已经过了周三下午两点 返回当周蛋蛋分 |
|
|
|
esIndexName = md.EggEnergyUserEggScoreEsAlias + "_" + egg_system_rules.IntToStr(year) + egg_system_rules.IntToStr(week) |
|
|
|
} else { |
|
|
|