SILog map styles: Skillnad mellan sidversioner
Hoppa till navigering
Hoppa till sök
Peter (diskussion | bidrag) |
Peter (diskussion | bidrag) |
||
| Rad 42: | Rad 42: | ||
== NOT == | == NOT == | ||
Match a false condition. | |||
'''Example''' | |||
<pre> | |||
IF(NOT(storageArea.status = storageAreaStatus.empty), "Not empty", "Empty") | |||
</pre> | |||
Will return not empty for any storage that doesn't have status empty | |||
== ROUND == | == ROUND == | ||
== SWITCH == | == SWITCH == | ||
Versionen från 22 oktober 2025 kl. 14.54
Conditions
TODO: Add info
Functions
ANYOF
TODO: Add info
COALESCE
Use the first value that isn't null.
Example
COALESCE(product.name, storageArea.name)
Will show the name of the storage area if there isn't any product in the storage area.
IF
IF(storageArea.status = storageAreaStatus.empty, "Empty", "Not empty")
IFS
MAX
Returns the MAX value of two or more values
Example
MAX(1, 3, 2)
will return 3
MIN
Returns the MIN value of two or more values
Example
MAX(42, 1, 100)
will return 1
NOT
Match a false condition.
Example
IF(NOT(storageArea.status = storageAreaStatus.empty), "Not empty", "Empty")
Will return not empty for any storage that doesn't have status empty