feat(web): route territorial records to simplified profile

This commit is contained in:
2026-09-11 10:34:54 -03:00
parent a9e300d6a4
commit 74ff64182c
+7 -1
View File
@@ -5,6 +5,7 @@ import { getAsset } from '../lib/api';
import type { AssetDetail } from '../lib/api';
import { AssetEditorPage } from './AssetEditorPage';
import { CompanyInventoryPage } from './CompanyInventoryPage';
import { TerritorialInventoryPage, isTerritorialInventoryAsset } from './TerritorialInventoryPage';
export function InventoryDetailPage() {
const { id } = useParams();
@@ -30,10 +31,15 @@ export function InventoryDetailPage() {
if (loading) return <LoadingBlock label="Cargando registro…" />;
if (!asset) return <Alert>{error || 'No se pudo cargar el registro.'}</Alert>;
const advanced = params.get('advanced') === '1';
const isCompany = asset.type.code.toLowerCase() === 'empresa';
if (isCompany && params.get('advanced') !== '1') {
if (isCompany && !advanced) {
return <CompanyInventoryPage initialAsset={asset} />;
}
if (isTerritorialInventoryAsset(asset) && !advanced) {
return <TerritorialInventoryPage initialAsset={asset} />;
}
return <AssetEditorPage />;
}