{% set lang = app.request.getLocale() %}
{% set iva = app_helper_get_iva() %}
{% set tableAttributes = app_product_variants_attributes(data) %}
{% set variants = data.variants %}
{% set colCount = 0 %}
{% do pimcore_head_link().appendStylesheet('/static2/css/basictable.css') %}
{% do pimcore_head_script().appendFile('/static2/js/jquery.basictable.min.js') %}
<div id="sizechart" class="mfpbox w-75 mfp-with-anim mfp-hide">
<div class="table-responsive px-1 pt-5"> <table id="variantsTable" class="variantsTable table table-striped table-hover table-bordered align-middle" data-variant-count="{{variants|length}}">
<thead style="background-color: white !important; color: black !important">
<tr>
<th>Ref.</th>
{% if tableAttributes | length > 0 %}
{% for field in tableAttributes %}
{% if field["name"] != "colorcard" and field["name"] != "shortdescription" and field["name"] != "longdescription" %}
<th>
{{ field["title"] |trans }}
</th>
{% set colCount = colCount + 1 %}
{% endif %}
{% endfor %}
{% else %}
{% set colCount = colCount + 1 %}
{% endif %}
{% if data.precios | length > 0 and ( product.marca != 15663 or is_authenticated) %}
{% set colCount = colCount + 1 %}
<th>{{ "price" | trans }}*</th>
{% endif %}
{% if is_authenticated %}
<th></th>
{% endif %}
</tr>
</thead>
<tbody>
{% set rowId = 0 %}
{% for variant in variants %}
{% set rowId = rowId + 1 %}
<tr>
<td class="add_cart_manufactura">{{ variant.getManufacturercode() }}</td>
{% if tableAttributes | length > 0 %}
{% set continue = false %}
{% for field in tableAttributes %}
{% if field["name"] != "colorcard" and field["name"] != "shortdescription" and field["name"] != "longdescription" and field["name"] != "price" %}
{% set fieldData = app_product_variant_attribute_value(variant, field) %}
<td>{{ fieldData.value }}</td>
{% endif %}
{% endfor %}
{% else %}
{% set colCount = colCount + 1 %}
{% endif %}
{% if data.precios | length > 0 %}
{% set precioList = app_product_variant_prices(variant, iva) %}
{% set brandExcluded = ["89"] %}
{% if variant.getMarca not in brandExcluded and ( product.marca != 15663 or is_authenticated) %}
<td>
{% if precioList.precioReal is not empty %}
{# € #}
{{ precioList.precioReal ~ " €"}}
{% endif %}
</td>
{% endif %}
{% if is_authenticated %}
{% set lang = app.request.getLocale() %}
<td class="add_cart_padding">
{% if app.request.locale == 'en' %}
<a href="#" class="btn btn-primary btn-ver-datatable rounded-3" style="filter: brightness(100%);" aria-current="page" id="{{ variant.getId() }}">View</a>
{% else %}
<a href="#" class="btn btn-primary btn-ver-datatable rounded-3" style="filter: brightness(100%);" aria-current="page" id="{{ variant.getId() }}">Ver</a>
{% endif %}
</td>
{% endif %}
{% if is_authenticated %}
{% if variant.getMarca in brandExcluded %}
<td>
{% if precioList.precioReal is not empty %}
{# € #}
{{ precioList.precioReal ~ " €"}}
{% endif %}
</td>
<td class="add_cart_padding">
<a href="#" class="btn btn-primary active" aria-current="page">Ver</a>
{# <a class="add_product" id="{{ variant.getId() }}">
<span class="glyphicon glyphicon-shopping-cart btn-lg add-cart add-item-cart" aria-hidden="true" title="Añadir" data-id-product="{{ variant.getId() }}"></span>
</a> #}
</td>
{% endif %}
{# <td class="add_cart_padding">
<a href="#" class="btn btn-primary active" aria-current="page">Active link</a>
<a class="add_product" id="{{ variant.getId() }}">
<span class="glyphicon glyphicon-shopping-cart btn-lg add-cart add-item-cart" aria-hidden="true" title="Añadir" data-id-product="{{ variant.getId() }}"></span>
</a>
</td> #}
{% endif %}
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
<button title="Close (Esc)" type="button" class="mfp-close">×</button>
</div>