diff --git a/InvenTree/build/templates/build/build_output.html b/InvenTree/build/templates/build/build_output.html index d3863a2e04..00d7c5d5d2 100644 --- a/InvenTree/build/templates/build/build_output.html +++ b/InvenTree/build/templates/build/build_output.html @@ -72,7 +72,6 @@ loadStockTable($("#stock-table"), { params: { location_detail: true, part_detail: true, - supplier_part_detail: true, build: {{ build.id }}, }, groupByField: 'location', diff --git a/InvenTree/company/templates/company/assigned_stock.html b/InvenTree/company/templates/company/assigned_stock.html index 50b48b283f..d64719407b 100644 --- a/InvenTree/company/templates/company/assigned_stock.html +++ b/InvenTree/company/templates/company/assigned_stock.html @@ -29,7 +29,6 @@ loadStockTable($("#stock-table"), { params: { customer: {{ company.id }}, part_detail: true, - supplier_part_detail: true, location_detail: true, }, url: "{% url 'api-stock-list' %}", diff --git a/InvenTree/company/templates/company/detail_stock.html b/InvenTree/company/templates/company/detail_stock.html index d61dd05954..f10a99ba5a 100644 --- a/InvenTree/company/templates/company/detail_stock.html +++ b/InvenTree/company/templates/company/detail_stock.html @@ -24,7 +24,6 @@ company: {{ company.id }}, part_detail: true, supplier_detail: true, - supplier_part_detail: true, location_detail: true, }, buttons: [ diff --git a/InvenTree/company/templates/company/supplier_part_stock.html b/InvenTree/company/templates/company/supplier_part_stock.html index 73028f9d91..1187b95bca 100644 --- a/InvenTree/company/templates/company/supplier_part_stock.html +++ b/InvenTree/company/templates/company/supplier_part_stock.html @@ -23,7 +23,6 @@ supplier_part: {{ part.id }}, location_detail: true, part_detail: false, - supplier_part_detail: true, }, groupByField: 'location', buttons: ['#stock-options'], diff --git a/InvenTree/order/templates/order/po_received_items.html b/InvenTree/order/templates/order/po_received_items.html index f551eda977..96dcb4fcf7 100644 --- a/InvenTree/order/templates/order/po_received_items.html +++ b/InvenTree/order/templates/order/po_received_items.html @@ -26,7 +26,6 @@ loadStockTable($("#stock-table"), { purchase_order: {{ order.id }}, part_detail: true, supplier_detail: true, - supplier_part_detail: true, location_detail: true, }, buttons: [ diff --git a/InvenTree/stock/templates/stock/item_childs.html b/InvenTree/stock/templates/stock/item_childs.html index 7c111af06d..f5d80e5ad1 100644 --- a/InvenTree/stock/templates/stock/item_childs.html +++ b/InvenTree/stock/templates/stock/item_childs.html @@ -31,7 +31,6 @@ loadStockTable($("#stock-table"), { params: { location_detail: true, part_detail: false, - supplier_part_detail: true, ancestor: {{ item.id }}, }, name: 'item-childs', diff --git a/InvenTree/stock/templates/stock/location.html b/InvenTree/stock/templates/stock/location.html index 6a69be260e..499aaa6948 100644 --- a/InvenTree/stock/templates/stock/location.html +++ b/InvenTree/stock/templates/stock/location.html @@ -265,7 +265,6 @@ {% endif %} part_detail: true, location_detail: true, - supplier_part_detail: true, }, url: "{% url 'api-stock-list' %}", }); diff --git a/InvenTree/templates/InvenTree/index.html b/InvenTree/templates/InvenTree/index.html index 6a523d152a..a3d793dd26 100644 --- a/InvenTree/templates/InvenTree/index.html +++ b/InvenTree/templates/InvenTree/index.html @@ -134,7 +134,6 @@ addHeaderAction('stock-to-build', '{% trans "Required for Build Orders" %}', 'fa loadStockTable($('#table-recently-updated-stock'), { params: { part_detail: true, - supplier_part_detail: true, ordering: "-updated", max_results: {% settings_value "STOCK_RECENT_COUNT" %}, }, @@ -152,7 +151,6 @@ loadStockTable($("#table-expired-stock"), { expired: true, location_detail: true, part_detail: true, - supplier_part_detail: true, }, }); @@ -162,7 +160,6 @@ loadStockTable($("#table-stale-stock"), { expired: false, location_detail: true, part_detail: true, - supplier_part_detail: true, }, }); {% endif %}