{% import "@SyliusShop/Common/Macro/money.html.twig" as money %}
<td data-js-product-tier-price class="table-prices-cell tier-price-group {% if first %}active{% endif %}"
data-variant="{{ variant.code }}"
{% if isType %}
data-qty="{{ tierPrice ? tierPrice.qty : '' }}"
data-origin-price="{{ tierPrice and tierPrice.price ? tierPrice.price / 100000 : '' }}"
data-price="{{ tierPrice and tierPrice.price ? tierPrice.price / 100000 : '' }}"
data-option="type"
{% endif %}
data-option-code="{{ variant.optionValues[0].code }}">
{% if tierPrice and isType and tierPrice.price > 0 %}
<span class="price-without-tax" data-js-product-price-without-tax>{{ money.convertAndFormatSpecial(tierPrice.price, {'divisor': 100000, 'scale': 3 }) }}</span>
{% elseif tierPrice and isType == false and tierPrice.price > 0 %}
{{ money.convertAndFormatSpecial(tierPrice.price, {'divisor': 100000, 'scale': 3 }) }}
{% else %}
N/A
{% endif %}
</td>