You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
WardWatch Release Notes - Version 1.4
What’s New:
Added:
make_appt command :
Allows users to create an appointment for a specific patient
Format: make_appt INDEX (must be a positive integer) a/DESCRIPTION s/START DATE TIME e/END DATE TIME
-Example: make_appt 1 a/ Surgery s/ 01-01-2001-01-00 e/ 21-12-2024-23-59
Example of make_appt command in action.
del_appt command :
Allows users to delete an appointment tied to a specific patient
Format: del_appt INDEX (must be a positive integer)
-Example: del_appt 1
Example of del_appt command in action.
schedule_all command :
List all appointments for all patients
Format: schedule_all
Example of schedule_all command in action.
schedule_date command :
List all appointments on a specific date
Format: schedule_date DATE (in dd-MM-yyyy format)
-Example: schedule_date 12-10-2024
Example of schedule_date command in action.
add_notes command :
Edits the patient notes of the patient identified by the index. Existing notes will be overwritten by the input.
Format: add_notes INDEX (must be a positive integer) pn/[NOTES]
-Example: add_notes 1 pn/Patient is prone to falling
Patient Notes can be viewed by using the View INDEX (must be a positive integer) command.
Example of add_notes command in action.
New UI design:
Displays the details of a both appointment & patients simultaneously.