You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
401B

  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 %}