{% extends "YOUCommercantBundle::layout.html.twig" %} {% block container %}
{% import 'YOUCommercantBundle::macros.html.twig' as macros %}
{{ macros.ariane({ 'Tableau de bord':{'url':path('you_commercant_secured_homepage')}, 'CODES PROMOTIONNEL':{} }) }}

Vos codes promotionnels




Les codes promotionnel permettent d'offrir au client une des combinaisons suivante :
- Une réduction en pourcentage sur la facture boutique
- Une réduction d'un montant fixe sur la facture boutique
- Offrir les frais de port
Il est possible de combiner l'offre des frais de port avec chacun des deux premièr type de promotion.

Ajouter un code promotionnel

{% for codePromo in codesPromo %} {% endfor %}
Id Code Description Quantité Montant min. Valeur Port offert Début Fin Privé Activé Action
{{ codePromo.id }} {{ codePromo.code }} {{ codePromo.description }} {{ codePromo.quantity }} ({{ codePromo.usedQuantity }}) {{ codePromo.minimumAmount }} {{ codePromo.value }}{% if codePromo.type == 0 %}-{% elseif codePromo.type == 1 %}%{% elseif codePromo.type == 2 %}€{% endif %} {% if codePromo.freeShipping %}oui{% else %}non{% endif %} {{ codePromo.begin|date('d/m/Y H:i') }} {{ codePromo.end|date('d/m/Y H:i') }} {% if codePromo.isPrivate %}oui{% else %}non{% endif %} {% if codePromo.isEnabled %}Actif{% else %}Inactif{% endif %}
{% if codesPromo|length == 0 %}

Vous n'avez actuellement aucun code promotionnel sur votre boutique.

{% endif %}


Codes promotionnels généraux




{% for codePromo in codesPromoGlob %} {% endfor %}
Id Code Description Quantité Montant min. Valeur Port offert Début Fin Privé Activé
{{ codePromo.id }} {{ codePromo.code }} {{ codePromo.description }} {{ codePromo.quantity }} ({{ codePromo.usedQuantity }}) {{ codePromo.minimumAmount }} {{ codePromo.value }}{% if codePromo.type == 0 %}-{% elseif codePromo.type == 1 %}%{% elseif codePromo.type == 2 %}€{% endif %} {% if codePromo.freeShipping %}oui{% else %}non{% endif %} {{ codePromo.begin|date('d/m/Y H:i') }} {{ codePromo.end|date('d/m/Y H:i') }} {% if codePromo.isPrivate %}oui{% else %}non{% endif %} {% if codePromo.isEnabled %}Actif{% else %}Inactif{% endif %}
{% endblock %}