Enter product data as a JSON array. Each object should include:
product_id
(string)sales_category
(string: "A", "B", "C", "D", "E")warehouse_level
(number: 1, 2, or 3)time_to_level_3
(number: days, or `null` if already level 3)inventory_quantity
(number)Example data is pre-filled.
These products are unsellable and are the highest priority for disposal or special handling. Sorted by Sales Category (A first), then by Quantity (more first).
ID | Sales | Level | Time to L3 | Quantity | Priority Score |
---|
These products are currently in Level 1 or 2 but are close to becoming unsellable. They are prioritized to move quickly to avoid becoming Level 3. Sorted primarily by Time to Level 3 (less time first), then by Sales and Quantity.
ID | Sales | Level | Time to L3 | Quantity | Priority Score |
---|
These are standard inventory items. They are prioritized for normal sales based on their Sales Category, Warehouse Level, and Quantity.
ID | Sales | Level | Time to L3 | Quantity | Priority Score |
---|
This is the full list of products sorted by their calculated priority score, combining all tiers into a single ranked list. Tier 1 products will appear first, followed by Tier 2, then Tier 3.
ID | Sales | Level | Time to L3 | Quantity | Priority Score |
---|