#8277 createEntryControl #1370

Merged
jorgep merged 77 commits from 8277-createEntryControl into dev 2025-04-17 16:45:31 +00:00
4 changed files with 8 additions and 8 deletions
Showing only changes of commit a1f93a87b2 - Show all commits

View File

@ -341,7 +341,7 @@ globals:
parking: Parking
vehicleList: Vehicles
vehicle: Vehicle
entryControl: Entry control
entryPreAccount: Pre-account
unsavedPopup:
title: Unsaved changes will be lost
subtitle: Are you sure exit without saving?

View File

@ -344,7 +344,7 @@ globals:
parking: Parking
vehicleList: Vehículos
vehicle: Vehículo
entryControl: Control de entradas
entryPreAccount: Precontabilizar
unsavedPopup:
title: Los cambios que no haya guardado se perderán
subtitle: ¿Seguro que quiere salir sin guardar?

View File

@ -85,7 +85,7 @@ export default {
'EntryLatestBuys',
'EntryStockBought',
'EntryWasteRecalc',
'EntryControl',
'EntryPreAccount',
],
},
component: RouterView,
@ -95,7 +95,7 @@ export default {
name: 'EntryMain',
path: '',
component: () => import('src/components/common/VnModule.vue'),
props: (route) => ({ leftDrawer: route.name !== 'EntryControl' }),
props: (route) => ({ leftDrawer: route.name !== 'EntryPreAccount' }),
redirect: { name: 'EntryIndexMain' },
children: [
{
@ -154,12 +154,12 @@ export default {
},
{
path: 'control',
name: 'EntryControl',
name: 'EntryPreAccount',
meta: {
title: 'entryControl',
icon: 'help',
title: 'entryPreAccount',
icon: 'account_balance',
},
component: () => import('src/pages/Entry/EntryControl.vue'),
component: () => import('src/pages/Entry/EntryPreAccount.vue'),
},
],
},