|
@@ -539,10 +539,10 @@ func SyncBalanceEdbData(excelInfo *excelModel.ExcelInfo, balanceTableData [][]re
|
|
|
|
|
|
for _, mapping := range tmpMappingList {
|
|
|
excelEdbMap[mapping.ExcelChartEdbId] = mapping
|
|
|
- err, _ = GetBalanceExcelEdbData(mapping, newExcelDataMap, excelDataMap, excelAllRows, excelAllCols)
|
|
|
- if err != nil {
|
|
|
- err = fmt.Errorf(" 获取图表,指标信息失败 Err:%s", err.Error())
|
|
|
- return
|
|
|
+ er, msg := GetBalanceExcelEdbData(mapping, newExcelDataMap, excelDataMap, excelAllRows, excelAllCols)
|
|
|
+ if er != nil {
|
|
|
+ utils.FileLog.Info(fmt.Sprintf(" 获取图表,指标信息失败 Err:%s, %s", msg, er.Error()))
|
|
|
+ continue
|
|
|
}
|
|
|
}
|
|
|
// 批量更新图表数据
|