Add "last updated" date to stock table
This commit is contained in:
parent
8f4ae14f2d
commit
ef3ac43c4a
|
|
@ -213,6 +213,7 @@ class StockItemSerializer(InvenTreeModelSerializer):
|
|||
'supplier_part_detail',
|
||||
'tracking_items',
|
||||
'uid',
|
||||
'updated',
|
||||
]
|
||||
|
||||
""" These fields are read-only in this context.
|
||||
|
|
|
|||
|
|
@ -613,6 +613,11 @@ function loadStockTable(table, options) {
|
|||
sortable: true,
|
||||
},
|
||||
{% endif %}
|
||||
{
|
||||
field: 'updated',
|
||||
title: '{% trans "Last Updated" %}',
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
field: 'notes',
|
||||
title: '{% trans "Notes" %}',
|
||||
|
|
|
|||
Loading…
Reference in New Issue