2
0
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:
Matthias Mair
2023-01-24 23:37:05 +01:00
committed by GitHub
parent 61e5244789
commit 428e939b1d
8 changed files with 54 additions and 1 deletions

View File

@ -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" %}',