From 91489e986cc631907298f656b1a15267809fbc9c Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 3 Nov 2025 13:47:26 +1100 Subject: [PATCH] UI table updates (#10748) - Add "IPN" col to SupplierPartTable - Add "IPN" col to ManufacturerPartTable --- .../src/tables/purchasing/ManufacturerPartTable.tsx | 6 ++++++ src/frontend/src/tables/purchasing/SupplierPartTable.tsx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/frontend/src/tables/purchasing/ManufacturerPartTable.tsx b/src/frontend/src/tables/purchasing/ManufacturerPartTable.tsx index 937a54a9f7..b3920b9428 100644 --- a/src/frontend/src/tables/purchasing/ManufacturerPartTable.tsx +++ b/src/frontend/src/tables/purchasing/ManufacturerPartTable.tsx @@ -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, diff --git a/src/frontend/src/tables/purchasing/SupplierPartTable.tsx b/src/frontend/src/tables/purchasing/SupplierPartTable.tsx index 0e16d5ef33..2990bfd381 100644 --- a/src/frontend/src/tables/purchasing/SupplierPartTable.tsx +++ b/src/frontend/src/tables/purchasing/SupplierPartTable.tsx @@ -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,