fix: removed price per product from deal document

This commit is contained in:
2024-10-29 01:51:49 +04:00
parent fa33313068
commit 750913d3a6

View File

@@ -85,7 +85,6 @@
<thead> <thead>
<tr> <tr>
<th>Наименование услуги</th> <th>Наименование услуги</th>
<th>Цена</th>
<th>Сумма</th> <th>Сумма</th>
</tr> </tr>
<tfoot> <tfoot>
@@ -95,7 +94,6 @@
{% for service in common_deal_product.services %} {% for service in common_deal_product.services %}
<tr> <tr>
<td>{{ service.service.name }}</td> <td>{{ service.service.name }}</td>
<td>{{ format_number(service.price) }} Р</td>
<td>{{ format_number(service.price * product_data.quantity) }} Р</td> <td>{{ format_number(service.price * product_data.quantity) }} Р</td>
</tr> </tr>
{% endfor %} {% endfor %}