2020-10-07 18:35:30 +02:00
|
|
|
<style id="style">
|
2021-10-27 14:53:46 +02:00
|
|
|
@import url($font_url);
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
:root {
|
|
|
|
--primary-color: $primary_color;
|
|
|
|
--secondary-color: $secondary_color;
|
2021-08-17 18:46:22 +02:00
|
|
|
--line-height: 1.6;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2022-03-19 02:54:59 +01:00
|
|
|
html {
|
|
|
|
width: 210mm;
|
|
|
|
height: 200mm;
|
|
|
|
}
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
body {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2021-10-27 14:53:46 +02:00
|
|
|
font-family: $font_name, Helvetica, sans-serif;
|
2020-10-07 18:35:30 +02:00
|
|
|
font-size: "$font_size";
|
2021-02-09 16:47:41 +01:00
|
|
|
zoom: 80%;
|
2021-01-14 15:57:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@page {
|
2022-03-15 12:26:53 +01:00
|
|
|
margin-left: $global_margin;
|
|
|
|
margin-right: $global_margin;
|
|
|
|
margin-top: 0;
|
2022-03-18 01:55:07 +01:00
|
|
|
margin-bottom: 0;
|
2022-03-18 23:10:39 +01:00
|
|
|
size: $page_size $page_layout;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2022-03-18 23:10:39 +01:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
|
2021-05-18 13:14:09 +02:00
|
|
|
.company-logo {
|
2021-07-08 11:53:06 +02:00
|
|
|
max-width: 65%;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#company-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-17 18:46:22 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-06-24 10:35:14 +02:00
|
|
|
#company-details > p:first-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#company-address {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-17 18:46:22 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.entity-label {
|
2021-08-17 18:46:22 +02:00
|
|
|
margin-top: 2.5rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
text-transform: uppercase;
|
2021-02-09 16:47:41 +01:00
|
|
|
padding-left: 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.client-and-entity-wrapper {
|
2021-08-17 18:46:22 +02:00
|
|
|
display: flex;
|
2020-10-07 18:35:30 +02:00
|
|
|
padding: 1rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
border-top: 1px solid #d8d8d8;
|
|
|
|
border-bottom: 1px solid #d8d8d8;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details {
|
|
|
|
text-align: left;
|
2021-08-17 18:46:22 +02:00
|
|
|
margin-right: 20px;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details > tr,
|
|
|
|
#entity-details th {
|
|
|
|
font-weight: normal;
|
2021-08-17 18:46:22 +02:00
|
|
|
padding-right: 15px;
|
|
|
|
padding-top: 2.5px;
|
|
|
|
padding-bottom: 2.5px;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#client-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-17 18:46:22 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#client-details > :first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] {
|
2022-03-15 13:28:16 +01:00
|
|
|
margin-top: 1rem;
|
2022-05-19 11:19:46 +02:00
|
|
|
margin-bottom: 50px;
|
2020-10-07 18:35:30 +02:00
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:58:29 +01:00
|
|
|
.task-time-details {
|
2020-11-06 13:12:28 +01:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > thead > tr > th {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-size: 1.1rem;
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td {
|
2021-02-09 16:47:41 +01:00
|
|
|
border-top: 1px solid #d8d8d8;
|
|
|
|
border-bottom: 1px solid #d8d8d8;
|
2022-03-18 23:10:39 +01:00
|
|
|
padding: 1rem 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:first-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
2022-01-06 10:03:30 +01:00
|
|
|
[data-ref="table"] > thead > tr > th:last-child,
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
2021-02-10 12:31:14 +01:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2022-01-06 10:03:30 +01:00
|
|
|
[data-ref="table"] > thead > tr > th:last-child {
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:29:30 +02:00
|
|
|
[data-ref="table"] > tbody > tr:nth-child(odd) {
|
2020-10-07 18:35:30 +02:00
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:47:41 +01:00
|
|
|
#table-totals {
|
2022-03-15 12:26:53 +01:00
|
|
|
margin-top: 0rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
2021-02-09 16:47:41 +01:00
|
|
|
grid-template-columns: 2fr 1fr;
|
2020-10-07 18:35:30 +02:00
|
|
|
padding-top: .5rem;
|
2021-07-21 14:45:42 +02:00
|
|
|
padding-right: 1rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
gap: 80px;
|
2022-03-15 12:26:53 +01:00
|
|
|
page-break-inside:auto;
|
|
|
|
overflow: visible !important;
|
2021-02-09 16:47:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-21 14:45:42 +02:00
|
|
|
#table-totals .totals-table-right-side > * {
|
2021-02-09 16:47:41 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(1) {
|
2022-03-06 08:06:07 +01:00
|
|
|
text-align: $dir_text_align;
|
2021-07-21 14:45:42 +02:00
|
|
|
margin-top: .75rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(2) {
|
|
|
|
text-align: right;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-07-21 14:45:42 +02:00
|
|
|
#table-totals>.totals-table-right-side> * > :not([hidden]) ~ :not([hidden]) {
|
|
|
|
--tw-space-y-reverse: 0;
|
|
|
|
margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
|
|
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
|
|
|
}
|
|
|
|
|
2020-11-05 14:25:48 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due-label'],
|
2020-11-05 14:25:48 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-11-05 14:25:48 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
2020-11-05 14:25:48 +01:00
|
|
|
#table-totals > * > :last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
2021-04-19 13:51:00 +02:00
|
|
|
|
2021-05-20 14:56:01 +02:00
|
|
|
#footer {
|
2022-03-18 23:10:39 +01:00
|
|
|
margin-top: 10px;
|
2021-04-19 13:51:00 +02:00
|
|
|
}
|
2021-07-29 11:35:13 +02:00
|
|
|
|
|
|
|
/** Markdown-specific styles. **/
|
|
|
|
#product-table h3,
|
|
|
|
#task-table h3,
|
|
|
|
#delivery-note-table h3 {
|
|
|
|
font-size: 1rem;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-08-17 18:21:51 +02:00
|
|
|
|
|
|
|
.company-logo-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2021-08-24 16:29:30 +02:00
|
|
|
|
|
|
|
[data-ref="statement-totals"] {
|
|
|
|
margin-top: 1rem;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: .75rem;
|
|
|
|
}
|
2021-09-02 12:47:06 +02:00
|
|
|
|
|
|
|
[data-ref*=".line_total-td"] {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-08-24 16:29:30 +02:00
|
|
|
|
2021-10-29 17:15:58 +02:00
|
|
|
/** .repeating-header,
|
|
|
|
.repeating-header-space, **/
|
|
|
|
.repeating-footer,
|
|
|
|
.repeating-footer-space {
|
2022-03-18 23:10:39 +01:00
|
|
|
height: 10px;
|
2021-10-29 17:15:58 +02:00
|
|
|
}
|
|
|
|
.repeating-header {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.repeating-footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2021-08-10 14:25:27 +02:00
|
|
|
/** Useful snippets, uncomment to enable. **/
|
2021-08-24 16:29:30 +02:00
|
|
|
|
2021-08-10 14:25:27 +02:00
|
|
|
/** Hide company logo **/
|
|
|
|
/* .company-logo { display: none } */
|
|
|
|
|
|
|
|
/* Hide company details */
|
|
|
|
/* #company-details > * { display: none } */
|
|
|
|
|
|
|
|
/* Hide company address */
|
|
|
|
/* #company-address > * { display: none } */
|
|
|
|
|
|
|
|
/* Hide public notes */
|
|
|
|
/* [data-ref="total_table-public_notes"] { display: none } */
|
|
|
|
|
|
|
|
/* Hide terms label */
|
|
|
|
/* [data-ref="total_table-terms-label"] { display: none } */
|
|
|
|
|
|
|
|
/* Hide totals table */
|
|
|
|
/* #table-totals { display: none } */
|
|
|
|
|
|
|
|
/* Hide totals table left side */
|
|
|
|
/* #table-totals div:first-child > * { display: none !important } */
|
|
|
|
|
|
|
|
/* Hide totals table right side */
|
|
|
|
/* .totals-table-right-side { display: none } */
|
|
|
|
|
|
|
|
/** For more info, please check our docs: https://invoiceninja.github.io **/
|
|
|
|
/** To find out selectors on your own: https://invoiceninja.github.io/docs/custom-fields/#snippets **/
|
2020-10-07 18:35:30 +02:00
|
|
|
</style>
|
|
|
|
|
2021-11-09 17:44:28 +01:00
|
|
|
<table style="min-width: 100%">
|
2021-10-29 17:15:58 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="repeating-header-space"> </div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="body">
|
|
|
|
<div class="header-container">
|
|
|
|
<div class="company-logo-container">
|
|
|
|
<img class="company-logo" src="$company.logo" alt="$company.name logo">
|
|
|
|
</div>
|
|
|
|
<div id="company-details"></div>
|
|
|
|
<div id="company-address"></div>
|
|
|
|
</div>
|
|
|
|
<p class="entity-label">$entity_label</p>
|
|
|
|
<div class="client-and-entity-wrapper">
|
|
|
|
<div>
|
|
|
|
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
|
|
|
</div>
|
|
|
|
<div id="client-details"></div>
|
2022-06-06 05:28:10 +02:00
|
|
|
<div id="client-details"></div>
|
2021-10-29 17:15:58 +02:00
|
|
|
</div>
|
|
|
|
<table id="product-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<table id="task-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<table id="delivery-note-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<table id="statement-invoice-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-invoice-table-totals" data-ref="statement-totals"></div>
|
|
|
|
<table id="statement-payment-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-payment-table-totals" data-ref="statement-totals"></div>
|
|
|
|
<table id="statement-aging-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-aging-table-totals" data-ref="statement-totals"></div>
|
|
|
|
<div id="table-totals" cellspacing="0"></div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="repeating-footer-space"> </div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="repeating-header" id="header"></div>
|
|
|
|
|
2021-11-08 21:21:08 +01:00
|
|
|
$entity_images
|
|
|
|
|
2022-03-15 13:28:16 +01:00
|
|
|
<div class="repeating-footerx" id="footer">
|
2021-10-29 17:15:58 +02:00
|
|
|
<p data-ref="total_table-footer">$entity_footer</p>
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-11-30 11:50:50 +01:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// Clear up space a bit, if [product-table, tasks-table, delivery-note-table] isn't present.
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
let tables = [
|
|
|
|
'product-table', 'task-table', 'delivery-note-table',
|
|
|
|
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table-totals',
|
2022-06-06 05:28:10 +02:00
|
|
|
'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table',
|
|
|
|
'client-details','vendor-details'
|
2021-11-30 11:50:50 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
tables.forEach((tableIdentifier) => {
|
|
|
|
console.log(document.getElementById(tableIdentifier));
|
|
|
|
|
|
|
|
document.getElementById(tableIdentifier)?.childElementCount === 0
|
|
|
|
? document.getElementById(tableIdentifier).style.setProperty('display', 'none', 'important')
|
|
|
|
: '';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</div>
|