2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00

Filter fix ()

* Allow ordering  by IPN

* Update table
This commit is contained in:
Oliver
2024-12-11 15:44:00 +11:00
committed by GitHub
parent ad6bd635e6
commit 1adc42d422
2 changed files with 5 additions and 1 deletions
src
backend
InvenTree
order
frontend

@ -129,12 +129,14 @@ export function PurchaseOrderLineItemTable({
accessor: 'part',
title: t`Part`,
sortable: true,
ordering: 'part_name',
switchable: false,
render: (record: any) => PartColumn({ part: record.part_detail })
},
{
accessor: 'part_detail.IPN',
sortable: false
sortable: true,
ordering: 'IPN'
},
{
accessor: 'part_detail.description',