mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
add reports module with controller, service, and repository
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
export type OverviewRange = '7d' | '30d' | '90d';
|
||||
|
||||
export interface IOverviewBookingKpis {
|
||||
/** All bookings ever recorded (excluding deleted / GENERAL umbrella rows). */
|
||||
total: number;
|
||||
totalActive: number;
|
||||
needsAction: number;
|
||||
urgent: number;
|
||||
@@ -35,6 +37,8 @@ export interface IOverviewStaffKpis {
|
||||
}
|
||||
|
||||
export interface IOverviewContractKpis {
|
||||
/** All contracts ever recorded (excluding deleted). */
|
||||
total: number;
|
||||
totalActive: number;
|
||||
needsAction: number;
|
||||
inApproval: number;
|
||||
@@ -202,5 +206,6 @@ export type OverviewTabKey =
|
||||
| 'contracts'
|
||||
| 'billing'
|
||||
| 'operations'
|
||||
| 'fleet'
|
||||
| 'customers'
|
||||
| 'staff';
|
||||
|
||||
Reference in New Issue
Block a user