mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
Add "description" field to extra line items (#4815)
This commit is contained in:
@ -31,6 +31,7 @@ function extraLineFields(options={}) {
|
||||
},
|
||||
quantity: {},
|
||||
reference: {},
|
||||
description: {},
|
||||
price: {
|
||||
icon: 'fa-dollar-sign',
|
||||
},
|
||||
@ -272,6 +273,12 @@ function loadExtraLineTable(options={}) {
|
||||
title: '{% trans "Reference" %}',
|
||||
switchable: false,
|
||||
},
|
||||
{
|
||||
sortable: false,
|
||||
switchable: true,
|
||||
field: 'description',
|
||||
title: '{% trans "Description" %}',
|
||||
},
|
||||
{
|
||||
sortable: true,
|
||||
switchable: false,
|
||||
|
Reference in New Issue
Block a user