diff --git a/app/components/inventory/LowStockDashboard.vue b/app/components/inventory/LowStockDashboard.vue new file mode 100644 index 0000000..0d4e9c4 --- /dev/null +++ b/app/components/inventory/LowStockDashboard.vue @@ -0,0 +1,110 @@ + + + + + + + Low Stock Items + + + {{ lowStockItems.length }} + + + + + + + + {{ item.name }} + + + {{ item.quantity }}/{{ item.low_stock_threshold }} {{ item.unit?.abbreviation }} + + + {{ getUrgencyText(item) }} + + + + + + + Restock + + + + + + + {{ expanded ? 'Show Less' : `Show ${lowStockItems.length - maxDisplay} More` }} + + + + + +
{{ item.name }}