diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js index ca828f70bc..eb5341a537 100644 --- a/InvenTree/templates/js/translated/part.js +++ b/InvenTree/templates/js/translated/part.js @@ -1593,7 +1593,7 @@ function loadPartPurchaseOrderTable(table, part_id, options={}) { data += makeIconBadge( 'fa-info-circle icon-blue', - `{% trans "Pack Quantity" %}: ${formatDecimal(row.pack_quantity)} - {% trans "Total Quantity" %}: ${total}` + `{% trans "Pack Quantity" %}: ${row.pack_quantity} - {% trans "Total Quantity" %}: ${total}` ); } diff --git a/InvenTree/templates/js/translated/purchase_order.js b/InvenTree/templates/js/translated/purchase_order.js index 868ed657cd..4b075c0b37 100644 --- a/InvenTree/templates/js/translated/purchase_order.js +++ b/InvenTree/templates/js/translated/purchase_order.js @@ -1031,7 +1031,7 @@ function receivePurchaseOrderItems(order_id, line_items, options={}) { if (native_pack_quantity != 1) { pack_size_div = `
- {% trans "Pack Quantity" %}: ${formatDecimal(pack_quantity)}
+ {% trans "Pack Quantity" %}: ${pack_quantity}
{% trans "Received Quantity" %}: ${received} ${units}
`; }