diff --git a/InvenTree/order/templates/order/purchase_order_detail.html b/InvenTree/order/templates/order/purchase_order_detail.html index 8e301acf39..ace9ae77c3 100644 --- a/InvenTree/order/templates/order/purchase_order_detail.html +++ b/InvenTree/order/templates/order/purchase_order_detail.html @@ -222,6 +222,10 @@ $("#new-po-extra-line").click(function() { order: {{ order.pk }}, }); + {% if order.supplier.currency %} + fields.price_currency.value = '{{ order.supplier.currency }}'; + {% endif %} + constructForm('{% url "api-po-extra-line-list" %}', { fields: fields, method: 'POST',