|
@@ -469,6 +469,11 @@ func BarChartData(mappingList []*models.ChartEdbInfoMapping, edbDataListMap map[
|
|
|
|
|
|
barChartInfoDate := barChartInfoDateList[barChartInfoSort.DateIndex]
|
|
|
for edbInfoId, dataList := range edbDataListMap {
|
|
|
+ if len(dataList) <= 0 {
|
|
|
+
|
|
|
+ notDataEdbIdList = append(notDataEdbIdList, edbInfoId)
|
|
|
+ continue
|
|
|
+ }
|
|
|
findDate := barChartInfoDate.Date
|
|
|
switch barChartInfoDate.Type {
|
|
|
case 1:
|
|
@@ -558,6 +563,11 @@ func BarChartData(mappingList []*models.ChartEdbInfoMapping, edbDataListMap map[
|
|
|
for _, edbInfoId := range edbIdList {
|
|
|
findDate := barChartInfoDate.Date
|
|
|
dataList := edbDataListMap[edbInfoId]
|
|
|
+ if len(dataList) <= 0 {
|
|
|
+
|
|
|
+ findDataList = append(findDataList, 0)
|
|
|
+ continue
|
|
|
+ }
|
|
|
switch barChartInfoDate.Type {
|
|
|
case 1:
|
|
|
dataList := edbDataListMap[edbInfoId]
|