feat(report-page) base setup overall
This commit is contained in:
@@ -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";
|
||||
11
packages/db/types/payments-reports-types.ts
Normal file
11
packages/db/types/payments-reports-types.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user