Add optional "description" column to SalesOrderLineItem table (#5419)
- Provides more visibility for part information
This commit is contained in:
parent
ebbc27047b
commit
a1d2782137
|
|
@ -1803,6 +1803,12 @@ function loadSalesOrderLineItemTable(table, options={}) {
|
|||
return '{% trans "Total" %}';
|
||||
},
|
||||
},
|
||||
{
|
||||
sortable: false,
|
||||
field: 'part_detail.description',
|
||||
title: '{% trans "Description" %}',
|
||||
switchable: true,
|
||||
},
|
||||
{
|
||||
sortable: true,
|
||||
field: 'reference',
|
||||
|
|
|
|||
Loading…
Reference in New Issue