From 865e66fd49f711e429509bc8ac90961129aea3f4 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Thu, 10 Sep 2026 13:28:43 -0300 Subject: [PATCH] fix(F6.1): surface field preparation inside inspection detail --- .../pages/InspectionVisitDetailF61Page.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web-v2/src/pages/InspectionVisitDetailF61Page.tsx diff --git a/web-v2/src/pages/InspectionVisitDetailF61Page.tsx b/web-v2/src/pages/InspectionVisitDetailF61Page.tsx new file mode 100644 index 0000000..0b5e403 --- /dev/null +++ b/web-v2/src/pages/InspectionVisitDetailF61Page.tsx @@ -0,0 +1,28 @@ +import { Link, useParams } from 'react-router'; +import { Icon } from '../components/Icon'; +import { InspectionVisitEditorF4Page } from './InspectionVisitEditorF4Page'; + +/** + * F6.1 keeps Preparación para campo as a stage of the Inspection. The existing + * detail remains unchanged underneath; this wrapper makes the relationship + * explicit without creating a second operational module. + */ +export function InspectionVisitDetailF61Page() { + const { id } = useParams<{ id: string }>(); + + return <> + {id &&
+
+ ETAPA PREVIA AL CAMPO + Preparación para campo +

Revisá antecedentes, hallazgos pendientes y próximos controles de esta Inspección antes de iniciarla desde la APK.

+
+
+ + Abrir preparación + +
+
} + + ; +}