UI table updates (#10748)

- Add "IPN" col to SupplierPartTable
- Add "IPN" col to ManufacturerPartTable
This commit is contained in:
Oliver 2025-11-03 13:47:26 +11:00 committed by GitHub
parent e1bf67b32c
commit 91489e986c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View File

@ -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,

View File

@ -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,