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({
|
PartColumn({
|
||||||
switchable: !!partId
|
switchable: !!partId
|
||||||
}),
|
}),
|
||||||
|
{
|
||||||
|
accessor: 'part_detail.IPN',
|
||||||
|
title: t`IPN`,
|
||||||
|
sortable: false,
|
||||||
|
switchable: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
accessor: 'manufacturer',
|
accessor: 'manufacturer',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
|||||||
@@ -65,6 +65,12 @@ export function SupplierPartTable({
|
|||||||
switchable: !!partId,
|
switchable: !!partId,
|
||||||
part: 'part_detail'
|
part: 'part_detail'
|
||||||
}),
|
}),
|
||||||
|
{
|
||||||
|
accessor: 'part_detail.IPN',
|
||||||
|
title: t`IPN`,
|
||||||
|
sortable: false,
|
||||||
|
switchable: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
accessor: 'supplier',
|
accessor: 'supplier',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user