Suivi des promotions
Historique des promotions appliquées, arrêtées ou expirées.
{{ histories|length }}
{% if histories|length == 0 %}
Aucune promotion enregistrée
Ce produit n'a encore aucun historique de promotion.
{% else %}
{% for h in histories %}
{% set p = h.promotion %}
{% set isOutOfPeriod = not h.endedAt and (date() > p.endAt or date() < p.startAt) %}
{{ p.name }}
Période promo : {{ p.startAt|date('d/m/Y') }} - {{ p.endAt|date('d/m/Y') }}
{% if h.endedAt %}
Terminée
{% elseif isOutOfPeriod %}
Hors période
{% else %}
En cours
{% endif %}
Début
{{ h.startedAt|date('d/m/Y H:i') }}
Fin
{% if h.endedAt %}{{ h.endedAt|date('d/m/Y H:i') }}{% elseif isOutOfPeriod %}Hors période{% else %}En cours{% endif %}
Appliquée par
{{ h.startedBy ?: '-' }}
Arrêtée par
{{ h.endedBy ?: '-' }}
Motif
{{ h.endReason ?: '-' }}
Note
{{ h.endNote ?: '-' }}
{% endfor %}
{% endif %}