fix: translatable strings
Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
This commit is contained in:
parent
083da7d8a4
commit
c61925598a
@ -1,3 +1,3 @@
|
||||
<h3>{{_("Fiscal Year")}}</h3>
|
||||
<h3>{{ _("Fiscal Year") }}</h3>
|
||||
|
||||
<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>
|
||||
|
@ -1,12 +1,12 @@
|
||||
<p><b>Material Request Type</b>: {{ doc.material_request_type }}<br>
|
||||
<b>Company</b>: {{ doc.company }}</p>
|
||||
<p><b>{{ _("Material Request Type") }}</b>: {{ doc.material_request_type }}<br>
|
||||
<b>{{ _("Company") }}</b>: {{ doc.company }}</p>
|
||||
|
||||
<h3>Order Summary</h3>
|
||||
<h3>{{ _("Order Summary") }}</h3>
|
||||
|
||||
<table border=2 >
|
||||
<tr align="center">
|
||||
<th>Item Name</th>
|
||||
<th>Received Quantity</th>
|
||||
<th>{{ _("Item Name") }}</th>
|
||||
<th>{{ _("Received Quantity") }}</th>
|
||||
</tr>
|
||||
{% for item in doc.items %}
|
||||
{% if frappe.utils.flt(item.received_qty, 2) > 0.0 %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user