75 lines
1.6 KiB
JavaScript
75 lines
1.6 KiB
JavaScript
const inventorySidebarItems = [
|
|
{
|
|
key: 'overview',
|
|
label: 'Overview',
|
|
iconKey: 'inventory',
|
|
path: '/dashboard/inventory/overview'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'filamentstocks',
|
|
label: 'Filament Stocks',
|
|
iconKey: 'filamentStock',
|
|
path: '/dashboard/inventory/filamentstocks'
|
|
},
|
|
{
|
|
key: 'partstocks',
|
|
label: 'Part Stocks',
|
|
iconKey: 'partStock',
|
|
path: '/dashboard/inventory/partstocks'
|
|
},
|
|
{
|
|
key: 'productstocks',
|
|
label: 'Product Stocks',
|
|
iconKey: 'productStock',
|
|
path: '/dashboard/inventory/productstocks'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'purchaseorders',
|
|
label: 'Purchase Orders',
|
|
iconKey: 'purchaseOrder',
|
|
path: '/dashboard/inventory/purchaseorders'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'orderitems',
|
|
label: 'Order Items',
|
|
iconKey: 'orderItem',
|
|
path: '/dashboard/inventory/orderitems'
|
|
},
|
|
{
|
|
key: 'shipments',
|
|
label: 'Shipments',
|
|
iconKey: 'shipment',
|
|
path: '/dashboard/inventory/shipments'
|
|
},
|
|
{ type: 'divider' },
|
|
{
|
|
key: 'stocklocations',
|
|
label: 'Stock Locations',
|
|
iconKey: 'stockLocation',
|
|
path: '/dashboard/inventory/stocklocations'
|
|
},
|
|
{
|
|
key: 'stockevents',
|
|
label: 'Stock Events',
|
|
iconKey: 'stockEvent',
|
|
path: '/dashboard/inventory/stockevents'
|
|
},
|
|
{
|
|
key: 'stockaudits',
|
|
label: 'Stock Audits',
|
|
iconKey: 'stockAudit',
|
|
path: '/dashboard/inventory/stockaudits'
|
|
},
|
|
{
|
|
key: 'stocktransfers',
|
|
label: 'Stock Transfers',
|
|
iconKey: 'stockTransfer',
|
|
path: '/dashboard/inventory/stocktransfers'
|
|
}
|
|
]
|
|
|
|
export default inventorySidebarItems
|