feat: add Buchhaltung dashboard widget, CSV export, Bestellungen linking, recurring bookings, and approval workflow

This commit is contained in:
Matthias Hochmeister
2026-03-28 20:34:53 +01:00
parent c1fca5cc67
commit bc39963746
10 changed files with 750 additions and 5 deletions

View File

@@ -215,6 +215,7 @@ export interface TransaktionFormData {
empfaenger_auftraggeber?: string;
verwendungszweck?: string;
beleg_nr?: string;
bestellung_id?: number | null;
}
// Filter type for transaction list
@@ -227,3 +228,16 @@ export interface TransaktionFilters {
datum_bis?: string;
search?: string;
}
export interface WiederkehrendFormData {
bezeichnung: string;
konto_id?: number | null;
bankkonto_id?: number | null;
typ: TransaktionTyp;
betrag: number;
beschreibung?: string;
empfaenger_auftraggeber?: string;
intervall: WiederkehrendIntervall;
naechste_ausfuehrung: string;
aktiv?: boolean;
}