diff --git a/InvenTree/InvenTree/urls.py b/InvenTree/InvenTree/urls.py index 2fcfa941c4..391541861b 100644 --- a/InvenTree/InvenTree/urls.py +++ b/InvenTree/InvenTree/urls.py @@ -80,6 +80,7 @@ dynamic_javascript_urls = [ url(r'^build.js', DynamicJsView.as_view(template_name='js/build.js'), name='build.js'), url(r'^order.js', DynamicJsView.as_view(template_name='js/order.js'), name='order.js'), url(r'^company.js', DynamicJsView.as_view(template_name='js/company.js'), name='company.js'), + url(r'^bom.js', DynamicJsView.as_view(template_name='js/bom.js'), name='bom.js'), ] urlpatterns = [ diff --git a/InvenTree/templates/base.html b/InvenTree/templates/base.html index cba64ac176..fbe8398f27 100644 --- a/InvenTree/templates/base.html +++ b/InvenTree/templates/base.html @@ -105,10 +105,10 @@ InvenTree - + diff --git a/InvenTree/InvenTree/static/script/inventree/bom.js b/InvenTree/templates/js/bom.js similarity index 83% rename from InvenTree/InvenTree/static/script/inventree/bom.js rename to InvenTree/templates/js/bom.js index e4b90a9f26..518df74d61 100644 --- a/InvenTree/InvenTree/static/script/inventree/bom.js +++ b/InvenTree/templates/js/bom.js @@ -1,3 +1,5 @@ +{% load i18n %} + /* BOM management functions. * Requires follwing files to be loaded first: * - api.js @@ -130,7 +132,7 @@ function loadBomTable(table, options) { cols.push( { field: 'sub_part_detail.full_name', - title: 'Part', + title: '{% trans "Part" %}', sortable: true, formatter: function(value, row, index, field) { var url = `/part/${row.sub_part}/`; @@ -138,7 +140,7 @@ function loadBomTable(table, options) { // Display an extra icon if this part is an assembly if (row.sub_part_detail.assembly) { - var text = ``; + var text = ``; html += renderLink(text, `/part/${row.sub_part}/bom/`); } @@ -152,14 +154,14 @@ function loadBomTable(table, options) { cols.push( { field: 'sub_part_detail.description', - title: 'Description', + title: '{% trans "Description" %}', } ); // Part reference cols.push({ field: 'reference', - title: 'Reference', + title: '{% trans "Reference" %}', searchable: true, sortable: true, }); @@ -167,7 +169,7 @@ function loadBomTable(table, options) { // Part quantity cols.push({ field: 'quantity', - title: 'Quantity', + title: '{% trans "Quantity" %}', searchable: false, sortable: true, formatter: function(value, row, index, field) { @@ -189,7 +191,7 @@ function loadBomTable(table, options) { cols.push( { field: 'sub_part_detail.stock', - title: 'Available', + title: '{% trans "Available" %}', searchable: false, sortable: true, formatter: function(value, row, index, field) { @@ -198,7 +200,7 @@ function loadBomTable(table, options) { var text = value; if (value == null || value <= 0) { - text = `No Stock`; + text = `{% trans "No Stock" %}`; } return renderLink(text, url); @@ -208,13 +210,13 @@ function loadBomTable(table, options) { cols.push( { field: 'price_range', - title: 'Price', + title: '{% trans "Price" %}', sortable: true, formatter: function(value, row, index, field) { if (value) { return value; } else { - return "No pricing available"; + return "{% trans "No pricing available" %}"; } } }); @@ -224,7 +226,7 @@ function loadBomTable(table, options) { cols.push( { field: 'note', - title: 'Notes', + title: '{% trans "Notes" %}', searchable: true, sortable: true, } @@ -234,11 +236,11 @@ function loadBomTable(table, options) { cols.push({ formatter: function(value, row, index, field) { - var bValidate = ""; - var bValid = ""; + var bValidate = ""; + var bValid = ""; - var bEdit = ""; - var bDelt = ""; + var bEdit = ""; + var bDelt = ""; var html = "
"; @@ -283,7 +285,7 @@ function loadBomTable(table, options) { return {classes: 'rowinvalid'}; } }, - formatNoMatches: function() { return "No BOM items found"; }, + formatNoMatches: function() { return "{% trans "No BOM items found" %}"; }, clickToSelect: true, queryParams: function(p) { return params;