diff --git a/InvenTree/order/templates/order/order_base.html b/InvenTree/order/templates/order/order_base.html
index 69e972da6c..6a50497a94 100644
--- a/InvenTree/order/templates/order/order_base.html
+++ b/InvenTree/order/templates/order/order_base.html
@@ -224,7 +224,7 @@ $("#cancel-order").click(function() {
});
$("#export-order").click(function() {
- location.href = "{% url 'po-export' order.id %}";
+ location.href = '{% url "po-export" order.id %}';
});
diff --git a/InvenTree/order/templates/order/sales_order_base.html b/InvenTree/order/templates/order/sales_order_base.html
index 6f8c422f7a..63f3b037ed 100644
--- a/InvenTree/order/templates/order/sales_order_base.html
+++ b/InvenTree/order/templates/order/sales_order_base.html
@@ -50,6 +50,9 @@ src="{% static 'img/blank_image.png' %}"
+
{% if roles.sales_order.change %}
{% endif %}
{% endif %}
+
{% endblock %}
@@ -196,4 +201,8 @@ $('#print-order-report').click(function() {
printSalesOrderReports([{{ order.pk }}]);
});
+$('#export-order').click(function() {
+ location.href = '{% url "so-export" order.id %}';
+});
+
{% endblock %}
\ No newline at end of file