feat: bill of payment for a group of deals

This commit is contained in:
2024-11-10 16:55:06 +04:00
parent 915a1d5f28
commit eff71b3570
2 changed files with 66 additions and 25 deletions

View File

@@ -53,7 +53,7 @@
</tfoot>
</thead>
<tbody>
{% for product in products %}
{% for product in products.values() %}
<tr>
<td>{{ product.article }}</td>
{% if is_size_needed %}
@@ -78,7 +78,7 @@
</tfoot>
</thead>
<tbody>
{% for service in services %}
{% for service in services.values() %}
<tr>
<td>{{ service.name }}</td>
<td>{{ '{:,}'.format(service.quantity) }} шт.</td>