fix: removed all prices from deal document
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
			
		||||
{% with common_deal_product=product_data.deal_products[0], common_product=product_data.deal_products[0].product %}
 | 
			
		||||
    <div style="page-break-inside: avoid">
 | 
			
		||||
        <!--#region Product header -->
 | 
			
		||||
        <div style="page-break-inside: avoid; page-break-after: avoid">
 | 
			
		||||
        <div class="product-header-container">
 | 
			
		||||
            <hr/>
 | 
			
		||||
            <div style="display: flex">
 | 
			
		||||
                <div class="img-container">
 | 
			
		||||
@@ -85,7 +85,6 @@
 | 
			
		||||
                <thead>
 | 
			
		||||
                <tr>
 | 
			
		||||
                    <th>Наименование услуги</th>
 | 
			
		||||
                    <th>Сумма</th>
 | 
			
		||||
                </tr>
 | 
			
		||||
                <tfoot>
 | 
			
		||||
                </tfoot>
 | 
			
		||||
@@ -94,15 +93,10 @@
 | 
			
		||||
                {% for service in common_deal_product.services %}
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td>{{ service.service.name }}</td>
 | 
			
		||||
                        <td>{{ format_number(service.price * product_data.quantity) }} Р</td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                {% endfor %}
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
            <div class="medium-text total align-right bold">
 | 
			
		||||
                Итого: {{ product_data.total_one_product * product_data.quantity }} Р, за
 | 
			
		||||
                единицу: {{ product_data.total_one_product }} Р
 | 
			
		||||
            </div>
 | 
			
		||||
        {% else %}
 | 
			
		||||
            <div class="medium-text total align-right bold"></div>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
@@ -154,6 +148,8 @@
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
            <div style="height: 30px"></div>
 | 
			
		||||
        {% else %}
 | 
			
		||||
            <div style="margin-bottom: 40px"></div>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
        <!--#endregion -->
 | 
			
		||||
    </div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user