diff --git a/InvenTree/InvenTree/static/script/inventree/build.js b/InvenTree/InvenTree/static/script/inventree/build.js index c559f773d8..e61fa397a6 100644 --- a/InvenTree/InvenTree/static/script/inventree/build.js +++ b/InvenTree/InvenTree/static/script/inventree/build.js @@ -62,6 +62,11 @@ function loadBuildTable(table, options) { title: 'Created', sortable: true, }, + { + field: 'completion_date', + title: 'Completed', + sortable: true, + }, ], }); } diff --git a/InvenTree/company/templates/company/detail_part.html b/InvenTree/company/templates/company/detail_part.html index 83c565943c..d5be2cb94d 100644 --- a/InvenTree/company/templates/company/detail_part.html +++ b/InvenTree/company/templates/company/detail_part.html @@ -64,7 +64,7 @@ field: 'part_detail.full_name', title: '{% trans "Part" %}', formatter: function(value, row, index, field) { - return imageHoverIcon(row.part_detail.image_url) + renderLink(value, '/part/' + row.part + '/suppliers/'); + return imageHoverIcon(row.part_detail.thumbnail) + renderLink(value, '/part/' + row.part + '/suppliers/'); } }, {