Summary
Goal
Setup in Picturepark
Field Value Access
Use Case
Info |
---|
Number data.corporateInformation.productPrice
A valid use case could be to calculate the discount price, either working with a fixed discount or another number field carrying the discount (ID: discountPercentage), shown in this example: |
Code Block |
---|
{% assign discount = data.corporateInformation.discountPercentage | divided_by: 100 %}
{% assign discountValue = data.corporateInformation.productPrice | times: discount %}
{% assign discountPrice = data.corporateInformation.productPrice | minus: discountValue %}
{% if data.data.corporateInformation.discountPercentage %}
Discount Price: {{ discountPrice }}
{% endif %} |