diff --git a/InvenTree/templates/js/translated/bom.js b/InvenTree/templates/js/translated/bom.js index 48255e80a2..a4a2007360 100644 --- a/InvenTree/templates/js/translated/bom.js +++ b/InvenTree/templates/js/translated/bom.js @@ -982,6 +982,15 @@ function loadUsedInTable(table, part_id, options={}) { { field: 'quantity', title: '{% trans "Required Quantity" %}', + formatter: function(value, row) { + var html = value; + + if (row.parent != 'top-level-item') { + html += ` ({% trans "Inherited from parent BOM" %})`; + } + + return html; + } } ] });