Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

The Appointment Scheduling feature will be available from release 0.90. This page is currently work in progress.


Table of Contents

Creating a service:

For creating a new Service, only ‘Service Name’ is mandatory.

...

Speciality: This field is configurable. By default it is shown. you can show/hide this by setting “enableSpecialities” to true/false.

Code Block
languagejs
"enableSpecialities": true

To add a speciality we can run the following query.

Code Block
languagesql
INSERT INTO appointment_speciality (name, date_created, creator, uuid) VALUES ('Cardiology', NOW(), 1, UUID());

...

Service availability: If you define a service availability it overrides the service level startTime, endTime and MaxLoad and service is only available on selected days within mentioned timings.
Start Time & End time: working hours for a service on selected days of that availability.Start time must be less than end time. If it is wrong time sequence, you will be notified with a message.
Max Load: This indicates the maximum number of appointments that can be booked for a service availability. Negative values are not allowed. 
Days: By default week starts from MONDAY. You can configure the start day of week by assigning a number ranging from [1-7] which indicates [SUNDAY-SATURDAY] to“startOfWeek” in config file.
Ex: If you configure,

Code Block
languagejs
"startOfWeek": 4

Image Removed

Display names of the days in a week are internationalized. 

...

Multiple availabilities can be tied to one service. All the availabilities are displayed in order they got added. 

When you try to navigate with unsaved changes, a dialog box will be shown to confirm or cancel the navigation.

Image Removed

If you click on Don't save , you will be navigated to the target page and all changes will be lost. If you click on Stay on page, all changes persist and you will be on the same page. 

Table of Contents