diff --git a/erpnext/templates/pages/order.html b/erpnext/templates/pages/order.html index af7af11677..07dd676e77 100644 --- a/erpnext/templates/pages/order.html +++ b/erpnext/templates/pages/order.html @@ -8,7 +8,7 @@ {% block title %}{{ doc.name }}{% endblock %} {% block header %} -

{{ doc.name }}

+

{{ doc.name }}

{% endblock %} {% block header_actions %} @@ -33,7 +33,7 @@
- + {% if doc.doctype == "Quotation" and not doc.docstatus %} {{ _("Pending") }} {% else %} @@ -41,7 +41,7 @@ {% endif %}
-
+
{{ frappe.utils.format_date(doc.transaction_date, 'medium') }} {% if doc.valid_till %}

@@ -66,38 +66,39 @@ {% endif %}

- -
-
-
+ + + + + + + {% for d in doc.items %} -
-
+
+ + + + {% endfor %} - + +
{{ _("Item") }} - -
+
{{ _("Quantity") }} - -
+
{{ _("Amount") }} - - +
{{ item_name_and_description(d) }} - -
+
{{ d.qty }} {% if d.delivered_qty is defined and d.delivered_qty != None %}

{{ _("Delivered") }} {{ d.delivered_qty }}

{% endif %} - -
+
{{ d.get_formatted("amount") }}

{{ _("Rate:") }} {{ d.get_formatted("rate") }}

- - +