diff --git a/src/frontend/src/tables/bom/BomTable.tsx b/src/frontend/src/tables/bom/BomTable.tsx index 2a22430219..495027e661 100644 --- a/src/frontend/src/tables/bom/BomTable.tsx +++ b/src/frontend/src/tables/bom/BomTable.tsx @@ -101,6 +101,11 @@ export function BomTable({ ); } }, + { + accessor: 'sub_part_detail.IPN', + title: t`IPN`, + sortable: true + }, DescriptionColumn({ accessor: 'sub_part_detail.description' }), diff --git a/src/frontend/src/tables/stock/StockItemTable.tsx b/src/frontend/src/tables/stock/StockItemTable.tsx index 9f6e9fcd34..3458b76a9f 100644 --- a/src/frontend/src/tables/stock/StockItemTable.tsx +++ b/src/frontend/src/tables/stock/StockItemTable.tsx @@ -47,6 +47,16 @@ function stockItemTableColumns(): TableColumn[] { sortable: true, render: (record: any) => PartColumn(record?.part_detail) }, + { + accessor: 'part_detail.IPN', + title: t`IPN`, + sortable: true + }, + { + accessor: 'part_detail.revision', + title: t`Revision`, + sortable: true + }, DescriptionColumn({ accessor: 'part_detail.description' }),