Fix: Organizacion de Editar Ingreso igual a Nuevo Ingreso, corregido formato de fecha

This commit is contained in:
Santiago Lavaise
2026-04-14 00:04:40 -03:00
parent b3d29bd61b
commit 111863baf2
11 changed files with 708 additions and 30 deletions
+5 -2
View File
@@ -35,7 +35,8 @@ export interface Internacion {
id: string;
pacienteId: string;
camaId: string;
fechaIngreso: string;
fechaIngresoHospital?: string;
fechaIngresoClinica?: string;
fechaEgreso?: string;
diagnosticoIngreso: string;
motivoConsulta?: string;
@@ -45,6 +46,8 @@ export interface Internacion {
medicoIngresante: string;
motivoEgreso?: 'Alta médica' | 'Alta voluntaria' | 'Derivación' | 'Fallecimiento' | 'Otro';
activa: boolean;
apache?: string;
derivacion?: string;
}
export interface ExamenFisico {
@@ -133,4 +136,4 @@ export interface Cultivo {
observaciones?: string;
}
export type Vista = 'dashboard' | 'camas' | 'pacientes' | 'internaciones' | 'evoluciones' | 'laboratorios' | 'acidobase' | 'cultivos' | 'historiaclinica';
export type Vista = 'dashboard' | 'camas' | 'pacientes' | 'internaciones' | 'evoluciones' | 'laboratorios' | 'acidobase' | 'cultivos' | 'historiaclinica' | 'nuevoingreso' | 'editaringreso';