From 551064b3a4deefb3ccaf57c58828af2afc6974fc Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 29 Oct 2020 00:07:51 +1100 Subject: [PATCH] Bugfix: BOM API now works slightly differently --- InvenTree/templates/js/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/templates/js/build.js b/InvenTree/templates/js/build.js index 59678ce11c..ee7e579cce 100644 --- a/InvenTree/templates/js/build.js +++ b/InvenTree/templates/js/build.js @@ -300,7 +300,7 @@ function loadBuildOutputAllocationTable(buildInfo, output, options={}) { queryParams: { part: partId, sub_part_detail: true, - trackable: outputId != null, + sub_part_trackable: outputId != null, }, formatNoMatches: function() { return '{% trans "No BOM items found" %}';