Для замовлень
Шаблони документів для замовлень українською мовою
1. Товарний чек
Тип шаблону: Замовлення
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Invoice</title>
</head>
<body>
<div class="container">
<table class="width100">
<tbody>
<tr>
<td class="logo-wrapper" valign="top">
<img src="https://freerider.in.ua/image/catalog/1_theme/logo.png.pagespeed.ce.NIX_9YdKz2.png" style="width: 200px;" alt="">
</td>
<td valign="top">
<span style="background-color: yellow">м.Київ вул. Гончара, 52</span><br />
<span style="background-color: yellow">googrider@ukr.net</span><br />
</td>
<td valign="top">
<span style="background-color: yellow">тел.: (044)777-77-77</span><br />
<span style="background-color: yellow">тел.: (095)777-77-77</span><br />
<span style="background-color: yellow">тел.: (067)777-77-77</span><br />
</td>
</tr>
</tbody>
</table>
<br /><br /><br />
<table class="width100">
<tbody>
<tr>
<td valign="top" class="label" style="width:50%">
<span style="background-color: yellow">Постачальник: FAA unique presents</span><br />
<span style="background-color: yellow">ФОП Неоменко А.Ф.</span><br />
<span style="background-color: yellow">м.Київ вул. Гончара, 52</span><br />
<span style="background-color: yellow">тел.: (044)777-77-77</span><br />
</td>
<td valign="top" class="label">
Одержувач: {{ model.client_name }}<br />
тел.: {{ model.client_phone }}<br />
{% if model.client_email %}
email: {{ model.client_email }}
{% endif %}
</td>
</tr>
</tbody>
</table>
<br />
<p class="big-text text-center" style="margin-bottom: 10px">
{% set mnths = ['','січня','лютого','березня','квітня','травня','червня','липня','серпня','вересня','жовтня','листопада','грудня'] %}
Товарний чек №{{ model.id }} від {{ model.created_at|date("j") }} {{ mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }} р.
</p>
<table class="width100 border">
<thead class="table-products">
<tr>
<th class="text-center">№</th>
<th>Код товару</th>
<th class="name-col">Назва товару</th>
<th>Од.</th>
<th>Кількість</th>
<th>Ціна</th>
<th>Сума</th>
</tr>
{% for key, product in model.products %}
<tr>
<td class="text-center">{{key + 1}}</td>
<td class="text-center">{{ product.product_sku }}</td>
<td style="width:50%">{{ product.product_name }}</td>
<td class="text-center">шт</td>
<td class="text-center">{{ product.product_quantity }}</td>
<td class="text-center">{{ product.price_sold|format_currency('UAH', locale='uk') }}</td>
<td class="text-right">{{ (product.product_quantity * product.price_sold)|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endfor %}
</thead>
<tbody>
{% if model.discount_amount or model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Всього за товари:</td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td colspan="6" class="text-right">Знижка:</td>
<td class="text-right">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Доставка:</td>
<td class="text-right">{{ model.shipping_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td colspan="6" class="text-right">Сума:</td>
<td class="text-right">{{ model.grand_total|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
<br /><br />
<table class="table-sum width100">
<tr>
<td colspan="2">
Всього найменувань {{ model.products|length }}, на суму {{ model.grand_total|format_currency('UAH', locale='uk') }}
</td>
<td></td>
</tr>
<tr>
<td>Дата: <span class="label underline">{{ model.created_at|date("j") }} {{ mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }} р.</span> </td>
<td>Підпис постачальника: ____________________</td>
<td></td>
</tr>
</table>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-size: 16px;
line-height: 1.3;
min-width: 320px;
font-family: sans-serif;
overflow-x: hidden;
}
.container {
margin-right: auto;
margin-left: auto;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.label {
font-weight: bold;
}
.underline {
text-decoration: underline;
font-style: italic;
}
.big-text {
font-size: 18px;
}
.width100 {
width: 100%;
}
table {
border-collapse:collapse;
border-spacing:0;
height: auto;
}
table td {
padding: 5px;
}
table th {
background: #d4d4d4;
}
table thead td,
table thead th {
border: 1px solid black;
}
table.table-products {
border: solid 2px black;
}
table.table-products th {
padding: 20px 5px;
}
table.table-products td {
padding: 5px;
}
table.table-sum {
margin-top: 7px;
}
table.table-sum td {
padding: 3px 5px 3px 15px;
}
</style>
</html>
2. Товарний чек №2
Дякуємо нашому користувачу Аскольду Кузіну за наданий шаблон
Тип шаблону: Замовлення
QR-коди можна згенерувати, наприклад, тут: https://www.qrcode-monkey.com/
Після генерації, потрібно зберегти картинки на вашому сервері (сайті), та вставити в шаблон посилання на них.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Invoice</title>
</head>
<body>
<div class="container">
<table>
<tbody>
<tr>
<td>
<img src="https://blog.keycrm.app/keycrm/images/keycrm-logo-blue-on-white.png" style="width: 180px;" alt="">
</td>
</tr>
<tr>
<td style="padding: 5px;">
м.Київ вул. Хрещатик, 1
</td>
</tr>
<tr>
<td style="padding: 5px;">
моб/viber (095) 777-77-77
</td>
</tr>
<tr>
<td style="padding: 5px;">
<span>iqmebel.com.ua</span>
</td>
</tr>
</tbody>
</table>
<br />
<table style="padding-bottom: 10px; margin-bottom: 10px;">
<tbody>
<tr>
<td style="padding: 10px 5px;">
<strong>Покупець:</strong> {{ model.client_name }}
{% if model.client_phone %}
{{ model.client_phone }},
{% endif %}
</td>
</tr>
<tr>
<td style="padding: 5px 5px 10px;">
<strong>Адреса доставки:</strong>
{% if model.shipping_type %}
{{ model.shipping_type }},
{% endif %}
{% if model.shipping_address %}
{{ model.shipping_address }},<br />
{% endif %}
</td>
</tr>
</tbody>
</table>
<br />
<p class="text-center" style="font-size: 16px; font-weight: bold; margin-bottom: 10px">
{% set mnths = ['','січня','лютого','березня','квітня','травня','червня','липня','серпня','вересня','жовтня','листопада','грудня'] %}
Накладна №{{ model.id }} від {{ model.created_at|date("j") }} {{ mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }} р.
</p>
<table class="width100 border">
<thead class="table-products">
<tr>
<th class="text-center">№</th>
<th>Код товару</th>
<th class="name-col">Назва товару</th>
<th>Од.</th>
<th>Кількість</th>
<th>Ціна</th>
<th>Сума</th>
</tr>
{% for key, product in model.products %}
<tr>
<td class="text-center">{{key + 1}}</td>
<td class="text-center">{{ product.product_sku }}</td>
<td style="width:50%">{{ product.product_name }}</td>
<td class="text-center">шт</td>
<td class="text-center">{{ product.product_quantity }}</td>
<td class="text-center">{{ product.price_sold|format_currency('UAH', locale='uk') }}</td>
<td class="text-right">{{ (product.product_quantity * product.price_sold)|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endfor %}
</thead>
<tbody>
{% if model.discount_amount or model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Всього за товари:</td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td colspan="6" class="text-right">Знижка:</td>
<td class="text-right">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Доставка:</td>
<td class="text-right">{{ model.shipping_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td colspan="6" class="text-right">Сума:</td>
<td class="text-right">{{ model.grand_total|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
<br />
<table style="padding-bottom: 10px; margin-bottom: 10px;">
<tr>
<td style="padding: 5px;">
Всього найменувань {{ model.products|length }}, на суму {{ model.grand_total|format_currency('UAH', locale='uk') }}
</td>
</tr>
<tr>
<td style="padding: 5px;">
{% set gtc = model.grand_total|round(0, 'floor') %}
{% set gtr = model.grand_total * 100 % 100 %}
{{ (gtc|format_number(style="spellout", locale="uk"))|capitalize }}
{% if gtc % 10 == 1 and gtc % 100 != 11 %}
гривня
{% elseif (gtc % 10 == 2 or gtc % 10 == 3 or gtc % 10 == 4) and (gtc % 100 != 12 and gtc % 100 != 13 and gtc % 100 != 14) %}
гривні
{% else %}
гривень
{% endif %}
{{ gtr|format_number(style="spellout", locale="uk") }}
{% if gtr % 10 == 1 and gtr % 100 != 11 %}
копійка
{% elseif (gtr % 10 == 2 or gtr % 10 == 3 or gtr % 10 == 4) and (gtr % 100 != 12 and gtr % 100 != 13 and gtr % 100 != 14) %}
копійки
{% else %}
копійок
{% endif %}
</td>
</tr>
</table>
<br />
<table class="width100" style="padding-bottom: 30px; margin-bottom: 30px;">
<tbody>
<tr>
<td style="font-size: 12px;">Продавець</td>
<td style="border-bottom: 1px solid black;"></td>
<td style="font-size: 12px;">Іванов Іван</td>
</tr>
<tr>
<td style="padding: 5px;"></td>
<td class="text-center" style="padding: 5px;">Підпис</td>
<td style="padding: 5px;"></td>
</tr>
</tbody>
</table>
<br />
<table class="width100" style="padding-bottom: 10px; margin-bottom: 10px;">
<tr>
<td class="text-center" style="font-size: 12px;">
Дякуємо за замовлення!
</td>
</tr>
<tr>
<td class="text-center" style="font-size: 12px;">
Нам дуже важливо щоб ви були задоволені нашими виробами та сервісом
</td>
</tr>
<tr>
<td class="text-center" style="padding: 5px; font-size: 12px;">
По будь-якому запитанню ви можете написати нам в вайбер або телеграм:
</td>
</tr>
</table>
<table class="width100">
<tbody>
<tr>
<td class="text-center" style="width: 50%; font-size: 12px;">Telegram</td>
<td class="text-center" style="width: 50%; font-size: 12px;">Viber</td>
</tr>
<tr>
<td class="text-center" style="width: 50%;">
<img src="https://blog.keycrm.app/keycrm/qr/keycrm-telegram-qr.png" style="width: 150px;" alt="">
</td>
<td class="text-center" style="width: 50%; padding: 5px;">
<img src="https://blog.keycrm.app/keycrm/qr/keycrm-viber-qr.png" style="width: 150px;" alt="">
</td>
</tr>
</tbody>
</table>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-size: 12px;
line-height: 1.3;
min-width: 320px;
font-family: sans-serif;
overflow-x: hidden;
}
.container {
margin-right: auto;
margin-left: auto;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.label {
font-weight: bold;
}
.underline {
text-decoration: underline;
font-style: italic;
}
.big-text {
font-size: 14px;
}
.width100 {
width: 100%;
}
table {
border-collapse:collapse;
border-spacing:0;
height: auto;
}
table thead td, th {
padding: 5px;
border: none;
}
table thead td,
table thead th {
border-bottom: 1px solid black;
}
table.table-products {
/*border: solid 2px black;*/
}
table.table-products th {
padding: 5px 5px;
}
table.table-products td {
padding: 5px 5px;
}
table.table-sum {
margin-top: 7px;
}
table.table-sum td {
padding: 3px 5px 3px 15px;
}
</style>
</html>
3. Видаткова накладна
Тип шаблону: Замовлення
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Invoice</title>
</head>
<body>
<div class="container">
<table style="padding-bottom: 10px; border-bottom: solid 3px black; margin-bottom: 10px;">
<tbody>
<tr>
<td>
<img src="https://freerider.in.ua/image/catalog/1_theme/logo.png.pagespeed.ce.NIX_9YdKz2.png" style="height: 40px" alt="">
</td>
<td style="font-size: 20px; font-weight: bold; width: 90%">
{% set mnths = ['','січня','лютого','березня','квітня','травня','червня','липня','серпня','вересня','жовтня','листопада','грудня'] %}
Видаткова накладна № {{ model.id }} від {{ model.created_at|date("j") }} {{ mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }} р.
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td valign="top">
<span style="text-decoration: underline">Постачальник:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<strong style="background-color: yellow">ТОВАРИСТВО З ОБМЕЖЕНОЮ ВІДПОВІДАЛЬНІСТЮ "ТОРГОВИЙ ДІМ "АЗАРІС"</strong>
<div style="padding-left: 15px; font-size: 90%;">
<span style="background-color: yellow">П/р 260001169698, у банку ПАТ "УКРСОЦБАНК", м. Київ МФО 320433,</span><br />
<span style="background-color: yellow">вул. Лугова, буд № 2а, м. Київ 04742, тел.: (044) 365-32-16,</span><br />
<span style="background-color: yellow">код за ЄДРПОУ 38510648, ІПН 38533422488, № свід. 20052566,</span><br />
<span style="background-color: yellow">Є платником податку на прибуток на загальних підставах</span>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Покупець:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<strong>{{ model.client_name }}</strong>
<div style="padding-left: 15px; font-size: 90%;">
{% if model.shipping_address %}
{{ model.shipping_address }},<br />
{% endif %}
{% if model.client_phone %}
{{ model.client_phone }},
{% endif %}
{% if model.client_email %}
{{ model.client_email }}
{% endif %}
</div>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Договір:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<span>Основний договір</span>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Умови постачання:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
{{ model.shipping_type }}
</td>
</tr>
</tbody>
</table>
<br />
<table class="width100 border">
<thead class="table-products">
<tr>
<th class="text-center">№</th>
<th>Код товару</th>
<th class="name-col">Назва товару</th>
<th>Од.</th>
<th>Кількість</th>
<th>Ціна</th>
<th>Сума</th>
</tr>
{% for key, product in model.products %}
<tr>
<td class="text-center">{{key + 1}}</td>
<td class="text-center">{{ product.product_sku }}</td>
<td style="width:50%">{{ product.product_name }}</td>
<td class="text-center">шт</td>
<td class="text-center">{{ product.product_quantity }}</td>
<td class="text-center">{{ product.price_sold|format_currency('UAH', locale='uk') }}</td>
<td class="text-right">{{ (product.product_quantity * product.price_sold)|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endfor %}
</thead>
<tbody>
{% if model.discount_amount or model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Всього за товари:</td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td colspan="6" class="text-right">Знижка:</td>
<td class="text-right">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Доставка:</td>
<td class="text-right">{{ model.shipping_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td colspan="6" class="text-right">Сума:</td>
<td class="text-right">{{ model.grand_total|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
<br />
<table>
<tr>
<td>
<strong>Всього найменувань {{ model.products|length }}, на суму {{ model.grand_total|format_currency('UAH', locale='uk') }}</strong>
</td>
</tr>
</table>
<br />
<table>
<tr>
<td>
Місце складання:
</td>
<td>
с. Петропавлівська Борщагівка, вул. Садова 49
</td>
</tr>
</table>
<br />
<table class="width100" style="border-top: solid 3px black;">
<tr>
<td valign="top" style="padding-top: 15px; padding-right: 30px;" width="50%">
<div style="padding-bottom: 35px; margin-bottom: 15px; border-bottom: solid 2px black;">
<strong>Від постачальника*</strong>
</div>
<span style="font-size: 90%;">* Відповідальний за здійснення господарської операції та правильність її оформлення</span>
</td>
<td valign="top" style="padding-top: 15px; padding-right: 30px;">
<div style="padding-bottom: 35px; margin-bottom: 15px; border-bottom: solid 2px black;">
<strong>Отримав(ла)</strong>
</div>
<span style="font-size: 90%;">За довіреністю № від </span>
</td>
</tr>
</table>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-size: 16px;
line-height: 1.3;
min-width: 320px;
font-family: sans-serif;
overflow-x: hidden;
}
.container {
margin-right: auto;
margin-left: auto;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.label {
font-weight: bold;
}
.underline {
text-decoration: underline;
font-style: italic;
}
.big-text {
font-size: 18px;
}
.width100 {
width: 100%;
}
table {
border-collapse:collapse;
border-spacing:0;
height: auto;
}
table thead td {
padding: 5px;
border: none;
}
table th {
background: #d4d4d4;
}
table thead td,
table thead th {
border: 1px solid black;
}
table.table-products {
border: solid 2px black;
}
table.table-products th {
padding: 15px 5px;
}
table.table-products td {
padding: 5px;
}
table.table-sum {
margin-top: 7px;
}
table.table-sum td {
padding: 3px 5px 3px 15px;
}
</style>
</html>
4. Рахунок на оплату
Тип шаблону: Замовлення
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Invoice</title>
</head>
<body>
<div class="container">
<table style="padding-bottom: 10px; border-bottom: solid 3px black; margin-bottom: 10px;">
<tbody>
<tr>
<td style="font-size: 20px; font-weight: bold; width: 90%">
{% set mnths =
['','січня','лютого','березня','квітня','травня','червня','липня','серпня','вересня','жовтня','листопада','грудня']
%}
Рахунок на оплату № {{ model.id }} від {{ model.created_at|date("j") }} {{
mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }} р.
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td valign="top">
<span style="text-decoration: underline">Постачальник:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<strong style="background-color: yellow">ТОВ "Company Name"</strong>
<div style="padding-left: 15px; font-size: 90%;">
<span style="background-color: yellow">адреса м.Київ вул. Хрещатик, 1, АТ КБ "ПРИВАТБАНК" № рахунку: UA111111111111, код ЄДРПОУ 1111111. Директор Тест Тестов Тестовенко</span><br/>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Покупець:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<strong>{{ model.client_name }}</strong>
<div style="padding-left: 15px; font-size: 90%;">
{% if model.client_phone %}
{{ model.client_phone }},
{% endif %}
{% if model.client_email %}
{{ model.client_email }}
{% endif %}
</div>
</td>
</tr>
<tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Предмет:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<div style="padding-left: 15px; font-size: 90%;">
<span>Постачальник зобов’язується поставити і передати у власність Покупця товар, що вказаний в цьому Рахунку разом з товаросупровідною документацією, а Покупець зобов’язується прийняти і оплатити його з урахуванням цін вказаних у цьому Рахунку. </span><br/>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Термін:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<span>не пізніше 40 днів від дати здійснення попередньої оплати за товар</span>
</td>
</tr>
<tr>
<td valign="top">
<span style="text-decoration: underline">Договір:</span>
</td>
<td valign="top" style="padding-bottom: 7px;">
<span>Договору Поставки № 11-2023-11 від 28.11.2023 року</span>
</td>
</tr>
</tbody>
</table>
<br/>
<table class="width100 border">
<thead class="table-products">
<tr>
<th class="text-center">№</th>
<th>Артикул</th>
<th class="name-col">Назва товару</th>
<th>Кількість</th>
<th>Ціна</th>
<th>Сума</th>
</tr>
{% for key, product in model.products %}
<tr>
<td class="text-center">{{key + 1}}</td>
<td class="text-center">{{ product.product_sku }}</td>
<td style="width:50%">{{ product.product_name }}</td>
<td class="text-center">{{ product.product_quantity }} {{ product.product_unit_type }}</td>
<td class="text-right">{{ product.product_price|format_currency('UAH', locale='uk') }}</td>
<td class="text-right">{{ (product.product_quantity * product.product_price)|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endfor %}
</thead>
<tbody>
<tr>
<td colspan="5" class="text-right"><strong>ПДВ:</strong></td>
<td class="text-right">{{ (model.total_price * 0.2)|format_currency('UAH', locale='uk') }}</td>
</tr>
<tr>
<td colspan="5" class="text-right"><strong>Разом:</strong></td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
<br/>
<table>
<tr>
<td>
<strong>Всього найменувань {{ model.products|length }}, на суму {{
model.total_price|format_currency('UAH', locale='uk') }}</strong>
</td>
</tr>
</table>
<br/>
<table>
<tr>
<td>
<p>
{% set gtc = model.total_price|round(0, 'floor') %}
{% set gtr = model.total_price * 100 % 100 %}
<strong>{{ ((gtc|format_number(style="spellout", locale="uk"))|capitalize) }}
{% set currencySuffix = (gtc % 100 >= 11 and gtc % 100 <= 14) ? 'гривень' : (gtc % 10 == 1) ?
'гривня' : (gtc % 10 >= 2 and gtc % 10 <= 4) ? 'гривні' : 'гривень' %}
{{ currencySuffix }}
{{ gtr|format_number(locale="uk") }}
{% set centsSuffix = (gtr % 100 >= 11 and gtr % 100 <= 14) ? 'копійок' : (gtr % 10 == 1) ?
'копійка' : (gtr % 10 >= 2 and gtr % 10 <= 4) ? 'копійки' : 'копійок' %}
{{ centsSuffix }}</strong>
</p>
</tr>
</table>
<br/>
<table class="width100" style="border-top: solid 3px black;">
<tr>
<td valign="top" style="padding-top: 15px; padding-right: 30px;" width="50%">
<span style="font-size: 90%;"><strong>Строк дії Рахунку протягом 3 діб, з моменту надання Покуцю</strong></span>
</td>
<td valign="top"
style="padding-top: 15px; padding-right: 30px; display: flex; justify-content: space-between; border-bottom: solid 1px black;">
<strong>Виписав(ла)</strong><strong style="background-color: yellow">Тест А.А.</strong>
</td>
</tr>
</table>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-size: 16px;
line-height: 1.3;
min-width: 320px;
font-family: sans-serif;
overflow-x: hidden;
}
.container {
margin-right: auto;
margin-left: auto;
}