diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..91b3398
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..ebe209e
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
new file mode 100644
index 0000000..26bfabc
--- /dev/null
+++ b/.idea/jarRepositories.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..3986154
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 0000000..63a8881
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ false
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1711290922966
+
+
+ 1711290922966
+
+
+
+
\ No newline at end of file
diff --git a/service/src/main/java/com/microting/report/jasper/ExportType.java b/service/src/main/java/com/microting/report/jasper/ExportType.java
index 742f049..02cd012 100644
--- a/service/src/main/java/com/microting/report/jasper/ExportType.java
+++ b/service/src/main/java/com/microting/report/jasper/ExportType.java
@@ -2,7 +2,7 @@
public enum ExportType {
- PDF, XLS, XLSX, DOC, DOCX, RTF, ODT, PPT, PPTX;
+ PDF, XLSX, DOC, DOCX, RTF, ODT, PPT, PPTX;
public static ExportType byName(String name) {
for (ExportType type : ExportType.values()) {
diff --git a/service/src/main/java/com/microting/report/jasper/convertion/JasperReportConvertor.java b/service/src/main/java/com/microting/report/jasper/convertion/JasperReportConvertor.java
index e8f42eb..d384a09 100644
--- a/service/src/main/java/com/microting/report/jasper/convertion/JasperReportConvertor.java
+++ b/service/src/main/java/com/microting/report/jasper/convertion/JasperReportConvertor.java
@@ -64,7 +64,7 @@ private static class ReportExporter(ExportType.ODT, new ReportExporter<>(JROdtExporter.class, SimpleOdtReportConfiguration::new, SimpleOutputStreamExporterOutput.class)),
new SimpleEntry<>(ExportType.RTF, new ReportExporter<>(JRRtfExporter.class, SimpleRtfReportConfiguration::new, SimpleWriterExporterOutput.class)),
new SimpleEntry<>(ExportType.XLSX, new ReportExporter<>(JRXlsxExporter.class, JasperReportConvertor::createXlsxReportConfig, SimpleOutputStreamExporterOutput.class)),
- new SimpleEntry<>(ExportType.XLS, new ReportExporter<>(JRXlsExporter.class, JasperReportConvertor::createXlsReportConfig, SimpleOutputStreamExporterOutput.class)),
+ //new SimpleEntry<>(ExportType.XLS, new ReportExporter<>(JRXlsExporter.class, JasperReportConvertor::createXlsReportConfig, SimpleOutputStreamExporterOutput.class)),
new SimpleEntry<>(ExportType.PPT, new ReportExporter<>(JRPptxExporter.class, SimplePptxReportConfiguration::new, SimpleOutputStreamExporterOutput.class)),
new SimpleEntry<>(ExportType.PPTX, new ReportExporter<>(JRPptxExporter.class, SimplePptxReportConfiguration::new, SimpleOutputStreamExporterOutput.class)))
.collect(Collectors.toMap(SimpleEntry::getKey, SimpleEntry::getValue, (l, r) -> {