Add more columns to BuildLineTable (#7914)

This commit is contained in:
Oliver 2024-08-19 14:23:44 +10:00 committed by GitHub
parent 48ee876d79
commit 2e10400d7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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',