templates/Shop/includes/articletable2.html.twig line 1

Open in your IDE?
  1. {% set lang = app.request.getLocale() %}
  2. {% set iva = app_helper_get_iva() %}
  3. {% set tableAttributes = app_product_variants_attributes(data) %}
  4. {% set variants = data.variants %}
  5. {% set colCount = 0 %}
  6. {% do pimcore_head_link().appendStylesheet('/static2/css/basictable.css') %}
  7. {% do pimcore_head_script().appendFile('/static2/js/jquery.basictable.min.js') %}
  8. <div id="sizechart" class="mfpbox w-75 mfp-with-anim mfp-hide">
  9.     <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}}">
  10.             <thead style="background-color: white !important; color: black !important">
  11.             <tr>
  12.                 <th>Ref.</th>
  13.                 {%  if tableAttributes | length > 0 %}
  14.                     {% for field in tableAttributes %}
  15.                         {% if field["name"] != "colorcard" and field["name"] != "shortdescription" and field["name"] != "longdescription" %}
  16.                             <th>
  17.                                 {{ field["title"] |trans }}
  18.                             </th>
  19.                             {% set colCount = colCount + 1 %}
  20.                         {% endif %}
  21.                     {% endfor %}
  22.                 {% else %}
  23.                     {% set colCount = colCount + 1 %}
  24.                 {% endif %}
  25.                 {% if data.precios | length > 0 and ( product.marca != 15663 or is_authenticated) %}
  26.                     {% set colCount = colCount + 1 %}
  27.                     <th>{{ "price" | trans }}*</th>
  28.                 {% endif %}
  29.                 {% if is_authenticated %}
  30.                     <th></th>
  31.                 {% endif %}
  32.             </tr>
  33.             </thead>
  34.             <tbody>
  35.             {% set rowId = 0 %}
  36.             {%  for variant in variants %}
  37.                 {% set rowId = rowId + 1 %}
  38.                 <tr>
  39.                     <td class="add_cart_manufactura">{{ variant.getManufacturercode() }}</td>
  40.                     {%  if tableAttributes | length > 0 %}
  41.                         {% set continue = false %}
  42.                         {% for field in tableAttributes %}
  43.                             {% if field["name"] != "colorcard" and field["name"] != "shortdescription" and field["name"] != "longdescription" and field["name"] != "price" %}
  44.                                 {% set fieldData = app_product_variant_attribute_value(variant, field) %}
  45.                                 <td>{{ fieldData.value }}</td>
  46.                             {% endif %}
  47.                         {% endfor %}
  48.                     {% else %}
  49.                         {% set colCount = colCount + 1 %}
  50.                     {% endif %}
  51.                     {% if data.precios | length > 0 %}
  52.                         {% set precioList = app_product_variant_prices(variant, iva) %}
  53.                         {%  set brandExcluded = ["89"] %}
  54.                         {% if variant.getMarca not in brandExcluded and ( product.marca != 15663 or is_authenticated) %}
  55.                             <td>
  56.                                 {% if precioList.precioReal is not empty %}
  57.                                     {# &nbsp;&euro; #}
  58.                                     {{ precioList.precioReal ~ " €"}}
  59.                                 {% endif %}
  60.                             </td>
  61.                         {% endif %}
  62.                         {% if is_authenticated %}
  63.                             {% set lang = app.request.getLocale() %}
  64.                             <td class="add_cart_padding">
  65.                                 {% if app.request.locale == 'en' %}
  66.                                     <a href="#" class="btn btn-primary btn-ver-datatable rounded-3" style="filter: brightness(100%);" aria-current="page" id="{{ variant.getId() }}">View</a>
  67.                                 {% else %}
  68.                                     <a href="#" class="btn btn-primary btn-ver-datatable rounded-3" style="filter: brightness(100%);" aria-current="page" id="{{ variant.getId() }}">Ver</a>
  69.                                 {% endif %}
  70.                             </td>
  71.                         {% endif %}
  72.                         {% if is_authenticated %}
  73.                             {% if variant.getMarca in brandExcluded %}
  74.                                 <td>
  75.                                     {% if precioList.precioReal is not empty %}
  76.                                         {# &nbsp;&euro; #}
  77.                                         {{ precioList.precioReal ~ " €"}}
  78.                                     {% endif %}
  79.                                 </td>
  80.                                 <td class="add_cart_padding">
  81.                                     <a href="#" class="btn btn-primary active" aria-current="page">Ver</a>
  82.                                     {# <a class="add_product" id="{{ variant.getId() }}">
  83.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <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>
  84.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 </a> #}
  85.                                 </td>
  86.                             {% endif %}
  87.                             {#                 <td class="add_cart_padding">
  88.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <a href="#" class="btn btn-primary active" aria-current="page">Active link</a>
  89.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      <a class="add_product" id="{{ variant.getId() }}">
  90.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <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>
  91.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     </a>
  92.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 </td> #}
  93.                         {% endif %}
  94.                     {% endif %}
  95.                 </tr>
  96.             {% endfor %}
  97.             </tbody>
  98.         </table>
  99.     </div>
  100.     <button title="Close (Esc)" type="button" class="mfp-close">×</button>
  101. </div>