Waste breakdown #291

Merged
alexm merged 3 commits from :feature/WasteBreakdown into dev 2024-04-17 12:52:17 +00:00
3 changed files with 1162 additions and 1146 deletions
Showing only changes of commit d9d868a6af - Show all commits

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'),
Review

El component hace falta??

El component hace falta??
Review

@wbuezas he probado sin la línea y no me salta error.
Error de copy/paste?

@wbuezas he probado sin la línea y no me salta error. Error de copy/paste?
Review

Efectivamente fue un error, lo removí

Commit: a397c6ed30

Efectivamente fue un error, lo removí Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/a397c6ed30694b9d91a1bcca9d64c2d01a1de9a8
},
],
},
{