{% extends 'admin/hub/layout.html.twig' %} {% set hub_title = 'Bons de livraison' %} {% set hub_breadcrumbs = [ { label: 'Bons de livraison', url: path('app_bl_hub') }, { label: 'Alertes' } ] %} {% block title %}Alertes — Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block hub_content %}

Alertes

{# Stats #}
{{ alertes|length }}
alertes non traitees
{% if alertes is empty %}

Aucune alerte en cours. Tous les ecarts ont ete traites.

{% else %}
{% for alerte in alertes %} {% set ligne = alerte.ligneBl %} {% set bl = ligne.bonLivraison %}
{% include 'components/_status_badge.html.twig' with { label: alerte.typeAlerte.label, variant: 'danger', size: 'sm' } only %}
{{ ligne.designationBl }}
{{ bl.numeroBl ? 'BL ' ~ bl.numeroBl : 'BL #' ~ bl.id }} {% if bl.fournisseur %} — {{ bl.fournisseur.nom }} {% endif %}
{% if alerte.ecartPct %} {% include 'components/_variance_indicator.html.twig' with { value: alerte.ecartPctAsFloat, threshold: 5.0, size: 'sm' } only %} {% endif %}
{{ alerte.createdAt|date('d/m/Y') }}
{% endfor %}
{% endif %}
{% endblock %}