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

Render part information in stock item tracking table (if provided)

This commit is contained in:
Oliver
2022-04-19 13:14:54 +10:00
parent e5eb1f4513
commit 5240c60e0b
3 changed files with 25 additions and 3 deletions

View File

@ -2373,6 +2373,19 @@ function loadStockTrackingTable(table, options) {
return html;
}
// Part information
if (details.part) {
html += `<tr><th>{% trans "Part" %}</th><td>`;
if (details.part_detail) {
html += renderLink(details.part_detail.full_name, `/part/${details.part}/`);
} else {
html += `{% trans "Part information unavailable" %}`;
}
html += `</td></tr>`;
}
// Location information
if (details.location) {