{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Alertes Stock{% endblock %} {% block content %}
{# Header #}

Alertes Stock

Seuils: bas ≤ {{ settings.lowStockThreshold }}, critique ≤ {{ settings.criticalStockThreshold }}

{# Recap cards #}
{{ outOfStockProducts|length }}
Rupture
{{ criticalProducts|length }}
Critique
{{ lowStockProducts|length }}
Bas
{# Macro pour section d'alerte #} {% macro alertSection(products, title, icon, headerColor, bgTint, textColor, badge, thresholdLabel, settings, csrfProvider) %}

{{ title }} ({{ products|length }})

{% if products|length > 0 %} {# Desktop table #} {# Mobile cards #}
{% for product in products %}
{{ product.name }}
{{ product.sku }}
{{ product.currentStock }}
Min: {{ product.minStock ?? '-' }}
{% endfor %}
{% else %}
Aucun produit dans cette categorie
{% endif %}
{% endmacro %} {% import _self as alerts %} {# Rupture de stock #} {{ alerts.alertSection(outOfStockProducts, 'Rupture de stock', 'fa-times-circle', 'red-600', 'red', 'red', '-', 'Min requis', settings) }} {# Stock critique #} {{ alerts.alertSection(criticalProducts, 'Stock critique', 'fa-exclamation-circle', 'orange-500', 'orange', 'orange', '≤ ' ~ settings.criticalStockThreshold, 'Seuil critique', settings) }} {# Stock bas #} {{ alerts.alertSection(lowStockProducts, 'Stock bas', 'fa-arrow-down', 'yellow-500', 'yellow', 'yellow', '≤ ' ~ settings.lowStockThreshold, 'Seuil bas', settings) }}
{% endblock %}