Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
Add Danish VAT to price:
-```java
+:::: tabs
+
+::: tab DSL
+
+```javascript
var Number price = 499
logInfo("Price", "Price incl. VAT: " + transform("VAT", "DK", price.toString))
```
+:::
+
+::: tab JavaScript
+
+```javascript
+var price = 499;
+console.log("Price incl. VAT: " + actions.Transformation.transform("VAT", "DK", price.toString()));
+```
+
+:::
+
+::::
+
## Usage as a Profile
The functionality of this `TransformationService` can also be used in a `Profile` on an `ItemChannelLink`.