Название сделки: {{ deal.name }}
ID:{{ deal.id }}

Дата создания: {{ now().strftime("%d.%m.%Y, %H:%M") }}
Текущий статус: {{ current_status_str }}
{% if deal.comment %} Комментарий к сделке: {{ deal.comment }} {% else %} Комментарий к сделке отсутствует {% endif %}

Клиент: {{ deal.client.name }}
Дата отгрузки: {{ last_status.next_status_deadline.strftime("%d.%m.%Y") }}
{% if deal.base_marketplace.name %}
Маркетплейс: {{ deal.base_marketplace.name }}
{% endif %} {% if deal.shipping_warehouse.name %}
Склад отгрузки: {{ deal.shipping_warehouse.name }}
{% endif %} {% for service in deal.services %} {% endfor %}
Общие услуги Количество Сумма
{{ service.service.name }} {{ '{:,}'.format(service.quantity) }} шт. {{ '{:,}'.format(service.price * service.quantity).replace(',', ' ') }} Р
Итого: {{ general_services_total }} Р
{% for product in deal.products %}

{% if product.product.images|length != 0 %}
Фото товара
{% endif %}
{{ loop.index }}. {{ product.product.name }}
Артикул: {{ product.product.article }}
{% if product.product.brand %}
Бренд: {{ product.product.brand }}
{% endif %} {% if product.product.color %}
Цвет: {{ product.product.color }}
{% endif %} {% if product.product.size %}
Размер: {{ product.product.size }}
{% endif %} {% if product.quantity %}
Количество: {{ product.quantity }}
{% endif %} {% if product.product.additional_info %}
Доп. информация: {{ product.product.additional_info }}
{% endif %}

{{ encode128(product.product.barcodes[0].barcode, "A") }}
{{ product.product.barcodes[0].barcode }}
{% for service in product.services %} {% endfor %}
Наименование услуги Цена Сумма
{{ service.service.name }} {{ '{:,}'.format(product.quantity) }} Р {{ '{:,}'.format(service.price * product.quantity).replace(',', ' ') }} Р
Итого: {{ product_services_totals[loop.index0] }} Р
{% endfor %}