2
0
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:
Oliver
2025-11-03 13:47:26 +11:00
committed by GitHub
parent e1bf67b32c
commit 91489e986c
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,