From c5790ce9bc35e209826273fe6d3f47c120931ef6 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 16 Mar 2026 20:55:51 +0000 Subject: [PATCH] HDI --- frontend/src/menuAside.ts | 7 ++--- frontend/src/pages/recepcion.tsx | 51 ++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 frontend/src/pages/recepcion.tsx diff --git a/frontend/src/menuAside.ts b/frontend/src/menuAside.ts index fdbd6a1..b1341f2 100644 --- a/frontend/src/menuAside.ts +++ b/frontend/src/menuAside.ts @@ -57,12 +57,11 @@ const menuAside: MenuAsideItem[] = [ permissions: 'READ_SUPPLIERS' }, { - href: '/receptions/receptions-list', - label: 'Receptions', + href: '/recepcion', + label: 'Recepción', // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore icon: 'mdiClipboardText' in icon ? icon['mdiClipboardText' as keyof typeof icon] : icon.mdiTable ?? icon.mdiTable, - permissions: 'READ_RECEPTIONS' }, { href: '/quotes/quotes-list', @@ -176,4 +175,4 @@ const menuAside: MenuAsideItem[] = [ }, ] -export default menuAside +export default menuAside \ No newline at end of file diff --git a/frontend/src/pages/recepcion.tsx b/frontend/src/pages/recepcion.tsx new file mode 100644 index 0000000..5fa6fb2 --- /dev/null +++ b/frontend/src/pages/recepcion.tsx @@ -0,0 +1,51 @@ +import { mdiClipboardText, mdiCar, mdiPackageVariantClosed } from '@mdi/js'; +import Head from 'next/head'; +import React, { ReactElement } from 'react'; +import CardBox from '../components/CardBox'; +import LayoutAuthenticated from '../layouts/Authenticated'; +import SectionMain from '../components/SectionMain'; +import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton'; +import BaseButton from '../components/BaseButton'; +import BaseButtons from '../components/BaseButtons'; +import { getPageTitle } from '../config'; + +const Recepcion = () => { + return ( + <> + + {getPageTitle('Recepción')} + + + + {''} + +
+ +

Automotor

+ +
+ +

En Mano

+ +
+
+
+ + ); +}; + +Recepcion.getLayout = function getLayout(page: ReactElement) { + return {page}; +}; + +export default Recepcion;