-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert: "refactor!: drop e-invoicing integration from erpnext (#26940)"
- Loading branch information
1 parent
56edbe7
commit 8099d0a
Showing
42 changed files
with
2,573 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
162 changes: 162 additions & 0 deletions
162
erpnext/accounts/print_format/gst_e_invoice/gst_e_invoice.html
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
{%- from "templates/print_formats/standard_macros.html" import add_header, render_field, print_value -%} | ||
{%- set einvoice = json.loads(doc.signed_einvoice) -%} | ||
|
||
<div class="page-break"> | ||
<div {% if print_settings.repeat_header_footer %} id="header-html" class="hidden-pdf" {% endif %}> | ||
{% if letter_head and not no_letterhead %} | ||
<div class="letter-head">{{ letter_head }}</div> | ||
{% endif %} | ||
<div class="print-heading"> | ||
<h2>E Invoice<br><small>{{ doc.name }}</small></h2> | ||
</div> | ||
</div> | ||
{% if print_settings.repeat_header_footer %} | ||
<div id="footer-html" class="visible-pdf"> | ||
{% if not no_letterhead and footer %} | ||
<div class="letter-head-footer"> | ||
{{ footer }} | ||
</div> | ||
{% endif %} | ||
<p class="text-center small page-number visible-pdf"> | ||
{{ _("Page {0} of {1}").format('<span class="page"></span>', '<span class="topage"></span>') }} | ||
</p> | ||
</div> | ||
{% endif %} | ||
<h5 class="font-bold" style="margin-top: 0px;">1. Transaction Details</h5> | ||
<div class="row section-break" style="border-bottom: 1px solid #d1d8dd; padding-bottom: 10px;"> | ||
<div class="col-xs-8 column-break"> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>IRN</label></div> | ||
<div class="col-xs-8 value">{{ einvoice.Irn }}</div> | ||
</div> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>Ack. No</label></div> | ||
<div class="col-xs-8 value">{{ einvoice.AckNo }}</div> | ||
</div> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>Ack. Date</label></div> | ||
<div class="col-xs-8 value">{{ frappe.utils.format_datetime(einvoice.AckDt, "dd/MM/yyyy hh:mm:ss") }}</div> | ||
</div> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>Category</label></div> | ||
<div class="col-xs-8 value">{{ einvoice.TranDtls.SupTyp }}</div> | ||
</div> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>Document Type</label></div> | ||
<div class="col-xs-8 value">{{ einvoice.DocDtls.Typ }}</div> | ||
</div> | ||
<div class="row data-field"> | ||
<div class="col-xs-4"><label>Document No</label></div> | ||
<div class="col-xs-8 value">{{ einvoice.DocDtls.No }}</div> | ||
</div> | ||
</div> | ||
<div class="col-xs-4 column-break"> | ||
<img src="{{ doc.qrcode_image }}" width="175px" style="float: right;"> | ||
</div> | ||
</div> | ||
<h5 class="font-bold" style="margin-top: 15px; margin-bottom: 10px;">2. Party Details</h5> | ||
<div class="row section-break" style="border-bottom: 1px solid #d1d8dd; padding-bottom: 10px;"> | ||
{%- set seller = einvoice.SellerDtls -%} | ||
<div class="col-xs-6 column-break"> | ||
<h5 style="margin-bottom: 5px;">Seller</h5> | ||
<p>{{ seller.Gstin }}</p> | ||
<p>{{ seller.LglNm }}</p> | ||
<p>{{ seller.Addr1 }}</p> | ||
{%- if seller.Addr2 -%} <p>{{ seller.Addr2 }}</p> {% endif %} | ||
<p>{{ seller.Loc }}</p> | ||
<p>{{ frappe.db.get_value("Address", doc.company_address, "gst_state") }} - {{ seller.Pin }}</p> | ||
|
||
{%- if einvoice.ShipDtls -%} | ||
{%- set shipping = einvoice.ShipDtls -%} | ||
<h5 style="margin-bottom: 5px;">Shipping</h5> | ||
<p>{{ shipping.Gstin }}</p> | ||
<p>{{ shipping.LglNm }}</p> | ||
<p>{{ shipping.Addr1 }}</p> | ||
{%- if shipping.Addr2 -%} <p>{{ shipping.Addr2 }}</p> {% endif %} | ||
<p>{{ shipping.Loc }}</p> | ||
<p>{{ frappe.db.get_value("Address", doc.shipping_address_name, "gst_state") }} - {{ shipping.Pin }}</p> | ||
{% endif %} | ||
</div> | ||
{%- set buyer = einvoice.BuyerDtls -%} | ||
<div class="col-xs-6 column-break"> | ||
<h5 style="margin-bottom: 5px;">Buyer</h5> | ||
<p>{{ buyer.Gstin }}</p> | ||
<p>{{ buyer.LglNm }}</p> | ||
<p>{{ buyer.Addr1 }}</p> | ||
{%- if buyer.Addr2 -%} <p>{{ buyer.Addr2 }}</p> {% endif %} | ||
<p>{{ buyer.Loc }}</p> | ||
<p>{{ frappe.db.get_value("Address", doc.customer_address, "gst_state") }} - {{ buyer.Pin }}</p> | ||
</div> | ||
</div> | ||
<div style="overflow-x: auto;"> | ||
<h5 class="font-bold" style="margin-top: 15px; margin-bottom: 10px;">3. Item Details</h5> | ||
<table class="table table-bordered"> | ||
<thead> | ||
<tr> | ||
<th class="text-left" style="width: 3%;">Sr. No.</th> | ||
<th class="text-left">Item</th> | ||
<th class="text-left" style="width: 10%;">HSN Code</th> | ||
<th class="text-left" style="width: 5%;">Qty</th> | ||
<th class="text-left" style="width: 5%;">UOM</th> | ||
<th class="text-left">Rate</th> | ||
<th class="text-left" style="width: 5%;">Discount</th> | ||
<th class="text-left">Taxable Amount</th> | ||
<th class="text-left" style="width: 7%;">Tax Rate</th> | ||
<th class="text-left" style="width: 5%;">Other Charges</th> | ||
<th class="text-left">Total</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for item in einvoice.ItemList %} | ||
<tr> | ||
<td class="text-left" style="width: 3%;">{{ item.SlNo }}</td> | ||
<td class="text-left">{{ item.PrdDesc }}</td> | ||
<td class="text-left" style="width: 10%;">{{ item.HsnCd }}</td> | ||
<td class="text-right" style="width: 5%;">{{ item.Qty }}</td> | ||
<td class="text-left" style="width: 5%;">{{ item.Unit }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(item.UnitPrice, None, "INR") }}</td> | ||
<td class="text-right" style="width: 5%;">{{ frappe.utils.fmt_money(item.Discount, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(item.AssAmt, None, "INR") }}</td> | ||
<td class="text-right" style="width: 7%;">{{ item.GstRt + item.CesRt }} %</td> | ||
<td class="text-right" style="width: 5%;">{{ frappe.utils.fmt_money(0, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(item.TotItemVal, None, "INR") }}</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> | ||
<div style="overflow-x: auto;"> | ||
<h5 class="font-bold" style="margin-bottom: 0px;">4. Value Details</h5> | ||
<table class="table table-bordered"> | ||
<thead> | ||
<tr> | ||
<th class="text-left">Taxable Amount</th> | ||
<th class="text-left">CGST</th> | ||
<th class="text-left"">SGST</th> | ||
<th class="text-left">IGST</th> | ||
<th class="text-left">CESS</th> | ||
<th class="text-left" style="width: 10%;">State CESS</th> | ||
<th class="text-left">Discount</th> | ||
<th class="text-left" style="width: 10%;">Other Charges</th> | ||
<th class="text-left" style="width: 10%;">Round Off</th> | ||
<th class="text-left">Total Value</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{%- set value_details = einvoice.ValDtls -%} | ||
<tr> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.AssVal, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.CgstVal, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.SgstVal, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.IgstVal, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.CesVal, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(0, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.Discount, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.OthChrg, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.RndOffAmt, None, "INR") }}</td> | ||
<td class="text-right">{{ frappe.utils.fmt_money(value_details.TotInvVal, None, "INR") }}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> |
Oops, something went wrong.