Add optional "description" column to SalesOrderLineItem table (#5419)

- Provides more visibility for part information
This commit is contained in:
Oliver 2023-08-10 13:00:55 +10:00 committed by GitHub
parent ebbc27047b
commit a1d2782137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',