2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-01-29 09:34:33 +00:00

Sort by ipn (#11177)

* Enable sorting by IPN in BOM table

* Ordering by IPN in build line table

* Bump API version
This commit is contained in:
Oliver
2026-01-21 17:01:24 +11:00
committed by GitHub
parent fab61789e1
commit e025180242
5 changed files with 13 additions and 3 deletions

View File

@@ -132,7 +132,8 @@ export function BomTable({
{
accessor: 'sub_part_detail.IPN',
title: t`IPN`,
sortable: true
sortable: true,
ordering: 'IPN'
},
CategoryColumn({
accessor: 'category_detail',

View File

@@ -333,7 +333,8 @@ export default function BuildLineTable({
}),
{
accessor: 'part_detail.IPN',
sortable: false,
sortable: true,
ordering: 'IPN',
title: t`IPN`
},
CategoryColumn({