From 2e10400d7ce4d7efebc8b52ad4619eaeff415b31 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 19 Aug 2024 14:23:44 +1000 Subject: [PATCH] Add more columns to BuildLineTable (#7914) --- src/frontend/src/tables/build/BuildLineTable.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/frontend/src/tables/build/BuildLineTable.tsx b/src/frontend/src/tables/build/BuildLineTable.tsx index 3971f46f36..00234568c7 100644 --- a/src/frontend/src/tables/build/BuildLineTable.tsx +++ b/src/frontend/src/tables/build/BuildLineTable.tsx @@ -153,6 +153,16 @@ export default function BuildLineTable({ switchable: false, render: (record: any) => PartColumn(record.part_detail) }, + { + accessor: 'record.part_detail.IPN', + sortable: false, + title: t`IPN` + }, + { + accessor: 'record.part_detail.description', + sortable: false, + title: t`Description` + }, { accessor: 'bom_item_detail.reference', ordering: 'reference',