File size: 890 Bytes
1519172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""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",
    },
}