{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Inventory', 'url': url_for('inventory.list_stock_items')}, {'text': 'Reports', 'url': url_for('inventory.reports_dashboard')}, {'text': 'Low Stock Report'} ] %} {{ page_header( icon_class='fas fa-exclamation-triangle', title_text='Low Stock Report', subtitle_text='Items below reorder point', breadcrumbs=breadcrumbs ) }}
{{ _('Found %(count)s items below their reorder point.', count=low_stock_items|length) }}
| {{ _('Item') }} | {{ _('SKU') }} | {{ _('Warehouse') }} | {{ _('Quantity On Hand') }} | {{ _('Reorder Point') }} | {{ _('Shortfall') }} | {{ _('Reorder Quantity') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|---|
| {{ item_data.item.name }} | {{ item_data.item.sku }} | {{ item_data.warehouse.code }} | {{ item_data.quantity_on_hand }} | {{ item_data.reorder_point }} | {{ item_data.shortfall }} | {{ item_data.reorder_quantity }} | {{ _('Create PO') }} |
{{ _('All Stock Levels are Good') }}
{{ _('No items are currently below their reorder point.') }}