| | |
| | | import com.ots.project.tool.report.APIFan.chart.APIFanChart; |
| | | import com.ots.project.tool.report.CIAQ.chart.CIAQChart; |
| | | import com.ots.project.tool.report.JAQ.condition.JAQTeam; |
| | | import com.ots.project.tool.report.LAQ.chart.LAQAllChart; |
| | | import com.ots.project.tool.report.LAQ.chart.LAQChart; |
| | | import com.ots.project.tool.report.MAQTR.chart.MAQTRChart; |
| | | import com.ots.project.tool.report.PAQ.chart.PAQChart; |
| | |
| | | } else if (StringUtils.equals(reportType, ReportTypeEnum.CIAQ.getCode())) { |
| | | CIAQChart.changeChart(document, textMap); |
| | | } else if (StringUtils.equals(reportType, ReportTypeEnum.LAQ.getCode())) { |
| | | LAQChart.changeChart(document, textMap); |
| | | if(!textMap.containsKey("allList")) |
| | | { |
| | | System.out.println("个人用户报告"); |
| | | LAQChart.changeChart(document, textMap); |
| | | } |
| | | else |
| | | { |
| | | System.out.println("全景图报告"); |
| | | //如果包含allList,则渲染全景图图表 |
| | | LAQAllChart.changeChart(document,textMap); |
| | | } |
| | | } else if(StringUtils.equals(reportType, ReportTypeEnum.API_Fan.getCode())) |
| | | { |
| | | APIFanChart.changeChart(document,textMap); |