Monatsauswahl und Spendenbearbeitung ergaenzen
All checks were successful
CI / Build and Deploy (push) Successful in 3m26s

This commit is contained in:
jan
2026-05-12 00:58:34 +02:00
parent a527a840ee
commit ae3a00a298
4 changed files with 254 additions and 9 deletions

View File

@@ -58,6 +58,14 @@ export type DashboardExpenseDocument = {
};
};
export type DashboardExpenseDonation = {
id: string;
title: string;
description: string | null;
amount: number;
donatedAt: string;
};
export type DashboardExpense = {
id: string;
title: string;
@@ -73,6 +81,7 @@ export type DashboardExpense = {
recurrenceStartAt: string | null;
cutoffPhase: CutoffPhaseValue;
donationAmount: number;
donations: DashboardExpenseDonation[];
netPeriodAmount: number;
paidAt: string | null;
documentedAt: string | null;