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:
@@ -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',
|
||||
|
||||
@@ -333,7 +333,8 @@ export default function BuildLineTable({
|
||||
}),
|
||||
{
|
||||
accessor: 'part_detail.IPN',
|
||||
sortable: false,
|
||||
sortable: true,
|
||||
ordering: 'IPN',
|
||||
title: t`IPN`
|
||||
},
|
||||
CategoryColumn({
|
||||
|
||||
Reference in New Issue
Block a user