feat(report-page) base setup overall

This commit is contained in:
2025-10-16 03:38:54 +05:30
parent ab23473f40
commit ebf152495e
8 changed files with 1061 additions and 610 deletions

View File

@@ -8,4 +8,5 @@ export * from "./staff-types";
export * from "./user-types";
export * from "./databaseBackup-types";
export * from "./notifications-types";
export * from "./cloudStorage-types";
export * from "./cloudStorage-types";
export * from "./payments-reports-types";

View File

@@ -0,0 +1,11 @@
export interface PatientBalanceRow {
patientId: number;
firstName: string | null;
lastName: string | null;
totalCharges: number;
totalPayments: number;
totalAdjusted: number;
currentBalance: number;
lastPaymentDate: string | null;
lastAppointmentDate: string | null;
}