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