feat: Add reports feature

Enables a new reports section in the application. This includes:
- Adding a `reports` flag to `AppFeatures` and `AppSettings`.
- Including a new "Reportistica" link in the main navigation for privileged users.
- Adding a `getCondoPayments` endpoint to the mock DB service.
- Updating the backend to support filtering payments by `condoId`.
- Providing a basic `ReportsPage` component.
This commit is contained in:
2025-12-09 13:35:10 +01:00
parent 25d84e7b51
commit a5645a32c0
16 changed files with 340 additions and 77 deletions

View File

@@ -51,6 +51,7 @@ export interface AppFeatures {
tickets: boolean;
payPal: boolean;
notices: boolean;
reports: boolean;
}
export interface AlertDefinition {
@@ -164,4 +165,4 @@ export interface Ticket {
attachments?: TicketAttachment[];
userName?: string; // Joined field
userEmail?: string; // Joined field
}
}