2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Added purchase price range and average to BOM items/view

This commit is contained in:
eeintech
2021-05-13 15:47:42 -04:00
parent a1fa3315b1
commit f2e9f58f1b
3 changed files with 46 additions and 1 deletions

View File

@ -243,6 +243,35 @@ function loadBomTable(table, options) {
}
});
cols.push(
{
field: 'purchase_price_range',
title: '{% trans "Purchase Price Range" %}',
searchable: false,
sortable: true,
formatter: function(value, row, index, field) {
var purchase_price_range = 0;
if (row.purchase_price_min > 0) {
if (row.purchase_price_min >= row.purchase_price_max) {
purchase_price_range = row.purchase_price_min;
} else {
purchase_price_range = row.purchase_price_min + " - " + row.purchase_price_max;
}
}
return purchase_price_range;
},
});
cols.push(
{
field: 'purchase_price_avg',
title: '{% trans "Purchase Price Average" %}',
searchable: false,
sortable: true,
});
/*
// TODO - Re-introduce the pricing column at a later stage,