Implementiert Kassenbuch für Barkassen

Barkassen können als manuelle Bankkonten angelegt werden. Kassenbuchungen erzeugen Bankbewegungen mit Gegenkonto und sind über eine neue Buchhaltungsseite erreichbar.
This commit is contained in:
2026-05-11 17:13:49 +02:00
parent 1969610130
commit 5fe823f52a
3 changed files with 802 additions and 0 deletions

View File

@@ -193,6 +193,11 @@ const links = computed(() => {
to: "/banking",
icon: "i-heroicons-document-text",
} : null,
featureEnabled("banking") ? {
label: "Kassenbuch",
to: "/accounting/cashbooks",
icon: "i-heroicons-banknotes",
} : null,
(featureEnabled("accounts") || featureEnabled("ownaccounts")) ? {
label: "Manuelle Buchungen",
to: "/accounting/manual-bookings",