custom/apps/DmitsBruttoNetto/Resources/views/storefront/component/product/card/price-unit.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/price-unit.html.twig' %}
  2. {% block component_product_box_price_info %}
  3.     {# @deprecated tag:v6.5.0 - purchaseUnit will be removed, use product.purchaseUnit if needed #}
  4.     {% set purchaseUnit = product.purchaseUnit %}
  5.     {# @deprecated tag:v6.5.0 - listingPrice will be removed without replacement, since it was removed from the product struct #}
  6.     {% set listingPrice = product.calculatedListingPrice %}
  7.     {# @deprecated tag:v6.5.0 - fromPrice will be removed without replacement #}
  8.     {% set fromPrice = listingPrice.from %}
  9.     {% set cheapest = product.calculatedCheapestPrice %}
  10.     {% set real = product.calculatedPrice %}
  11.     {% if product.calculatedPrices.count > 0 %}
  12.         {% set real = product.calculatedPrices.last %}
  13.     {% endif %}
  14.     {% set referencePrice = real.referencePrice %}
  15.     {% set displayFrom = product.calculatedPrices.count > 1 %}
  16.     
  17.     {% set taxRate= product.tax.taxRate %}
  18.     <div class="product-price-info"  data-tax="{{ taxRate }}">
  19.         {% block component_product_box_price_unit %}
  20.             {{ parent() }}
  21.         {% endblock %}
  22.         {% block component_product_box_price %}
  23.            {{ parent() }}
  24.         {% endblock %}
  25.     </div>
  26. {% endblock %}