{% extends "templates/web.html" %} {% from "erpnext/templates/includes/order/order_macros.html" import item_name_and_description %} {% block breadcrumbs %} {% include "templates/includes/breadcrumbs.html" %} {% endblock %} {% block title %}{{ doc.name }}{% endblock %} {% block header %}

{{ doc.name }}

{% endblock %} {% block page_content %}
{{ doc.indicator_title or doc.status or "Submitted" }}
{{ frappe.utils.formatdate(doc.transaction_date, 'medium') }}
{% if doc._header %} {{ doc._header }} {% endif %}
{{ _("Item") }}
{{ _("Quantity") }}
{{ _("Amount") }}
{% for d in doc.items %}
{{ item_name_and_description(d) }}
{{ d.qty }} {% if d.delivered_qty is defined and d.delivered_qty != None %}

{{ _("Delivered: {0}").format(d.delivered_qty) }}

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

{{ _("@ {0}").format(d.get_formatted("rate")) }}

{% endfor %}
{% include "erpnext/templates/includes/order/order_taxes.html" %}
{% if enabled_checkout %} {% if (doc.doctype=="Sales Order" and doc.per_billed <= 0) or (doc.doctype=="Sales Invoice" and doc.outstanding_amount > 0) %} {% endif %} {% endif %}
{% endblock %}