Explorar el Código

update get egg score week

master
shenjiachi hace 1 semana
padre
commit
ecd20b2802
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      utils/es/base.go

+ 4
- 4
utils/es/base.go Ver fichero

@@ -20,11 +20,11 @@ func GetLatestEffectiveIndexFromAlias(now time.Time) string {
var esIndexName string
year, week := now.ISOWeek()
if now.Weekday() > time.Wednesday || (now.Weekday() > time.Wednesday && now.Hour() > 14) {
// 当前已经过了周三下午两点 返回当周蛋蛋分
esIndexName = egg_system_rules.IntToStr(year) + egg_system_rules.IntToStr(week)
} else {
// 没过周三下午两点 返回上周蛋蛋分
// 当前已经过了周三下午两点 返回上周蛋蛋分
esIndexName = egg_system_rules.IntToStr(year) + egg_system_rules.IntToStr(week-1)
} else {
// 没过周三下午两点 返回上上周蛋蛋分
esIndexName = egg_system_rules.IntToStr(year) + egg_system_rules.IntToStr(week-2)
}
return esIndexName
}

Cargando…
Cancelar
Guardar