mirror of
https://github.com/inventree/InvenTree.git
synced 2025-11-09 09:35:42 +00:00
UI table updates (#10748)
- Add "IPN" col to SupplierPartTable - Add "IPN" col to ManufacturerPartTable
This commit is contained in:
@@ -63,6 +63,12 @@ export function ManufacturerPartTable({
|
||||
PartColumn({
|
||||
switchable: !!partId
|
||||
}),
|
||||
{
|
||||
accessor: 'part_detail.IPN',
|
||||
title: t`IPN`,
|
||||
sortable: false,
|
||||
switchable: true
|
||||
},
|
||||
{
|
||||
accessor: 'manufacturer',
|
||||
sortable: true,
|
||||
|
||||
@@ -65,6 +65,12 @@ export function SupplierPartTable({
|
||||
switchable: !!partId,
|
||||
part: 'part_detail'
|
||||
}),
|
||||
{
|
||||
accessor: 'part_detail.IPN',
|
||||
title: t`IPN`,
|
||||
sortable: false,
|
||||
switchable: true
|
||||
},
|
||||
{
|
||||
accessor: 'supplier',
|
||||
sortable: true,
|
||||
|
||||
Reference in New Issue
Block a user