Monatsauswahl und Spendenbearbeitung ergaenzen
All checks were successful
CI / Build and Deploy (push) Successful in 3m26s
All checks were successful
CI / Build and Deploy (push) Successful in 3m26s
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user