Uses of Class
com.gestorrh.api.dto.reporte.ReporteDetalleDTO
Packages that use ReporteDetalleDTO
Package
Description
Controladores REST que exponen los endpoints de la API de GestorRH.
Capa de Servicios que concentra la lógica de negocio central de la aplicación.
-
Uses of ReporteDetalleDTO in com.gestorrh.api.controller
Methods in com.gestorrh.api.controller that return types with arguments of type ReporteDetalleDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ReporteDetalleDTO>> ReporteController.generarReporteDetallado(LocalDate fechaInicio, LocalDate fechaFin, Long idEmpleado) Obtiene el historial pormenorizado de fichajes y cálculos de horas realizados en un rango de fechas. -
Uses of ReporteDetalleDTO in com.gestorrh.api.service
Methods in com.gestorrh.api.service that return ReporteDetalleDTOModifier and TypeMethodDescriptionprivate ReporteDetalleDTOReporteService.calcularFichaje(Fichaje f) Realiza el cálculo matemático exhaustivo de un registro de fichaje individualizado.Methods in com.gestorrh.api.service that return types with arguments of type ReporteDetalleDTOModifier and TypeMethodDescriptionReporteService.obtenerReporteDetallado(LocalDate fechaInicio, LocalDate fechaFin, Long idEmpleadoFiltro) Genera un reporte detallado de los fichajes realizados en un periodo temporal definido.Method parameters in com.gestorrh.api.service with type arguments of type ReporteDetalleDTOModifier and TypeMethodDescriptionbyte[]ReportePdfService.generarPdfDetalle(String nombreEmpresa, String subtituloFiltro, List<ReporteDetalleDTO> datos) Genera un archivo PDF con el desglose detallado de todos los fichajes realizados por la plantilla.