浏览代码

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

鲍自强 9 月之前
父节点
当前提交
81cabd85fa
共有 1 个文件被更改,包括 10 次插入3 次删除
  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,
 					}
 				}
 			}