-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Story
As a user, I should be able to add appointment information, and when that appointment is approaching in date it should be displayed more prominently and when I want to add notes to the appointment, I should be given the affordance to do so.
Acceptance Criteria
Given a user wants to add an appointment
When the user clicks "Appointments"
Then the user should be taken to the main Appointments view of CheckUp/Patient Notes
When the user clicks "add appointment"
Then a form should appear where the user can enter:
- Doctor Name
- Location
- Time
- Date
- Reason
When user clicks "save"
Then the appointment should be added to appointments list in the main view of Appointments
Given a user wants to take notes at an appointment
When the user clicks on “journal” icon
Then a form should displayed where user can enter any notes
When user clicks “save” button
Then note should be saved to the database
And appended to the notes section of the appointment entry
Given user wants to edit note
When user clicks “edit” button
Then a pre-filled form should be displayed
When user clicks “save”
Then updated note should be displayed
- Add appointment
- Add note
- Edit note