mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix part name display
This commit is contained in:
parent
9e745d3e5f
commit
fa7555e34b
@ -64,7 +64,7 @@ function updateStock(items, options={}) {
|
||||
|
||||
html += '<tr>';
|
||||
|
||||
html += '<td>' + item.part.name + '</td>';
|
||||
html += '<td>' + item.part.full_name + '</td>';
|
||||
|
||||
if (item.location) {
|
||||
html += '<td>' + item.location.name + '</td>';
|
||||
@ -289,7 +289,7 @@ function moveStockItems(items, options) {
|
||||
|
||||
html += "<tr>";
|
||||
|
||||
html += "<td>" + item.part.name + "</td>";
|
||||
html += "<td>" + item.part.full_name + "</td>";
|
||||
html += "<td>" + item.location.pathstring + "</td>";
|
||||
html += "<td>" + item.quantity + "</td>";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user