Fix: Eliminada columna fechaIngreso de pacientes, agregadas nuevas columnas

This commit is contained in:
2026-04-14 01:58:10 -03:00
parent e47818d3d2
commit 9d124d9023
4 changed files with 52 additions and 4 deletions
+2
View File
@@ -13,6 +13,8 @@ interface NuevoIngresoProps {
camas: Cama[];
areas: Area[];
onIniciarInternacion: (internacion: Omit<Internacion, 'id' | 'activa'>) => void;
onAgregarPaciente?: (paciente: Omit<Paciente, 'id'>) => void;
onActualizarPaciente?: (id: string, datos: Partial<Paciente>) => void;
onVolver: () => void;
getAreaName: (areaId: string | undefined) => string;
}