blob: 5556d26d9678f445784b55d5f5da562700d0beac [file] [log] [blame]
rohitwaghchaurea1064a62016-03-03 14:00:35 +05301{% extends "templates/web.html" %}
2
3{% block header %}
4<h1>{{ doc.name }}</h1>
5{% endblock %}
6
7{% block script %}
8<script>{% include "templates/includes/rfq.js" %}</script>
9{% endblock %}
10
11{% block breadcrumbs %}
12 {% include "templates/includes/breadcrumbs.html" %}
13{% endblock %}
14
15{% block style %}
16<style>
17 {% include "templates/includes/order/order.css" %}
18</style>
19{% endblock %}
20
21{% block header_actions %}
22{% if doc.items %}
23<button class="btn btn-primary btn-sm"
24 type="button">
25 {{ _("Submit") }}</button>
26{% endif %}
27{% endblock %}
28
29{% block page_content %}
30<div class="row">
31 <div class="col-xs-6">
32 <div class="rfq-supplier">{{ doc.supplier }}</div>
33 </div>
34 <div class="col-xs-6 text-muted text-right h6">
35 {{ doc.get_formatted("transaction_date") }}
36 </div>
37</div>
38
39<div class="rfq-content">
40 <div id="order-container">
41 <div id="rfq-items">
42 <div class="row cart-item-header">
43 <div class="col-sm-6 col-xs-6">
44 Items
45 </div>
46 <div class="col-sm-2 col-xs-2 text-right">
47 Qty
48 </div>
49 <div class="col-sm-2 col-xs-2 text-right">
50 Rate
51 </div>
52 <div class="col-sm-2 col-xs-2 text-right">
53 Amount
54 </div>
55 </div>
56 <hr>
57 {% if doc.items %}
58 <div class="rfq-items">
59 {% include "templates/includes/rfq/rfq_items.html" %}
60 </div>
61 {% endif %}
62 </div>
63 {% if doc.items %}
64 <div class="row grand-total-row">
65 <div class="col-xs-10 text-right">{{ _("Grand Total") }}</div>
66 <div class="col-xs-2 text-right">
67 <span class="tax-grand-total">0.0</span>
68 </div>
69 </div>
70 {% endif %}
71 <div class="row terms">
72 <div class="col-xs-5 text-left text-muted">{{ _("Terms and Conditions: ") }}</div>
73 </div>
74 <div class="row terms">
75 <div class="col-xs-5 text-left text-muted">
76 <textarea class="form-control terms-feedback" style="border:1px solid #cccccc; padding:4px"></textarea>
77 </div>
78 </div>
79 </div>
80</div>
81
82<!-- no-sidebar -->
83{% endblock %}