Created
October 1, 2015 11:49
-
-
Save sbkolate/f7bd4878c34d4f1c26f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- if doc.meta.is_submittable and doc.docstatus==0-%} | |
<div class="alert alert-info text-center"> | |
<h4 style="margin: 0px;">{{ _("DRAFT") }}</h4></div> | |
{%- endif -%} | |
<style> | |
.print-format table, .print-format tr, | |
.print-format td, .print-format div, .print-format p { | |
font-family: Monospace; | |
line-height: 200%; | |
vertical-align: middle; | |
} | |
@media screen { | |
.print-format { | |
width: 4in; | |
padding: 0.25in; | |
min-height: 8in; | |
} | |
} | |
</style> | |
<p class="text-center"> | |
{{ doc.company }}<br> | |
{{ doc.select_print_heading or _("Invoice") }}<br> | |
</p> | |
<p> | |
<b>{{ _("Receipt No") }}:</b> {{ doc.name }}<br> | |
<b>{{ _("Date") }}:</b> {{ doc.get_formatted("posting_date") }}<br> | |
<b>{{ _("Customer") }}:</b> {{ doc.customer_name }} | |
</p> | |
<hr> | |
<table class="table table-condensed cart no-border"> | |
<thead> | |
<tr> | |
<th width="50%">{{ _("Item") }}</b></th> | |
<th width="25%" class="text-right">{{ _("Qty") }}</th> | |
<th width="25%" class="text-right">{{ _("Amount") }}</th> | |
</tr> | |
</thead> | |
<tbody> | |
{%- for item in doc.items -%} | |
<tr> | |
<td> | |
{{ item.item_code }} | |
{%- if item.item_name != item.item_code -%} | |
<br>{{ item.item_name }}{%- endif -%} | |
</td> | |
<td class="text-right">{{ item.qty }}<br>@ {{ item.get_formatted("rate") }}</td> | |
<td class="text-right">{{ item.get_formatted("amount") }}</td> | |
</tr> | |
{%- endfor -%} | |
</tbody> | |
</table> | |
<table class="table table-condensed no-border"> | |
<tbody> | |
<tr> | |
<td class="text-right" style="width: 70%"> | |
{{ _("Net Total") }} | |
</td> | |
<td class="text-right"> | |
{{ doc.get_formatted("net_total") }} | |
</td> | |
</tr> | |
{%- for row in doc.taxes -%} | |
{%- if not row.included_in_print_rate -%} | |
<tr> | |
<td class="text-right" style="width: 70%"> | |
{{ row.description }} | |
</td> | |
<td class="text-right"> | |
{{ row.get_formatted("tax_amount", doc) }} | |
</td> | |
</tr> | |
{%- endif -%} | |
{%- endfor -%} | |
{%- if doc.discount_amount -%} | |
<tr> | |
<td class="text-right" style="width: 75%"> | |
{{ _("Discount") }} | |
</td> | |
<td class="text-right"> | |
{{ doc.get_formatted("discount_amount") }} | |
</td> | |
</tr> | |
{%- endif -%} | |
<tr> | |
<td class="text-right" style="width: 75%"> | |
<b>{{ _("Grand Total") }}</b> | |
</td> | |
<td class="text-right"> | |
{{ doc.get_formatted("grand_total") }} | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
{% if doc.get("taxes", filters={"included_in_print_rate": 1}) %} | |
<hr> | |
<p><b>Taxes Included:</b></p> | |
<table class="table table-condensed no-border"> | |
<tbody> | |
{%- for row in doc.taxes -%} | |
{%- if row.included_in_print_rate -%} | |
<tr> | |
<td class="text-right" style="width: 70%"> | |
{{ row.description }} | |
</td> | |
<td class="text-right"> | |
{{ row.get_formatted("tax_amount_after_discount_amount", doc) }} | |
</td> | |
<tr> | |
{%- endif -%} | |
{%- endfor -%} | |
</tbody> | |
</table> | |
{%- endif -%} | |
<hr> | |
<p>{{ doc.terms or "" }}</p> | |
<p class="text-center">{{ _("Thank you, please visit again.") }}</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment