Prechádzať zdrojové kódy

Merge branch 'bzq1/execl-edit' of eta_server/eta_api into debug

鲍自强 9 mesiacov pred
rodič
commit
81cabd85fa
1 zmenil súbory, kde vykonal 10 pridanie a 3 odobranie
  1. 10 3
      controllers/target.go

+ 10 - 3
controllers/target.go

@@ -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,
 					}
 				}
 			}