custom/plugins/SwagCustomizedProducts/src/Resources/views/storefront/component/customized-products/_include/price-label.html.twig line 1

Open in your IDE?
  1. {% if value.relativeSurcharge %}
  2.     {% set productPrice = page.product.calculatedPrices.first.unitPrice %}
  3.     {% if productPrice is null %}
  4.         {% set productPrice = page.product.calculatedPrice.unitPrice %}
  5.     {% endif %}
  6.     {% if context.getTaxState() != 'gross' %}
  7.         {% set productPrice = productPrice - page.product.calculatedTaxes.first.tax %}
  8.     {% endif %}
  9.     {% set valueSurcharge = (value.percentageSurcharge/100) * productPrice %}
  10. {% else %}
  11.     {% set valueSurcharge = value.getCalculatedPrice().totalPrice %}
  12. {% endif %}
  13. {% if valueSurcharge is not null and valueSurcharge != 0 %}
  14.     {% set valueSurchargeInfo = valueSurcharge|currency %}
  15.     {% if brackets %}
  16.         {% set valueSurchargeInfo = '(+' ~ valueSurchargeInfo ~ ')' %}
  17.     {% endif %}
  18. {% endif %}
  19. {% if valueSurchargeInfo is not null %}
  20.     <div class="swag-customized-products-option__price-tag">
  21.         {{ valueSurchargeInfo }}{{ "general.star"|trans|sw_sanitize }}{{ "general.star"|trans|sw_sanitize }}
  22.     </div>
  23. {% endif %}