|
@@ -7,6 +7,7 @@ import (
|
|
|
"eta/eta_data_analysis/models"
|
|
|
"eta/eta_data_analysis/utils"
|
|
|
"fmt"
|
|
|
+ "strconv"
|
|
|
"strings"
|
|
|
)
|
|
|
|
|
@@ -873,7 +874,12 @@ func (p *CokeInventoryProcessor) ProcessResponse(data string) ([]models.FenWeiNe
|
|
|
if data.InventoryIndex != 0 {
|
|
|
value = data.InventoryIndex
|
|
|
} else {
|
|
|
- value = data.Stock
|
|
|
+ switch v := data.Stock.(type) {
|
|
|
+ case string:
|
|
|
+ value, _ = strconv.ParseFloat(v, 64)
|
|
|
+ case float64:
|
|
|
+ value = float64(v)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
indexInfoList = append(indexInfoList, models.FenWeiNetIndexInfo{
|