diff --git a/src/sections/HistoriaClinica.tsx b/src/sections/HistoriaClinica.tsx
index b2794dc..6cdcb4d 100644
--- a/src/sections/HistoriaClinica.tsx
+++ b/src/sections/HistoriaClinica.tsx
@@ -2529,6 +2529,9 @@ function SeccionCultivos({ cults, patient, internacionId, add, update, del, canE
{c.protocolo &&
Protocolo: {c.protocolo}
}
+ {c.fechaResultado && (c.estado === 'Positivo' || c.estado === 'Negativo') && (
+ Fecha Resultado Definitivo: {formatDateDDMMYYYY(c.fechaResultado)}
+ )}
{c.observaciones && {c.observaciones}
}
{c.estado === 'Parcial' && c.germen && (
@@ -2542,40 +2545,43 @@ function SeccionCultivos({ cults, patient, internacionId, add, update, del, canE
)}
{c.estado === 'Positivo' && c.germen && (
-
-
+
+
- Germen: {c.germen} {c.fechaResultado ? `(Definitivo: ${c.fechaResultado})` : ''}
+ Germen: {c.germen}
-
- {c.sensible && (
-
- Sensibilidad: {c.sensible}
-
- )}
-
- {c.resistente && (
-
- Resistencia: {c.resistente}
-
- )}
+
+ {(c.sensible || c.resistente) && (
+
+ {c.sensible && (
+
+ Sensibilidad: {c.sensible}
+
+ )}
+
+ {c.resistente && (
+
+ Resistencia: {c.resistente}
+
+ )}
+
+ )}
)}
{c.estado === 'Negativo' && (
-
+
Sin crecimiento de microorganismos
- {c.fechaResultado &&
Resultado: {c.fechaResultado}
}
)}