{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Clients POS{% endblock %} {% block content %}
Gestion des clients de {{ company.name }}
| Client | Contact | Achats | Total dépensé | Crédit | Fidélité | Actions |
|---|---|---|---|---|---|---|
|
{{ customer.fullName }}
{% if customer.city %} {{ customer.city }} {% endif %}
|
{% if customer.phone %} {{ customer.phone }} {% endif %}
{% if customer.email %}{{ customer.email }} {% endif %}
|
{{ customer.totalPurchases }} | {{ customer.totalSpent|number_format(0, ',', ' ') }} {{ settings.currencySymbol }} | {% if customer.hasDebt %} {{ customer.creditBalance|number_format(0, ',', ' ') }} {{ settings.currencySymbol }} {% else %} 0 {% endif %} | {% if customer.loyaltyPoints > 0 %} {{ customer.loyaltyPoints }} pts {% else %} 0 {% endif %} |