2016-03-23 06:42:38 +00:00
|
|
|
{% extends "templates/web.html" %}
|
2016-04-22 13:23:21 +00:00
|
|
|
{% from "erpnext/templates/includes/order/order_macros.html" import item_name_and_description %}
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2016-01-06 09:51:21 +00:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-06-23 12:55:50 +00:00
|
|
|
{% block title %}{{ doc.name }}{% endblock %}
|
|
|
|
|
2017-08-10 15:36:09 +00:00
|
|
|
{% block header %}
|
|
|
|
<h1>{{ doc.name }}</h1>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header_actions %}
|
|
|
|
<a class='btn btn-xs btn-default' href='/printview?doctype={{ doc.doctype}}&name={{ doc.name }}&format={{ print_format }}' target="_blank" rel="noopener noreferrer">{{ _("Print") }}</a>
|
|
|
|
{% endblock %}
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2016-01-01 11:53:12 +00:00
|
|
|
{% block page_content %}
|
2015-09-11 13:19:59 +00:00
|
|
|
|
2016-04-22 13:23:21 +00:00
|
|
|
<div class="row transaction-subheading">
|
2018-07-06 07:06:57 +00:00
|
|
|
<div class="col-xs-6">
|
2018-10-02 07:16:26 +00:00
|
|
|
|
2018-07-06 07:06:57 +00:00
|
|
|
<span class="indicator {{ doc.indicator_color or ("blue" if doc.docstatus==1 else "darkgrey") }}">
|
2018-10-02 07:16:26 +00:00
|
|
|
{{ _(doc.get('indicator_title')) or _(doc.status) or _("Submitted") }}
|
2018-07-06 07:06:57 +00:00
|
|
|
</span>
|
2016-01-04 12:07:54 +00:00
|
|
|
</div>
|
2018-07-06 07:06:57 +00:00
|
|
|
<div class="col-xs-6 text-muted text-right small">
|
|
|
|
{{ frappe.utils.formatdate(doc.transaction_date, 'medium') }}
|
2017-08-10 15:36:09 +00:00
|
|
|
{% if doc.valid_till %}
|
|
|
|
<p>
|
2018-07-06 07:06:57 +00:00
|
|
|
{{ _("Valid Till") }}: {{ frappe.utils.formatdate(doc.valid_till, 'medium') }}
|
2017-08-10 15:36:09 +00:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
2018-07-06 07:06:57 +00:00
|
|
|
</div>
|
2015-09-11 13:19:59 +00:00
|
|
|
</div>
|
|
|
|
|
2017-08-10 15:36:09 +00:00
|
|
|
<p class='small' style='padding-top: 15px;'>
|
|
|
|
{% if doc.doctype == 'Supplier Quotation' %}
|
2018-07-06 07:06:57 +00:00
|
|
|
<b>{{ doc.supplier_name}}</b>
|
2017-08-10 15:36:09 +00:00
|
|
|
{% else %}
|
2018-07-06 07:06:57 +00:00
|
|
|
<b>{{ doc.customer_name}}</b>
|
2017-08-10 15:36:09 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if doc.contact_display %}
|
|
|
|
<br>
|
|
|
|
{{ doc.contact_display }}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
2015-09-11 13:19:59 +00:00
|
|
|
{% if doc._header %}
|
|
|
|
{{ doc._header }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="order-container">
|
|
|
|
|
2018-07-06 07:06:57 +00:00
|
|
|
<!-- items -->
|
|
|
|
<div class="order-item-table">
|
|
|
|
<div class="row order-items order-item-header text-muted">
|
|
|
|
<div class="col-sm-6 col-xs-6 h6 text-uppercase">
|
|
|
|
{{ _("Item") }}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-3 col-xs-3 text-right h6 text-uppercase">
|
|
|
|
{{ _("Quantity") }}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-3 col-xs-3 text-right h6 text-uppercase">
|
|
|
|
{{ _("Amount") }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% for d in doc.items %}
|
|
|
|
<div class="row order-items">
|
|
|
|
<div class="col-sm-6 col-xs-6">
|
|
|
|
{{ item_name_and_description(d) }}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-3 col-xs-3 text-right">
|
|
|
|
{{ d.qty }}
|
|
|
|
{% if d.delivered_qty is defined and d.delivered_qty != None %}
|
2019-01-23 11:04:22 +00:00
|
|
|
<p class="text-muted small">{{ _("Delivered") }} {{ d.delivered_qty }}</p>
|
2018-07-06 07:06:57 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-3 col-xs-3 text-right">
|
|
|
|
{{ d.get_formatted("amount") }}
|
2019-01-23 11:04:22 +00:00
|
|
|
<p class="text-muted small">{{ _("Rate:") }} {{ d.get_formatted("rate") }}</p>
|
2018-07-06 07:06:57 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- taxes -->
|
|
|
|
<div class="order-taxes row">
|
|
|
|
<div class="col-sm-6"><!-- empty --></div>
|
|
|
|
<div class="col-sm-6 text-right">
|
|
|
|
{% include "erpnext/templates/includes/order/order_taxes.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-11 13:19:59 +00:00
|
|
|
</div>
|
|
|
|
|
2018-07-06 07:06:57 +00:00
|
|
|
{% if enabled_checkout and ((doc.doctype=="Sales Order" and doc.per_billed <= 0)
|
|
|
|
or (doc.doctype=="Sales Invoice" and doc.outstanding_amount > 0)) %}
|
|
|
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-column col-sm-6 address-title">
|
|
|
|
<strong>Payment</strong>
|
2016-01-04 12:07:54 +00:00
|
|
|
</div>
|
2018-07-06 07:06:57 +00:00
|
|
|
</div>
|
2016-01-04 12:07:54 +00:00
|
|
|
</div>
|
2018-07-06 07:06:57 +00:00
|
|
|
<div class="panel-collapse">
|
|
|
|
<div class="panel-body text-muted small">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-column col-sm-6">
|
|
|
|
{% if available_loyalty_points %}
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="h6">Enter Loyalty Points</div>
|
|
|
|
<div class="control-input-wrapper">
|
|
|
|
<div class="control-input">
|
|
|
|
<input class="form-control" type="number" min="0" max="{{ available_loyalty_points }}" id="loyalty-point-to-redeem">
|
|
|
|
</div>
|
|
|
|
<p class="help-box small text-muted hidden-xs"> Available Points: {{ available_loyalty_points }} </p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-column col-sm-6">
|
|
|
|
<div id="loyalty-points-status" style="text-align: right"></div>
|
|
|
|
<div class="page-header-actions-block" data-html-block="header-actions">
|
|
|
|
<p>
|
|
|
|
<a href="/api/method/erpnext.accounts.doctype.payment_request.payment_request.make_payment_request?dn={{ doc.name }}&dt={{ doc.doctype }}&submit_doc=1&order_type=Shopping Cart"
|
|
|
|
class="btn btn-primary btn-sm" id="pay-for-order">{{ _("Pay") }} {{ doc.get_formatted("grand_total") }} </a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-08-10 15:36:09 +00:00
|
|
|
|
2017-05-19 10:34:10 +00:00
|
|
|
{% if attachments %}
|
|
|
|
<div class="order-item-table">
|
|
|
|
<div class="row order-items order-item-header text-muted">
|
|
|
|
<div class="col-sm-12 h6 text-uppercase">
|
|
|
|
{{ _("Attachments") }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row order-items">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
{% for attachment in attachments %}
|
|
|
|
<p class="small">
|
|
|
|
<a href="{{ attachment.file_url }}" target="blank"> {{ attachment.file_name }} </a>
|
|
|
|
</p>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2015-12-31 07:56:36 +00:00
|
|
|
</div>
|
2017-08-10 15:36:09 +00:00
|
|
|
{% if doc.terms %}
|
|
|
|
<div class="terms-and-condition text-muted small">
|
2018-07-06 07:06:57 +00:00
|
|
|
<hr><p>{{ doc.terms }}</p>
|
2017-08-10 15:36:09 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2015-09-11 13:19:59 +00:00
|
|
|
{% endblock %}
|
2018-07-06 07:06:57 +00:00
|
|
|
|
|
|
|
{% block script %}
|
|
|
|
<script> {% include "templates/pages/order.js" %} </script>
|
|
|
|
<script>
|
|
|
|
window.doc_info = {
|
|
|
|
customer: '{{doc.customer}}',
|
|
|
|
doctype: '{{ doc.doctype }}',
|
|
|
|
doctype_name: '{{ doc.name }}',
|
|
|
|
grand_total: '{{ doc.grand_total }}',
|
|
|
|
currency: '{{ doc.currency }}'
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|