2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +00:00

CUI: Fix for part pricing panel (#8338)

This commit is contained in:
Oliver 2024-10-23 11:00:02 +11:00 committed by GitHub
parent 8d27144f78
commit bcc991198e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -811,12 +811,10 @@ function loadPurchasePriceHistoryTable(options={}) {
}
var html = '';
var supplier = row.supplier_part_detail.supplier_detail;
html += imageHoverIcon(supplier.thumbnail || supplier.image);
html += renderLink(order.reference, `/order/purchase-order/${order.pk}/`);
html += ' - ';
html += renderLink(supplier.name, `/company/${supplier.pk}/`);
html += renderLink(order.supplier_name, `/company/${order.supplier}/`);
return html;
}