diff --git a/components/MainNav.vue b/components/MainNav.vue index dc00730..0307b41 100644 --- a/components/MainNav.vue +++ b/components/MainNav.vue @@ -339,8 +339,7 @@ const links = computed(() => { },{ label: "Export", to: "/export", - icon: "i-heroicons-clipboard-document-list", - disabled: true + icon: "i-heroicons-clipboard-document-list" } ] } diff --git a/pages/accounts/index.vue b/pages/accounts/index.vue index 3472214..1593e1f 100644 --- a/pages/accounts/index.vue +++ b/pages/accounts/index.vue @@ -26,13 +26,13 @@ const setupPage = async () => { incominginvoices.value = (await useEntities("incominginvoices").select("*, vendor(*)")) items.value = await Promise.all(items.value.map(async (i) => { - let renderedAllocationsTemp = await renderedAllocations(i.id) - let saldo = getSaldo(renderedAllocationsTemp) + // let renderedAllocationsTemp = await renderedAllocations(i.id) + // let saldo = getSaldo(renderedAllocationsTemp) return { ...i, - saldo: saldo, - allocations: renderedAllocationsTemp.length, + // saldo: saldo, + // allocations: renderedAllocationsTemp.length, } })) @@ -103,13 +103,13 @@ const templateColumns = [ },{ key: "label", label: "Name" - },{ + },/*{ key: "allocations", label: "Buchungen" },{ key: "saldo", label: "Saldo" - }, { + },*/ { key: "description", label: "Beschreibung" }, @@ -166,7 +166,7 @@ setupPage() - + -->