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 {
|
2021-01-19 12:37:27 +01:00
|
|
|
--primary-color: $primary_color;
|
|
|
|
--secondary-color: $secondary_color;
|
2021-08-18 11:03:37 +02:00
|
|
|
--line-height: 1.6;
|
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;
|
2023-02-07 13:54:18 +01:00
|
|
|
font-size: $font_size !important;
|
2021-02-09 16:47:41 +01:00
|
|
|
zoom: 80%;
|
2021-01-14 15:57:14 +01:00
|
|
|
}
|
|
|
|
|
2023-02-07 13:54:18 +01:00
|
|
|
table tr td, table tr, th {
|
|
|
|
font-size: $font_size !important;
|
2023-02-01 21:06:23 +01:00
|
|
|
}
|
2023-02-07 13:54:18 +01:00
|
|
|
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
body, html {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:57:14 +01:00
|
|
|
@page {
|
2021-10-06 01:35:13 +02:00
|
|
|
margin: 0 !important;
|
2022-03-18 23:10:39 +01:00
|
|
|
size: $page_size $page_layout;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#spacer-table > * > tr > td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-06 01:35:13 +02:00
|
|
|
#spacer-table{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#header {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.5fr 1fr 1fr;
|
2021-05-18 13:14:09 +02:00
|
|
|
gap: 20px;
|
2020-10-07 18:35:30 +02:00
|
|
|
background-color: #2d2c2a;
|
|
|
|
color: white;
|
2021-08-18 11:03:37 +02:00
|
|
|
line-height: var(--line-height);
|
2021-10-05 23:42:41 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2022-11-17 06:41:23 +01:00
|
|
|
width: 100%;
|
2021-10-05 23:42:41 +02:00
|
|
|
}
|
|
|
|
|
2021-10-06 01:35:13 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#header, #header-spacer {
|
|
|
|
height: 160px;
|
|
|
|
padding: 3rem;
|
2022-03-16 08:50:34 +01:00
|
|
|
margin-bottom: 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
.company-logo {
|
2023-02-01 21:06:23 +01:00
|
|
|
/* height: 100%;*/
|
|
|
|
/* max-width: 100%;*/
|
|
|
|
max-width: $company_logo_size;
|
2021-10-05 23:42:41 +02:00
|
|
|
object-fit: contain;
|
|
|
|
object-position: left center;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#company-details,
|
|
|
|
#company-address {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#company-details,
|
|
|
|
#company-address,
|
|
|
|
.logo-container {
|
|
|
|
max-height: 160px;
|
|
|
|
}
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
#client-details {
|
2023-02-01 21:06:23 +01:00
|
|
|
padding-right:1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-18 11:03:37 +02:00
|
|
|
line-height: var(--line-height);
|
2023-02-01 21:06:23 +01:00
|
|
|
padding-left: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#shipping-details {
|
|
|
|
display: $show_shipping_address;
|
|
|
|
flex-direction: column;
|
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#client-details > :first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.client-entity-wrapper {
|
|
|
|
display: grid;
|
2023-02-01 21:06:23 +01:00
|
|
|
grid-template-columns: 2fr 1fr;
|
2021-02-09 16:47:41 +01:00
|
|
|
padding-left: 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
2023-02-01 21:06:23 +01:00
|
|
|
|
|
|
|
.client-wrapper-left-side {
|
|
|
|
display: flex;
|
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
|
|
|
.entity-details-wrapper {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#entity-details > tr,
|
|
|
|
#entity-details th {
|
|
|
|
font-weight: normal;
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] {
|
2020-10-07 18:35:30 +02:00
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
2023-02-07 13:54:18 +01:00
|
|
|
margin-top: 0rem;
|
2021-11-30 11:50:50 +01:00
|
|
|
margin-bottom: 0px;
|
2021-10-06 01:35:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-ref="table"]:last-child{
|
|
|
|
margin-bottom:0;
|
2020-11-06 13:12:28 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > thead > tr > th {
|
2021-02-09 16:47:41 +01:00
|
|
|
padding: 1.5rem 3rem;
|
|
|
|
font-size: 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > thead > tr > th:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td {
|
2021-02-09 16:47:41 +01:00
|
|
|
padding: 1.5rem 3rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:first-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:32:55 +02:00
|
|
|
[data-ref="table"] > tbody > tr:nth-child(odd) {
|
2020-10-07 18:35:30 +02:00
|
|
|
background-color: #ebebeb;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:47:41 +01:00
|
|
|
#table-totals {
|
2022-03-18 23:10:39 +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-02-09 16:47:41 +01:00
|
|
|
padding-left: 3rem;
|
|
|
|
padding-right: 3rem;
|
|
|
|
gap: 80px;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#table-totals .totals-table-right-side > * {
|
2021-02-09 16:47:41 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#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-10-05 23:42:41 +02:00
|
|
|
#table-totals > .totals-table-right-side > * > :not([hidden]) ~ :not([hidden]) {
|
2021-07-21 14:45:42 +02:00
|
|
|
--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));
|
2021-02-09 16:47:41 +01:00
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#table-totals > .totals-table-right-side > * > :nth-child(2) {
|
2021-02-09 16:47:41 +01:00
|
|
|
text-align: right;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due-label'],
|
2020-11-05 13:33:43 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
|
|
|
[data-element='product-table-balance-due'] {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
|
|
|
|
2020-11-05 13:33:43 +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 13:33:43 +01:00
|
|
|
#table-totals > * > :last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 1.5rem;
|
|
|
|
}
|
2021-02-09 16:47:41 +01:00
|
|
|
|
|
|
|
.entity-label {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: var(--primary-color);
|
|
|
|
padding-left: 2rem;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#footer {
|
2021-02-10 12:31:14 +01:00
|
|
|
margin-top: 1rem;
|
|
|
|
background-color: #2d2c2a;
|
|
|
|
min-width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
display: grid;
|
2022-11-17 06:41:23 +01:00
|
|
|
grid-template-columns: 1fr;
|
2021-02-10 12:31:14 +01:00
|
|
|
gap: 15px;
|
2021-04-19 13:51:00 +02:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#footer, #footer-spacer {
|
|
|
|
height: 160px;
|
|
|
|
padding: 1rem 3rem;
|
2022-03-16 08:50:34 +01:00
|
|
|
margin-top: 1rem;
|
2021-10-05 23:42:41 +02:00
|
|
|
}
|
|
|
|
|
2021-04-25 15:22:29 +02:00
|
|
|
[data-ref="total_table-footer"] {
|
2021-04-19 13:51:00 +02:00
|
|
|
padding-top: 0.5rem
|
2021-02-10 12:31:14 +01:00
|
|
|
}
|
2021-05-26 13:03:27 +02:00
|
|
|
|
2022-11-17 06:41:23 +01:00
|
|
|
[data-ref="footer_content"]{
|
|
|
|
padding-right: 2rem;
|
|
|
|
margin-right: 2rem;
|
|
|
|
}
|
|
|
|
|
2021-05-26 13:03:27 +02:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
table[data-ref="table"] th,
|
|
|
|
table[data-ref="table"] td {
|
2021-05-26 13:03:27 +02:00
|
|
|
padding: .2rem .4rem;
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
|
|
|
border-top: 1px solid #dee2e6;
|
|
|
|
}
|
|
|
|
|
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-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
[data-ref="product_table-product.description-th"] {
|
|
|
|
width: 23%;
|
|
|
|
}
|
2021-08-18 11:03:37 +02:00
|
|
|
|
2021-08-24 16:32:55 +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-09-08 13:20:29 +02:00
|
|
|
|
2021-09-16 18:10:12 +02:00
|
|
|
#statement-invoice-table-totals > p {
|
|
|
|
margin-right: 2rem;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
2022-06-21 12:42:43 +02:00
|
|
|
|
|
|
|
[data-element='product_table-product.description-td'], td {
|
|
|
|
min-width:100%;
|
|
|
|
max-width: 300px;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2022-11-17 06:41:23 +01:00
|
|
|
.stamp {
|
|
|
|
transform: rotate(12deg);
|
|
|
|
color: #555;
|
|
|
|
font-size: 3rem;
|
|
|
|
font-weight: 700;
|
|
|
|
border: 0.25rem solid #555;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.25rem 1rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border-radius: 1rem;
|
|
|
|
font-family: 'Courier';
|
|
|
|
mix-blend-mode: multiply;
|
|
|
|
z-index:200 !important;
|
|
|
|
position: fixed;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-paid {
|
|
|
|
color: #D23;
|
|
|
|
border: 1rem double #D23;
|
|
|
|
transform: rotate(-5deg);
|
|
|
|
font-size: 6rem;
|
|
|
|
font-family: "Open sans", Helvetica, Arial, sans-serif;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 0.5rem;
|
|
|
|
opacity: 0.2;
|
|
|
|
z-index:200 !important;
|
|
|
|
position: fixed;
|
2023-02-21 22:08:33 +01:00
|
|
|
display: $show_paid_stamp;
|
2022-11-17 06:41:23 +01:00
|
|
|
}
|
|
|
|
|
2022-11-24 10:33:52 +01:00
|
|
|
.project-header {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-top: 0.1em;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #505050;
|
|
|
|
}
|
|
|
|
|
2022-11-30 07:36:26 +01:00
|
|
|
.pqrcode {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-10 14:25:27 +02:00
|
|
|
/** Useful snippets, uncomment to enable. **/
|
2021-08-24 16:32:55 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/** Hide company logo **/
|
|
|
|
/* .company-logo { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide company details */
|
|
|
|
/* #company-details > * { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide company address */
|
|
|
|
/* #company-address > * { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide public notes */
|
|
|
|
/* [data-ref="total_table-public_notes"] { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide terms label */
|
|
|
|
/* [data-ref="total_table-terms-label"] { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide totals table */
|
|
|
|
/* #table-totals { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide totals table left side */
|
|
|
|
/* #table-totals div:first-child > * { display: none !important } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/* Hide totals table right side */
|
|
|
|
/* .totals-table-right-side { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
/** 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 **/
|
2021-02-10 12:31:14 +01:00
|
|
|
</style>
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
<div id="header">
|
|
|
|
<div class="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>
|
|
|
|
<div id="body">
|
2021-10-06 01:35:13 +02:00
|
|
|
<table id="spacer-table" cellspacing="0" >
|
2021-10-05 23:42:41 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="header-spacer"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="client-entity-wrapper">
|
|
|
|
<div class="client-wrapper-left-side">
|
2023-02-01 21:06:23 +01:00
|
|
|
<div>
|
|
|
|
<h4 class="entity-label" style="margin-top:0px; margin-bottom:10px;">$entity_label</h4>
|
|
|
|
<div id="client-details" cellspacing="0"></div>
|
|
|
|
<div id="vendor-details" cellspacing="0"></div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h4 class="entity-label" style="opacity: 0; margin-top:0px; margin-bottom:10px;">&</h4>
|
|
|
|
<div id="shipping-details" cellspacing="0"></div>
|
|
|
|
</div>
|
2021-10-05 23:42:41 +02:00
|
|
|
</div>
|
2021-02-10 12:31:14 +01:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
<div class="entity-details-wrapper-right-side">
|
|
|
|
<div class="entity-details-wrapper">
|
|
|
|
<table id="entity-details" dir="$dir"></table>
|
|
|
|
</div>
|
2021-02-10 12:31:14 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-05 23:42:41 +02:00
|
|
|
|
|
|
|
<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>
|
2023-02-01 21:06:23 +01:00
|
|
|
<div id="table-totals" cellspacing="0">$status_logo</div>
|
2021-10-05 23:42:41 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="footer-spacer"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-11-08 21:21:08 +01:00
|
|
|
|
|
|
|
$entity_images
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
<div id="footer">
|
2021-11-30 11:50:50 +01:00
|
|
|
<div style="width: 100%;">
|
2022-11-17 06:41:23 +01:00
|
|
|
<p data-ref="footer_content">$entity_footer</p>
|
2021-05-26 13:03:27 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// Clear up space a bit, if [product-table, tasks-table, delivery-note-table] isn't present.
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2021-08-24 16:32:55 +02:00
|
|
|
let tables = [
|
2021-11-30 11:50:50 +01:00
|
|
|
'product-table', 'task-table', 'delivery-note-table',
|
|
|
|
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table-totals',
|
2022-06-07 12:36:47 +02:00
|
|
|
'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table',
|
|
|
|
'vendor-details', 'client-details'
|
2021-08-24 16:32:55 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
tables.forEach((tableIdentifier) => {
|
2021-11-30 11:50:50 +01:00
|
|
|
console.log(document.getElementById(tableIdentifier));
|
|
|
|
|
|
|
|
document.getElementById(tableIdentifier)?.childElementCount === 0
|
|
|
|
? document.getElementById(tableIdentifier).style.setProperty('display', 'none', 'important')
|
|
|
|
: '';
|
2021-05-26 13:03:27 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|