Mehrere Stichtage pro Zeitraum verwalten
All checks were successful
CI / Build and Deploy (push) Successful in 2m43s

This commit is contained in:
jan
2026-05-12 01:37:28 +02:00
parent 08df13c044
commit 5591d10d96
11 changed files with 790 additions and 88 deletions

View File

@@ -15,6 +15,14 @@ export type DashboardAccountingPeriod = {
isCurrent: boolean;
cutoffName: string;
cutoffDate: string | null;
cutoffs: DashboardPeriodCutoff[];
};
export type DashboardPeriodCutoff = {
id: string;
name: string;
date: string | null;
periodId: string;
};
export type DashboardViewer = {
@@ -79,6 +87,7 @@ export type DashboardExpense = {
approvalStatus: ApprovalStatusValue;
recurrence: ExpenseRecurrenceValue;
recurrenceStartAt: string | null;
cutoffId: string | null;
cutoffPhase: CutoffPhaseValue;
donationAmount: number;
donations: DashboardExpenseDonation[];