2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Refactor part pricing page

This commit is contained in:
Oliver
2021-07-15 23:06:37 +10:00
parent 0fc558068f
commit c61fc7c1df
9 changed files with 366 additions and 435 deletions

View File

@ -921,7 +921,7 @@ function loadBuildTable(table, options) {
}
else
{
return '{% trans "No user information" %}';
return `<i>{% trans "No user information" %}</i>`;
}
}
},

View File

@ -714,7 +714,7 @@ function loadPartTable(table, url, options={}) {
var html = '';
html = `<div class='row'>`;
html = `<div class='row full-height'>`;
data.forEach(function(row, index) {

View File

@ -1495,7 +1495,7 @@ function loadStockTrackingTable(table, options) {
}
else
{
return '{% trans "No user information" %}';
return `<i>{% trans "No user information" %}</i>`;
}
}
});