Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

count_order.html.twig 401B

3 lat temu
123456789101112
  1. {% set order_store = order_shop_container.store.setSection(section_current()).setMerchant(merchant_current()) %}
  2. {% set totalOrder = order_store.countValidByUserAllMerchant(entity.instance) %}
  3. {% if totalOrder > 0 %}
  4. <span class="badge badge-success">
  5. {{ totalOrder }} commandes
  6. </span>
  7. {% else %}
  8. <span class="badge badge-secondary">
  9. 0 commandes
  10. </span>
  11. {% endif %}