Explorar el Código

update

master
shenjiachi hace 4 horas
padre
commit
85757e2f16
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      app/svc/svc_home_page.go

+ 4
- 1
app/svc/svc_home_page.go Ver fichero

@@ -22,7 +22,10 @@ func CalcTodayEggEnergyPriceRises(engine *xorm.Engine, now time.Time) (err error
return err, 0, false, "", ""
}
initialPrice = m.Price
yesterdayPrice, _ := decimal.NewFromString(m.Price)
if initialPrice == "" {
initialPrice = "1"
}
yesterdayPrice, _ := decimal.NewFromString(initialPrice)
coreDataDb := implement.NewEggEnergyCoreDataDb(db.Db)
coreData, err := coreDataDb.EggEnergyCoreDataGet()
if err != nil {


Cargando…
Cancelar
Guardar