fix: removed price per product from deal document
This commit is contained in:
		@@ -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 %}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user