mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-30 18:50:53 +00:00
[FR] Add "priority" field to BuildOrder (#4225)
* [FR] Add "priority" field to BuildOrder Fixes #3059 * Add priority to the frontend * add field to serializer * bump version
This commit is contained in:
@ -46,6 +46,7 @@ function buildFormFields() {
|
||||
},
|
||||
title: {},
|
||||
quantity: {},
|
||||
priority: {},
|
||||
parent: {
|
||||
filters: {
|
||||
part_detail: true,
|
||||
@ -2596,6 +2597,12 @@ function loadBuildTable(table, options) {
|
||||
title: '{% trans "Description" %}',
|
||||
switchable: true,
|
||||
},
|
||||
{
|
||||
field: 'priority',
|
||||
title: '{% trans "Priority" %}',
|
||||
switchable: true,
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
field: 'part',
|
||||
title: '{% trans "Part" %}',
|
||||
|
Reference in New Issue
Block a user