chore: remove old md files

This commit is contained in:
David Arnold 2024-01-30 10:54:29 +01:00
parent e9dfb45fca
commit 3fd43cd6bb
No known key found for this signature in database
GPG Key ID: AB15A6AF1101390D
2 changed files with 0 additions and 22 deletions

View File

@ -1,3 +0,0 @@
<h3>{{_("Fiscal Year")}}</h3>
<p>{{ _("New fiscal year created :- ") }} {{ doc.name }}</p>

View File

@ -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>