custom/plugins/EnetProductStoreSalesChannel/src/Resources/views/storefront/component/delivery-information.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/delivery-information.html.twig' %}
  2. {% block component_delivery_information %}
  3.     {% if page.product.extensions.enetProductSaleschannelStock.elements %}
  4.         {% set salesChannelStock = page.product.extensions.enetProductSaleschannelStock %}
  5.         <div class="saleschannel-stock">
  6.         {% for stock in salesChannelStock.elements %}
  7.             {% if stock.inStock == 0 %}
  8.                 <div class="alert alert-danger saleschannel-stock-alert" role="alert">
  9.                     <p class="text-light py-2 px-2">In der Filiale <i>{{ context.salesChannel.translated.customFields.enet_frontendname }}</i> ist dieses Produkt, für heute nicht mehr vorrätig.</p>
  10.                 </div>
  11.             {% endif %}
  12. {#            TODO: nur noch XX verfügbar schon vorbereitet, die Logik hier steht, geht aber erst wenn das POS an die WAWI angebunden ist #}
  13. {#            {% if stock.inStock < 20 and stock.inStock > 0 %}#}
  14. {#                <div class="alert alert-info" role="alert">#}
  15. {#                    <p class="text-light py-2 px-2">Nur noch {{ stock.inStock }} verfügbar, sei schnell und sicher sie dir!</p>#}
  16. {#                </div>#}
  17. {#            {% endif %}#}
  18.         {% endfor %}
  19.         </div>
  20.     {% endif %}
  21.     {{ parent() }}
  22. {% endblock %}