{% extends 'admin/base_admin.html.twig' %} {% block title %}Taux de commission{% endblock %} {% block content %} ← Retour aux vendeurs
⚠️ Toute modification s'applique uniquement aux nouvelles ventes. Les commissions déjà enregistrées ne sont pas impactées.
{% set config = { 'ambassadeur': {emoji: '⭐', color: '#d97706', bg: '#fef3c7', border: '#fcd34d'}, 'agent_commercial': {emoji: '💼', color: '#2563eb', bg: '#dbeafe', border: '#93c5fd'}, 'apporteur_affaires': {emoji: '🤲', color: '#059669', bg: '#d1fae5', border: '#6ee7b7'}, 'influenceur': {emoji: '📣', color: '#9333ea', bg: '#fae8ff', border: '#d8b4fe'}, 'client_referent': {emoji: '👥', color: '#16a34a', bg: '#dcfce7', border: '#86efac'} } %}
{% for tauxEntite in taux %} {% if tauxEntite.statut != 'client_gratuit' %} {% set cfg = config[tauxEntite.statut] ?? {emoji: '•', color: '#333', bg: '#f5f5f7', border: '#ddd'} %}
{# Bande colorée en haut #}
{{ cfg.emoji }}
{{ tauxEntite.statutLabel }}
{% if tauxEntite.modifiePar %}
Modifié par {{ tauxEntite.modifiePar.fullName }}
{% endif %}
%
Dernière modif. : {{ tauxEntite.updatedAt|date('d/m/Y à H:i') }}
{% endif %} {% endfor %} {# Client gratuit — non modifiable #}
🎁
Client gratuit
Carte offerte par l'admin
Aucune commission
{% endblock %}