您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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