Spaces:
Configuration error
Configuration error
| """Inventory category KPI widget definitions.""" | |
| INVENTORY_WIDGETS: dict = { | |
| "wid_low_stock_skus_001": { | |
| "title": "Low Stock SKUs", | |
| "category": "inventory", | |
| "unit": "count", | |
| "description": "SKUs at or below reorder point; includes stockout count", | |
| "drill_down_url": "/inventory/stock-overview", | |
| }, | |
| "wid_net_stock_value_001": { | |
| "title": "Net Stock Value", | |
| "category": "inventory", | |
| "unit": "INR", | |
| "description": "Total value of current inventory (qty_on_hand * cost_price)", | |
| "drill_down_url": "/inventory/stock-overview", | |
| }, | |
| "wid_adjustments_mtd_001": { | |
| "title": "Adjustments This Month", | |
| "category": "inventory", | |
| "unit": "count", | |
| "description": "Approved/applied stock adjustments month-to-date", | |
| "drill_down_url": "/inventory/adjustments", | |
| }, | |
| } | |