...
Info |
---|
Try to make these templates as specific as possible as they determine how many combinations will need to be conflict checked. This is a very performance demanding task for Salesforce, so try to keep the options as limited as possible. Extending the number of staff/resources and or sub-reservations multiplies very quickly. |
To accomplish the same use case you need to take the following steps:
...
Blueprint
The blueprint offers you the possibility to determine in which order a parent/child reservation combination should be made and how long it takes. You can set a duration and specify the children and the order of children.
Fields to set
The blueprints also offers the possibility to determine which “fields to set” on the parent or child reservation. Allowing you to specify what Reservation type it needs to have, if it needs a staff and or resource.
It offers 5 methods to set the fields
Method to get value | Description | Example Usage |
---|---|---|
Copy from parent resource | Allows you to copy the value from the parent resource | Add all reservations to the same resource |
Literal value | Allows you to put a literal value or id in a field | Give the same note/title to every parent/child reservation |
Record by name | Allows you to set a record by name in the field | Set a reservation type |
Child of Parent Resource | Allows you to specify that the Resource in the child reservation needs to be a child of the parent reservation resource. | Allows you to specify that the Resource in the child reservation needs to be a child of the parent reservation resource. |
Available at Parent Resource | Allows you to specify staff or or other dimension should be available using in the Parent Resource using a Multi-Dimensional Availabilities | Only staff members available in Amsterdam should be considered. |
Filter rule
On both “Child of Parent Resource as Available at Parent Resource you can apply dimension filters. This allows you to narrow down which dimension records need to be considered. For example you can say, Child reservation 1, needs a resource of type “intake room” which is available in the parent resource. Or you could say, Only Staff members of type “Nurse” should be considered in Child reservation 1.
Example to for a setup:
Go to Reservation Blueprints
Create a new blueprint called Treatment Appointment to create the parent
Give it a duration of 60 minutes and a Name and save
...
Go to
related,fields to set
Add reservation type:
TreatmentAppointment
...
Create a new child blueprint called Intake
Give it a duration of 15 minutes
Give it a order, this determines the sequence in which the reservations take place, 1 in tis case
Go to related, fields to set
Go to related, fields to set
Add reservation type: Recovery
- Add fields to be filled: Resource in parent resource
Add reservation type: Intake
Add fields to be set: Reservation Type
Add fields to set : Resource Staff Available in parent resource. ( this only takes into account staff members available in a resource using Multi-Dimensional Availabilities
Create a new child blueprint called Medical treatment
Give it a duration of 30 minutes
Add reservation type: Treatment
Add fields to be filled: Staff available in Parent Resource
Filter the Staff by adding a rule to it. B25__Staff__c = ‘Doctor’
Add fields to be filled: Resource in parent resource
Filter the Resource adding a rule to it. B25__Resourcetype__c = ‘Treatment Room’
Create a new child blueprint
Give it a duration of 15 minutes
Then add which resource this child needs to have. In this case it needs to be a child resource of the resource of the Parent reservation.
...
Usefull links:
...