...
After doing so, all conflict checking configured on the dimension itself, are disabled and only the rules will be used from now on.
Creating and editing rules
Navigate Go to the "Booking Restriction Rule tab, press new rule.
...
" tab and click on "New Rule” or select an existing rule from the list.
Please provide a name for this rule
...
. Optionally, link it to a dimension
...
. Mark it as
...
active or
...
inactive. If inactive, the rule will not work or be validated upon save.
...
Type the formula itself
...
here. If the formula is true, it will cause a conflict.
...
Specify the conflict type: Is it a blocking (hard) conflict or a warning (soft) conflict?
...
Enter the validation message. This will be shown to the user as the reason why it’s not allowed.
Save
...
the rule. If the rule is marked as active, it will be checked
...
for syntax and referenced fields
...
.
Note |
---|
Important is that when the result is true, the reservation will be blocked. This is why we call the rules “reservation restrictions”. |
...
We will support the following logical operators:
Operation | Description |
---|---|
== | Checks if two values are equal. Returns true if they are, false otherwise. |
!= | Checks if two values are not equal. Returns true if they are not, false otherwise. |
> | Checks if the left value is greater than the right value. Returns true if it is, false otherwise. |
>= | Checks if the left value is greater than or equal to the right value. Returns true if it is, false otherwise. |
< | Checks if the left value is less than the right value. Returns true if it is, false otherwise. |
<= | Checks if the left value is less than or equal to the right value. Returns true if it is, false otherwise. |
CONTAINS | Checks if a text value contains a specified substring. Returns true if it does, false otherwise. |
LIKE | Performs a pattern matching comparison between a text value and a specified pattern. Returns true if the pattern matches, false otherwise. |
NOT | Negates the Boolean value of an expression. Returns true if the expression is false, false if it is true. |
ISBLANK | Checks if a field or expression is blank (empty) or null. Returns true if it is blank, false otherwise. |
Functions
Some functions that return a number:Rules serve different functions, with some of them returning numerical values that you can use in your formula.
SUM(listofnumbers)
→ -> yields the sum of all the number in a listSUM(listofrecords, numberfield)
→ -> yields the sum of all the number fieldsCOUNT(list)
→ -> yields the number of items in the listMIN(listofrecords, numberfield)
→ -> yields the lowest number in all of the numberfieldsMIN(listofnumbers)
→ -> yields the lowest number in a listMAX(listofrecords, numberfield)
→ -> yields the highest number in all of the numberfieldsMAX(listofnumbers)
→ -> yields the highest number in a list
Support some ways to filter a listYou can filter records by using the filter function:
FILTER(records AS record, record.number_field__c > 5)
→ -> yields a potentially smaller list of any items for which the condition is true
Support some way to iterate over a listIteration of a list is also possible, for example to create a list of just numbers:
FOREACH(records AS record, record.number_field__c)
→ -> yields a new list of the result of the formula of each record.
You Finally, you can combine the functions to create more in-depth rules: .
COUNT(FILTER(records AS record, record.number_field__c > 5))
==> 0
→ -> returns TRUE if at least one record has a value higher than 5
Rule linked to dimension
If When you link your rule to a dimension, two special variables will become available to for use in the formula: .
overlapping_reservations
overlapping reservations with the reservation being checkedCOUNT(overlappingReservations) > 0
No This rule would make sure that no overlapping reservation are allowedmatchingAvailablilities
Allowing you to use the availablility availability or unavailablility unavailability of the related dimension in your formula.COUNT(matchingAvailabilities) == 0
Reservation not allowed when there is no availability or if there are unavailabilities.
...