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

Alertes stock

← Retour au stock
{# Rupture de stock #} {% if outOfStock|length > 0 %}

Rupture de stock ({{ outOfStock|length }})

{% for product in outOfStock %} {% endfor %}
Produit SKU Stock
{{ product.name }} {{ product.sku }} {{ product.currentStock }}
{% endif %} {# Stock critique #} {% if criticalStock|length > 0 %}

Stock critique ({{ criticalStock|length }})

{% for product in criticalStock %} {% endfor %}
Produit SKU Stock Min
{{ product.name }} {{ product.sku }} {{ product.currentStock }} {{ product.minStock }}
{% endif %} {# Stock bas #} {% if lowStock|length > 0 %}

Stock bas ({{ lowStock|length }})

{% for product in lowStock %} {% endfor %}
Produit SKU Stock Min
{{ product.name }} {{ product.sku }} {{ product.currentStock }} {{ product.minStock }}
{% endif %} {% if outOfStock|length == 0 and criticalStock|length == 0 and lowStock|length == 0 %}

Tous les stocks sont à un niveau satisfaisant

{% endif %}
{% endblock %}