Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- {% set order_store = order_shop_container.store.setSection(section_current()).setMerchant(merchant_current()) %}
- {% set totalSpent = order_store.getTotalSpentByUser(entity.instance) %}
- {# {% set totalSpent = orderUtils.getTotalSpentByUser(entity.instance) %} #}
- {% if totalSpent > 0 %}
- <span class="badge badge-primary"> {{ totalSpent|format_price(false) }}</span>
- {% else %}
- <span class="badge badge-secondary"> {{ totalSpent|format_price(false) }}</span>
- {% endif %}
|