Changed Plants to Objects

Changes in outgoinginvoices
This commit is contained in:
2024-01-27 11:54:14 +01:00
parent 6f6e835b0a
commit 3167b6a20a
21 changed files with 1821 additions and 23 deletions

View File

@@ -46,7 +46,7 @@ const actions = [
},
{
id: 'new-plant',
label: 'Anlage hinzufügen',
label: 'Objekt hinzufügen',
icon: 'i-heroicons-clipboard-document',
to: "/plants/create" ,
},
@@ -85,7 +85,7 @@ const groups = computed(() =>
commands: dataStore.tasks.map(item => { return {id: item.id, label: item.name, to: `/tasks/show/${item.id}`}})
},{
key: "plants",
label: "Anlagen",
label: "Objekte",
commands: dataStore.plants.map(item => { return {id: item.id, label: item.name, to: `/plants/show/${item.id}`}})
}
].filter(Boolean))