mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 01:37:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			386 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			386 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style id="style">
 | |
|     @import url($font_url);
 | |
| 
 | |
|     :root {
 | |
|         --primary-color: $primary_color;
 | |
|         --secondary-color: $secondary_color;
 | |
|        --line-height: 1.6;
 | |
|     }
 | |
| 
 | |
|     html {
 | |
|         width: 210mm;
 | |
|         height: 200mm;     
 | |
|     }
 | |
| 
 | |
|     body {
 | |
|         -webkit-font-smoothing: antialiased;
 | |
|         -moz-osx-font-smoothing: grayscale;
 | |
|         font-family: $font_name, Helvetica, sans-serif;
 | |
|         font-size: "$font_size";
 | |
|         zoom: 80%;
 | |
|     }
 | |
| 
 | |
|     @page {
 | |
|         margin: $global_margin;
 | |
|         size: $page_size $page_layout;
 | |
|     }
 | |
| 
 | |
|     p {
 | |
|         margin: 0;
 | |
|         padding: 0;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper {
 | |
|         display: grid;
 | |
|         grid-template-columns: 1.2fr 1.8fr;
 | |
|         gap: 20px;
 | |
|         line-height: var(--line-height);
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-text-label {
 | |
|         font-size: 1.1rem;
 | |
|         color: var(--primary-color);
 | |
|         text-transform: uppercase;
 | |
|         font-weight: bold;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-left-side-wrapper {
 | |
|         grid-template-columns: 1fr 1fr;
 | |
|         gap: 10px;
 | |
|         border-left: 1px solid #303030;
 | |
|         padding-left: 1rem;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-left-side-wrapper > * {
 | |
|         margin-bottom: 0.8rem;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-left-side-wrapper #company-details,
 | |
|     .header-wrapper .header-left-side-wrapper #company-address {
 | |
|         display: flex;
 | |
|         flex-direction: column;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-right-side-wrapper {
 | |
|         display: grid;
 | |
|         grid-template-columns: 1fr 1fr;
 | |
|         gap: 10px;
 | |
|         border-left: 1px solid #303030;
 | |
|         padding-left: 1rem;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper .header-right-side-wrapper #client-details {
 | |
|         display: flex;
 | |
|         flex-direction: column;
 | |
|         margin-top: 0.8rem;
 | |
|     }
 | |
| 
 | |
|     .header-wrapper {
 | |
|         margin-left: auto;
 | |
|     }
 | |
| 
 | |
|     .company-logo {
 | |
|         max-width: 65%;
 | |
|     }
 | |
| 
 | |
|     .entity-label {
 | |
|         font-size: 3rem;
 | |
|         text-transform: uppercase;
 | |
|         margin: 2rem 0;
 | |
|     }
 | |
| 
 | |
|     .entity-details-wrapper > * {
 | |
|         margin-right: 1.5rem;
 | |
|     }
 | |
| 
 | |
|     .entity-details-wrapper .entity-property-label {
 | |
|         text-transform: uppercase;
 | |
|     }
 | |
| 
 | |
|     .entity-details-wrapper
 | |
|     [data-element='entity-details-wrapper-invoice-number-label'],
 | |
|     .entity-details-wrapper
 | |
|     [data-element='entity-details-wrapper-amount-due'] {
 | |
|         color: var(--primary-color);
 | |
|         font-weight: bold;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] {
 | |
|         margin-top: 1rem;
 | |
|         /* margin-bottom: 200px; */
 | |
|         min-width: 100%;
 | |
|         table-layout: fixed;
 | |
|         overflow-wrap: break-word;
 | |
|     }
 | |
| 
 | |
|     .task-time-details {
 | |
|         display: block;
 | |
|         margin-top: 5px;
 | |
|         color: grey;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] > thead {
 | |
|         text-align: left;
 | |
|         text-transform: uppercase;
 | |
|         font-weight: bold;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] > thead > tr > th {
 | |
|         font-size: 1.1rem;
 | |
|         padding-bottom: 1.5rem;
 | |
|         padding-left: 1rem;
 | |
|         border-left: 1px solid;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] > thead > tr > th:last-child {
 | |
|         text-align: right;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] > tbody > tr > td {
 | |
|         padding: 1rem;
 | |
|         border-left: 1px solid;
 | |
|     }
 | |
| 
 | |
|     [data-ref="table"] > tbody > tr td:last-child {
 | |
|         text-align: right;
 | |
|     }
 | |
| 
 | |
|     #table-totals {
 | |
|         margin-top: 1rem;
 | |
|         display: grid;
 | |
|         grid-template-columns: 2fr 1fr;
 | |
|         padding-top: 0.5rem;
 | |
|         margin-right: .75rem;
 | |
|         gap: 80px;
 | |
|         page-break-inside:auto;
 | |
|         overflow: visible !important;
 | |
|     }
 | |
| 
 | |
|     #table-totals .totals-table-right-side>* {
 | |
|         display: grid;
 | |
|         grid-template-columns: 1fr 1fr;
 | |
|     }
 | |
| 
 | |
|     #table-totals>.totals-table-right-side>*> :nth-child(1) {
 | |
|         text-align: $dir_text_align;
 | |
|         margin-top: .75rem;
 | |
|     }
 | |
| 
 | |
|     #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));
 | |
|     }
 | |
| 
 | |
|     #table-totals>.totals-table-right-side>*> :nth-child(2) {
 | |
|         text-align: right;
 | |
|     }
 | |
| 
 | |
|     #table-totals
 | |
|     > *
 | |
|     [data-element='product-table-balance-due-label'],
 | |
|     #table-totals
 | |
|     > *
 | |
|     [data-element='product-table-balance-due'] {
 | |
|         font-weight: bold;
 | |
|     }
 | |
| 
 | |
|     #table-totals
 | |
|     > *
 | |
|     [data-element='product-table-balance-due'] {
 | |
|         color: var(--primary-color);
 | |
|     }
 | |
| 
 | |
|     #table-totals > * > :last-child {
 | |
|         text-align: right;
 | |
|         padding-right: 1rem;
 | |
|     }
 | |
| 
 | |
|     #footer {
 | |
|         margin-top: 30px;
 | |
|     }
 | |
| 
 | |
|     /** Markdown-specific styles. **/
 | |
|     [data-ref="table"] h3 {
 | |
|         font-size: 1rem;
 | |
|         margin-bottom: 0;
 | |
|     }
 | |
| 
 | |
|     .entity-details-wrapper > * {
 | |
|         direction: $dir;
 | |
|     }
 | |
| 
 | |
|     .entity-details-wrapper {
 | |
|         display: flex;
 | |
|         flex-wrap: wrap;
 | |
|         direction: $dir;
 | |
|     }
 | |
| 
 | |
|     [data-ref="product_table-product.unit_cost-td"] { text-align: right; }
 | |
| 
 | |
|     [data-ref="totals_table-outstanding"] { color: var(--primary-color); }
 | |
| 
 | |
|     [data-ref="statement-totals"] {
 | |
|         margin-top: 1rem;
 | |
|         text-align: right;
 | |
|         margin-right: .75rem;
 | |
|     }
 | |
| 
 | |
|     [data-ref*=".line_total-td"] {
 | |
|         white-space: nowrap;
 | |
|     }
 | |
| 
 | |
|     /** .repeating-header,
 | |
|     .repeating-header-space, **/
 | |
|     .repeating-footer,
 | |
|     .repeating-footer-space {
 | |
|         height: 0;
 | |
|     }
 | |
|     .repeating-header {
 | |
|         position: fixed;
 | |
|         top: 0;
 | |
|     }
 | |
|     .repeating-footer {
 | |
|         position: fixed;
 | |
|         bottom: 0;
 | |
|     }
 | |
| 
 | |
|     /** Useful snippets, uncomment to enable. **/
 | |
| 
 | |
|     /** 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 **/
 | |
| </style>
 | |
| 
 | |
| <table style="min-width: 100%">
 | |
|    <thead>
 | |
|       <tr>
 | |
|          <td>
 | |
|             <div class="repeating-header-space"> </div>
 | |
|          </td>
 | |
|       </tr>
 | |
|    </thead>
 | |
|    <tbody>
 | |
|       <tr>
 | |
|          <td>
 | |
|             <div id="body">
 | |
|                <div class="header-wrapper">
 | |
|                   <div class="header-left-side-wrapper">
 | |
|                      <p class="header-text-label">$from_label:</p>
 | |
|                      <div id="company-details"></div>
 | |
|                      <div id="company-address"></div>
 | |
|                   </div>
 | |
|                   <div class="header-right-side-wrapper">
 | |
|                      <div class="header-right-side-wrapper-left">
 | |
|                         <p class="header-text-label">$to_label:</p>
 | |
|                         <div id="client-details"></div>
 | |
|                      </div>
 | |
|                      <div class="header-right-side-wrapper-right">
 | |
|                         <img
 | |
|                            class="company-logo"
 | |
|                            src="$company.logo"
 | |
|                            alt="$company.name logo"
 | |
|                            />
 | |
|                      </div>
 | |
|                   </div>
 | |
|                </div>
 | |
|                <h1 class="entity-label">$entity_label</h1>
 | |
|                <div class="entity-details-wrapper">
 | |
|                   <div>
 | |
|                      <span class="entity-property-label" data-element="entity-details-wrapper-invoice-number-label">
 | |
|                      $entity_number_label:
 | |
|                      </span>
 | |
|                      <span class="entity-property-value">$entity_number</span>
 | |
|                   </div>
 | |
|                   <div>
 | |
|                      <span class="entity-property-label">$date_label:</span>
 | |
|                      <span class="entity-property-value">$date</span>
 | |
|                   </div>
 | |
|                   <div>
 | |
|                      <span class="entity-property-label">$payment_due_label:</span>
 | |
|                      <span class="entity-property-value">$payment_due</span>
 | |
|                   </div>
 | |
|                   <div>
 | |
|                      <span class="entity-property-label">$amount_due_label:</span>
 | |
|                      <span
 | |
|                         class="entity-property-value"
 | |
|                         data-element="entity-details-wrapper-amount-due"
 | |
|                         >$amount_due</span
 | |
|                         >
 | |
|                   </div>
 | |
|                </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>
 | |
| 
 | |
| 
 | |
| $entity_images
 | |
| 
 | |
| <div class="repeating-footerx" id="footer">
 | |
|    <p data-ref="total_table-footer">$entity_footer</p>
 | |
| 
 | |
|         <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',
 | |
|                     'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table'
 | |
|                 ];
 | |
| 
 | |
|                 tables.forEach((tableIdentifier) => {
 | |
|                     console.log(document.getElementById(tableIdentifier));
 | |
| 
 | |
|                     document.getElementById(tableIdentifier)?.childElementCount === 0
 | |
|                         ? document.getElementById(tableIdentifier).style.setProperty('display', 'none', 'important')
 | |
|                         : '';
 | |
|                 });
 | |
|             });
 | |
|         </script>
 | |
| </div>
 | |
| 
 |