mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
chore: remove old md files
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
<h3>{{_("Fiscal Year")}}</h3>
|
|
||||||
|
|
||||||
<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<b>Material Request Type</b>: {{ doc.material_request_type }}<br>
|
|
||||||
<b>Company</b>: {{ doc.company }}
|
|
||||||
|
|
||||||
<h3>Order Summary</h3>
|
|
||||||
|
|
||||||
<table border=2 >
|
|
||||||
<tr align="center">
|
|
||||||
<th>Item Name</th>
|
|
||||||
<th>Received Quantity</th>
|
|
||||||
</tr>
|
|
||||||
{% for item in doc.items %}
|
|
||||||
{% if frappe.utils.flt(item.received_qty, 2) > 0.0 %}
|
|
||||||
<tr align="center">
|
|
||||||
<td>{{ item.item_code }}</td>
|
|
||||||
<td>{{ frappe.utils.flt(item.received_qty, 2) }}</td>
|
|
||||||
</tr>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
</table>
|
|
||||||
Reference in New Issue
Block a user