Mehrere Stichtage pro Zeitraum verwalten
All checks were successful
CI / Build and Deploy (push) Successful in 2m43s
All checks were successful
CI / Build and Deploy (push) Successful in 2m43s
This commit is contained in:
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user