56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<!--#region Header -->
|
|
<div class="deal-name-id-container">
|
|
<div class="medium-text bold">
|
|
Название сделки: {{ data.deal.name }}
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
<div class="medium-text">
|
|
Дата создания: {{ now().strftime("%d.%m.%Y, %H:%M") }}
|
|
</div>
|
|
<div class="medium-text">
|
|
Текущий статус: {{ data.current_status_str }}
|
|
</div>
|
|
<div class="medium-text">
|
|
{% if data.deal.comment %}
|
|
Комментарий к сделке: {{ data.deal.comment }}
|
|
{% endif %}
|
|
</div>
|
|
<hr/>
|
|
<!--#endregion -->
|
|
<!--#region General services -->
|
|
<div class="large-text bold">
|
|
Клиент: {{ data.deal.client.name }}
|
|
</div>
|
|
<div class="medium-text bold">
|
|
Дата отгрузки: {{ data.last_status.next_status_deadline.strftime("%d.%m.%Y") }}
|
|
</div>
|
|
{% if data.deal.base_marketplace.name %}
|
|
<div class="medium-text bold">Маркетплейс: {{ data.deal.base_marketplace.name }}</div>
|
|
{% endif %}
|
|
{% if data.deal.shipping_warehouse.name %}
|
|
<div class="medium-text bold">Склад отгрузки: {{ data.deal.shipping_warehouse.name }}</div>
|
|
{% endif %}
|
|
{% if data.deal.services|length > 0 %}
|
|
<table style="margin-bottom: 40px">
|
|
<thead>
|
|
<tr>
|
|
<th>Общие услуги</th>
|
|
<th>Количество</th>
|
|
</tr>
|
|
<tfoot>
|
|
</tfoot>
|
|
</thead>
|
|
<tbody>
|
|
{% for service in data.deal.services %}
|
|
<tr>
|
|
<td>{{ service.service.name }}</td>
|
|
<td>{{ '{:,}'.format(service.quantity) }} шт.</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<div style="margin-bottom: 40px"></div>
|
|
{% endif %}
|
|
<!--#endregion --> |