UI table updates (#10748)
- Add "IPN" col to SupplierPartTable - Add "IPN" col to ManufacturerPartTable
This commit is contained in:
parent
e1bf67b32c
commit
91489e986c
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue