Ajustes de reportes y controles.
Se implementan DataGrid a los reportes y se mejoran los controles de selección y presentación.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import type { ControlDevolucionesReporteDto } from './ControlDevolucionesReporteDto';
|
||||
import type { DevueltosOtrosDiasDto } from './DevueltosOtrosDiasDto';
|
||||
import type { ObtenerCtrlDevolucionesDto } from './ObtenerCtrlDevolucionesDto';
|
||||
|
||||
export interface ControlDevolucionesDataResponseDto {
|
||||
detallesCtrlDevoluciones: ControlDevolucionesReporteDto[];
|
||||
devolucionesOtrosDias: DevueltosOtrosDiasDto[];
|
||||
remitosIngresados: ObtenerCtrlDevolucionesDto[];
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export interface ListadoDistribucionDistPromedioDiaDto {
|
||||
id?: string; // Para DataGrid
|
||||
dia: string; // Nombre del día de la semana
|
||||
cant: number;
|
||||
llevados: number;
|
||||
devueltos: number;
|
||||
promedio_Llevados: number;
|
||||
promedio_Devueltos: number;
|
||||
promedio_Ventas: number;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
export interface ListadoDistribucionDistSimpleDto {
|
||||
id?: string; // Para DataGrid
|
||||
dia: number; // Día del mes
|
||||
llevados: number;
|
||||
devueltos: number | null; // Puede ser null si no hay devoluciones
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import type { ListadoDistribucionDistSimpleDto } from './ListadoDistribucionDistSimpleDto';
|
||||
import type { ListadoDistribucionDistPromedioDiaDto } from './ListadoDistribucionDistPromedioDiaDto';
|
||||
|
||||
export interface ListadoDistribucionDistribuidoresResponseDto {
|
||||
detalleSimple: ListadoDistribucionDistSimpleDto[];
|
||||
promediosPorDia: ListadoDistribucionDistPromedioDiaDto[];
|
||||
}
|
||||
Reference in New Issue
Block a user