0
0
Fork 0

Waste breakdown

This commit is contained in:
William Buezas 2024-04-15 09:02:35 -03:00
parent 32382622e4
commit d9d868a6af
3 changed files with 1162 additions and 1146 deletions

View File

@ -1097,6 +1097,7 @@ item:
diary: Diary
tags: Tags
create: Create
wasteBreakdown: Waste breakdown
descriptor:
item: Item
buyer: Buyer

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ export default {
component: RouterView,
redirect: { name: 'ItemMain' },
menus: {
main: ['ItemList'],
main: ['ItemList', 'WasteBreakdown'],
card: [],
},
children: [
@ -37,6 +37,20 @@ export default {
},
component: () => import('src/pages/Item/ItemCreate.vue'),
},
{
path: 'waste-breakdown',
name: 'WasteBreakdown',
meta: {
title: 'wasteBreakdown',
icon: 'vn:claims',
},
beforeEnter: (to, from, next) => {
next({ name: 'ItemList' });
window.location.href =
'https://grafana.verdnatura.es/d/TTNXQAxVk';
},
component: () => import('src/pages/Item/ItemCreate.vue'),
},
],
},
{