🇺🇸International
1. Invoice

Template type: Orders
<!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://blog.keycrm.app/keycrm/images/keycrm-logo-blue-on-white.png" style="width: 220px;" alt="">
</td>
<td valign="top">
<span style="background-color: yellow">Kyiv, Honchara St., 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">Supplier: FAA unique presents</span><br />
<span style="background-color: yellow">Private Entrepreneur Neomenko A.F.</span><br />
<span style="background-color: yellow">Kyiv, Honchara St., 52</span><br />
<span style="background-color: yellow">тел.: (044)777-77-77</span><br />
</td>
<td valign="top" class="label">
Recipient: {{ model.client_name }}<br />
tel.: {{ 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 = ['','January','February','March','April','May','June','July','August','September','October','November','December'] %}
Invoice №{{ model.id }} dated {{ 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>Product Code</th>
<th class="name-col">Product Name</th>
<th>Unit</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</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_unit_type }}</td>
<td class="text-center">{{ product.product_quantity }}</td>
<td class="text-center">{{ product.price_sold|format_currency('USD', locale='en') }}</td>
<td class="text-right">{{ (product.product_quantity * product.price_sold)|format_currency('USD', locale='en') }}</td>
</tr>
{% endfor %}
</thead>
<tbody>
{% if model.discount_amount or model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Total for products:</td>
<td class="text-right">{{ model.total_price|format_currency('USD', locale='en') }}</td>
</tr>
{% endif %}
{% if model.discount_amount %}
<tr>
<td colspan="6" class="text-right">Discount:</td>
<td class="text-right">{{ model.discount_amount|format_currency('USD', locale='en') }}</td>
</tr>
{% endif %}
{% if model.shipping_price %}
<tr>
<td colspan="6" class="text-right">Shipping:</td>
<td class="text-right">{{ model.shipping_price|format_currency('USD', locale='en') }}</td>
</tr>
{% endif %}
<tr>
<td colspan="6" class="text-right">Total:</td>
<td class="text-right">{{ model.grand_total|format_currency('USD', locale='en') }}</td>
</tr>
</tbody>
</table>
<br /><br />
<table class="table-sum width100">
<tr>
<td colspan="2">
Total items {{ model.products|length }}, for the amount of {{ model.grand_total|format_currency('USD', locale='en') }}
</td>
<td></td>
</tr>
<tr>
<td>Date: <span class="label underline">{{ model.created_at|date("j") }} {{ mnths[model.created_at|date("n")] }} {{ model.created_at|date("Y") }}</span> </td>
<td>Supplier's signature: ____________________</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: 99%;
}
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. Etsy-like Invoice

Template type: Orders
3. Proforma Invoice (for customs)

Template type: Orders
Last updated