{# uvp data in net initially #}
{% block product_price_uvp_info %}
{% if product.translated.customFields.grimm_customFields_uvp %}
{% set uvp = product.translated.customFields.grimm_customFields_uvp %}
{% if context.taxState == "gross" %}
{# convert uvp to gross #}
{% set uvp = (uvp * ((100 + product.tax.taxRate) / 100))|round(2) %}
{% endif %}
{% set isRequestOnly = product.translated.customFields.grimm_customfields_productRequest_only %}
{% block product_price_uvp_info_inner %}
{% if isRequestOnly == false %}
{% if uvp > product.calculatedPrice.unitPrice %}
<p class="product-uvp-info">
UVP: {{ uvp|currency }}
</p>
{% endif %}
{% endif %}
{% endblock %}
{% endif %}
{% endblock %}