feat(docs): add laser treatment plan and related ADRs for multi-session treatments

This commit is contained in:
hamed
2026-08-06 15:23:06 +03:30
parent 1a07dad17c
commit 1d43475724
70 changed files with 15001 additions and 3234 deletions
@@ -0,0 +1,13 @@
# Treatment Sessions are separate from Appointments
Multi-session treatments (laser courses, botox top-ups) need a session that keeps its number and its
clinical record across cancellations and reschedules, and they must not lock eight months of calendar
slots the moment a course starts. So a Treatment Session is its own record owning the clinical data,
holding an optional reference to an Appointment; booking a session creates the Appointment, and
rescheduling swaps it without disturbing the session.
## Considered Options
Making the Appointment itself the session was rejected: session numbering would break on every
cancellation, and pre-creating every future session as a real Appointment would occupy slots months
ahead for patients who may never attend.