enhance views to display exact year, month, day values

sqlite displays negative days and months
This commit is contained in:
Julian Krauser 2025-02-01 18:09:58 +01:00
parent a73c712626
commit fc01263c4e
11 changed files with 324 additions and 81 deletions

View file

@ -19,6 +19,7 @@ export interface MemberViewModel {
export interface MemberStatisticsViewModel {
id: string;
internalId: string;
salutation: string;
firstname: string;
lastname: string;

View file

@ -9,7 +9,8 @@ export interface MembershipViewModel {
export interface MembershipStatisticsViewModel {
durationInDays: number;
durationInYears: string;
durationInYears: number;
exactDuration: string;
status: string;
statusId: number;
memberId: string;