mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Special display case for base currecny
This commit is contained in:
parent
f24496c5a2
commit
32f606627d
@ -60,6 +60,13 @@
|
||||
field: 'value',
|
||||
title: 'Value',
|
||||
sortable: true,
|
||||
formatter: function(value, row, index, field) {
|
||||
if (row.base) {
|
||||
return "Base Currency";
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
formatter: function(value, row, index, field) {
|
||||
|
Loading…
Reference in New Issue
Block a user