improvement: appointment dialog UX improved.

This commit is contained in:
2026-07-12 22:07:11 +03:30
parent 53b43f2cdb
commit abf0371a5b
18 changed files with 1006 additions and 759 deletions

View File

@@ -23,4 +23,6 @@ export interface AppointmentRecord {
endAt: string;
purpose: string;
patient: Pick<Patient, 'id' | 'firstName' | 'lastName' | 'mobile'>;
/** True when a treatment record is linked to this appointment. */
hasTreatment?: boolean;
}