diff --git a/src/frontend/src/pages/company/SupplierPartDetail.tsx b/src/frontend/src/pages/company/SupplierPartDetail.tsx index 775bc1d1bd5..2ccc9763dd1 100644 --- a/src/frontend/src/pages/company/SupplierPartDetail.tsx +++ b/src/frontend/src/pages/company/SupplierPartDetail.tsx @@ -190,6 +190,13 @@ export default function SupplierPartDetail() { copy: true, icon: 'stock' }, + { + type: 'string', + name: 'on_order', + label: t`On Order`, + copy: true, + icon: 'purchase_orders' + }, { type: 'string', name: 'available', @@ -376,6 +383,12 @@ export default function SupplierPartDetail() { color={'red'} visible={supplierPart.active && supplierPart.in_stock == 0} key='no_stock' + />, + 0} + key='on_order' /> ]; }, [supplierPart]);