2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +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

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;
}