{% extends "base.html" %} {% from "_macros.html" import app_pill %} {% block title %}Bestands-Alarme · Werkstatt{% endblock %} {% block breadcrumb %}

Werkstatt / Bestands-Alarme

{% endblock %} {% block heading %}Bestands-Alarme{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %}
{{ counts.out_of_stock }} Ausverkauft (Bestand = 0) {% if filter_severity == 'out_of_stock' %}aktiv{% endif %} {{ counts.critical }} Kritisch (≤ 50% Mindestbestand) {% if filter_severity == 'critical' %}aktiv{% endif %} {{ counts.warn }} Warnung (unter Mindestbestand) {% if filter_severity == 'warn' %}aktiv{% endif %}
{% if filter_severity %}

← Alle anzeigen

{% endif %} {% if not alerts %}
Keine offenen Bestands-Alarme — alles im grünen Bereich.
{% else %} {% for vendor_name, vendor_alerts in by_vendor.items() %}
{{ vendor_name }} · {{ vendor_alerts|length }} Position{% if vendor_alerts|length != 1 %}en{% endif %}
{% if vendor_alerts[0].vendor_id %} {% endif %}
{% for a in vendor_alerts %} {% endfor %}
Ident Beschreibung Bestand Vorschlag Quelle Aktion
{{ a.item_ident }} {{ (a.item_description or '')|truncate(50) }} {{ a.current_qty }} / {{ a.threshold }} {{ app_pill('tools' if 'TP-' in (a.item_ident or '') else 'management') }}
{% endfor %} {% endif %} {% endblock %}