|
@@ -3963,11 +3963,18 @@ func (this *TargetController) ExcelDataAdd() {
|
|
|
for j := 1; j < len(req.Data[i]); j++ {
|
|
|
closeVal := req.Data[i][j].(map[string]interface{})
|
|
|
if item, ok := secNameToDateMap[secNameList[j-1]]; ok {
|
|
|
- item[date] = closeVal["m"].(string)
|
|
|
+ tmpVal, ok := closeVal["m"].(string)
|
|
|
+ if !ok {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ item[date] = tmpVal
|
|
|
} else {
|
|
|
- // secNameToDateMap[secNameList[j]] = make(map[string]string)
|
|
|
+ tmpVal, ok := closeVal["m"].(string)
|
|
|
+ if !ok {
|
|
|
+ continue
|
|
|
+ }
|
|
|
secNameToDateMap[secNameList[j-1]] = map[string]string{
|
|
|
- date: closeVal["m"].(string),
|
|
|
+ date: tmpVal,
|
|
|
}
|
|
|
}
|
|
|
}
|