Explorar el Código

[LEO] - missing arguement

tags/Baseline_30082024_BACKEND_UAT
MSI\2Fi hace 1 año
padre
commit
687eddc584
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/main/java/com/ffii/tsms/modules/report/web/ReportController.kt

+ 1
- 1
src/main/java/com/ffii/tsms/modules/report/web/ReportController.kt Ver fichero

@@ -98,7 +98,7 @@ class ReportController(

@PostMapping("/downloadLateStartReport")
fun downloadLateStartReport(): ResponseEntity<ByteArrayResource> {
val reportBytes = excelReportService.generateLateStartReport()
val reportBytes = excelReportService.generateLateStartReport(Project())
val headers = HttpHeaders()
headers.add("Content-Disposition", "attachment; filename=Late_Start_Report_${LocalDate.now()}.xlsx")



Cargando…
Cancelar
Guardar