Browse Source

处理返回数据缺失问题

chenw 6 năm trước cách đây
mục cha
commit
5e8607d590

+ 1 - 0
bi-server/src/main/java/com/usoftchina/bi/server/service/chart/ShowPopulationService.java

@@ -122,6 +122,7 @@ public class ShowPopulationService {
                 String groupBy = String.join(",", groupByList),
                        fileds = String.join(",", normalOperatorColumn);
                 List<Map<String, Object>> valueList = showChartsMapper.getGroupByValue(groupBy, fileds, tableName, sortFiled, screenStr);
+                popAndIndDataInfo.setChartsColumnConfig(chartsColumn);
                 popAndIndDataInfo.setValueList(valueList);
                 return new RepEntity(RepCode.success, popAndIndDataInfo);
             }