🇺🇦
Ukrainian / Українська
Шаблони документів для використання українською мовою
Зовнішній вигляд
Код шаблону

Тип шаблону: Замовлення
<!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">[email protected]</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="table-products width100 border">
<tbody>
<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 %}
</table>
<table class="width100">
<tr>
<td align="right">
<table class="table-sum">
{% if model.discount_amount or model.shipping_price %}
<tr>
<td>Всього за товари:</td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td>Зн ижка:</td>
<td class="text-right">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td>Доставка:</td>
<td class="text-right">{{ model.shipping_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td>Сума:</td>
<td class="text-right">{{ model.grand_total|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
</td>
</tr>
</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-right: 5px;
padding-left: 5px;
border: none;
}
table th {
background: #d4d4d4;
}
table.border td,
table.border 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>
Зовнішній вигляд
Код шаблону
Дякуємо нашому користувачу Аскольду Кузіну за наданий шаблон

Тип шаблону: Замовлення
Після генерації, потрібно зберегти картинки на вашому сервері (сайті), та вставити в шаблон посилання на них
<!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="table-products width100 border">
<tbody>
<tr>
<th class="text-center">№</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" style="font-size: 12px;"><strong>{{key + 1}}</strong></td>
<td style="width:50%; font-size: 12px;">{{ product.product_name }}</td>
<td class="text-center" style="font-size: 12px;">{{ product.product_quantity }}</td>
<td class="text-center" style="font-size: 12px;">шт</td>
<td class="text-center" style="font-size: 12px;">{{ product.price_sold|format_currency('UAH', locale='uk') }}</td>
<td class="text-right" style="font-size: 12px;">{{ (product.product_quantity * product.price_sold)|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endfor %}
</table>
<table class="width100">
<tr>
<td align="right">
<table class="table-sum">
{% if model.discount_amount or model.shipping_price %}
<tr>
<td style="font-size: 12px;">Разом:</td>
<td class="text-right" style="font-size: 12px;">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td style="font-size: 12px;">Знижка:</td>
<td class="text-right" style="font-size: 12px;">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td style="font-size: 12px;"><strong>Всього
{% if model.discount_amount %}
зі знижкою
{% endif %}
:</strong> </td>
<td class="text-right" style="font-size: 12px;"><strong>{{ model.grand_total|format_currency('UAH', locale='uk') }}</strong></td>
</tr>
</tbody>
</table>
</td>
</tr>
</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 td {
padding-right: 5px;
padding-left: 5px;
border: none;
}
table.border td,
table.border 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>
Зовнішній вигляд
Код шаблону

Тип шаблону: Замовлення
<!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="table-products width100 border">
<tbody>
<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 %}
</table>
<table class="width100">
<tr>
<td align="right">
<table class="table-sum">
{% if model.discount_amount or model.shipping_price %}
<tr>
<td>Всього за товари:</td>
<td class="text-right">{{ model.total_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td>Знижка:</td>
<td class="text-right">{{ model.discount_amount|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td>Доставка:</td>
<td class="text-right">{{ model.shipping_price|format_currency('UAH', locale='uk') }}</td>
</tr>
{% endif %}
<tr>
<td>Разом:</td>
<td class="text-right">{{ model.grand_total|format_currency('UAH', locale='uk') }}</td>
</tr>
</tbody>
</table>
</td>
</tr>
</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 td {
padding-right: 5px;
padding-left: 5px;
border: none;
}
table th {
background: #d4d4d4;
}
table.border td,
table.border 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>
Зовнішній вигляд
Код шаблону

Тип шаблону: Доставка
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="KeyCRM">
<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="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<table class="head-table">
<tr>
<td valign="bottom"><p class="big bold italic">"______"_________________20__року</p></td>
<td valign="bottom" class="border-bottom">
<p class="big italic bold">В.о. начальника Київської ДМС України</p>
</td>
</tr>
<tr>
<td valign="top" class="small text-center bold">(заповнюється митницею)</td>
<td valign="top" class="small bold">(найменування митного органу)</td>
</tr>
<tr>
<td> </td>
<td valign="bottom" class="border-bottom">
<span class="big" style="background-color: yellow">Прізвище Імʼя По-Батькові</span>
</td>
</tr>
<tr>
<td> </td>
<td valign="top" class="small">(прiзвище, iм‘я та по батьковi)</td>
</tr>
<tr>
<td> </td>
<td valign="bottom" class="border-bottom">
<span class="big" style="background-color: yellow">м. Київ, вул. Хрещатик 24/104</span>
</td>
</tr>
<tr>
<td> </td>
<td valign="top" class="small">(мiсце проживання фiзичної особи)</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td valign="bottom" colspan="2" class="big text-center border-bottom">
<span style="background-color: yellow">Прізвище Імʼя По-Батькові</span>
<span style="padding: 0 30px"></span>
<span style="background-color: yellow">ІХ: 572942</span>
</td>
</tr>
<tr>
<td colspan="2" valign="top">
<p class="text-center">(прiзвище, iм’я та по батьковi фiзичної особи, паспортні дані)</p>
</td>
</tr>
<tr>
<td colspan="2" valign="top">
<p class="big">
заявляє вiдомостi про товари та iншу iнформацiю, необхiдну для здiйснення митних формальностей.
</p>
</td>
</tr>
</table>
<table class="second-table">
<tr>
<td valign="bottom" class="nowrap"><p class="big">Номер транспортного документа</p></td>
<td valign="bottom" class="border-bottom full-width">
<p class="space-text">
<span class="big">{{ model.tracking_code }}</span>
<span class="big bold italic">Від.</span>
<span class="big">{{ "now"|date("d.m.Y") }}р.</span>
</p>
</td>
</tr>
</table>
<table class="second-table">
<tr>
<td valign="bottom" class="nowrap"><p>Рахунок</p></td>
<td valign="bottom" class="border-bottom full-width">
<p class="space-text">
<span class="bold">б/н</span>
<span class="bold italic">від.</span><span>{{ "now"|date("d.m.Y") }}р.</span>
</p>
</td>
</tr>
</table>
<table class="second-table">
<tr style="height: 11px;">
<td valign="top"> </td>
<td valign="top" class="small text-center">(номер, дата)</td>
</tr>
</table>
<table class="second-table">
<tr>
<td valign="bottom" class="nowrap">Країна вiдправлення (призначення)</td>
<td valign="bottom" class="border-bottom full-width">
<p>{{ model.shipping_address_country }}</p>
</td>
</tr>
</table>
<table class="second-table">
<tr>
<td valign="bottom" class="nowrap"><p>