This commit is contained in:
2026-02-17 16:51:30 -06:00
parent 31f03b0d7c
commit 2d5be21bf2
6 changed files with 633 additions and 66 deletions

View File

@@ -86,7 +86,11 @@
font-size: 14px;
line-height: 1.5;
}
.info-div {
display: flex;
height: fit-content;
margin-top: auto;
}
.info-table {
border-collapse: collapse;
font-size: 13px;
@@ -110,7 +114,7 @@
.items-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
margin: 40px 0 20px 0;
font-size: 13px;
}
@@ -238,24 +242,26 @@
{{CUSTOMER_CITY}}, {{CUSTOMER_STATE}} {{CUSTOMER_ZIP}}
</div>
</div>
<table class="info-table">
<thead>
<tr>
<th>INVOICE #</th>
<th>ACCOUNT NO.</th>
<th>DATE</th>
<th>TERMS</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{INVOICE_NUMBER}}</td>
<td>{{ACCOUNT_NUMBER}}</td>
<td>{{INVOICE_DATE}}</td>
<td>{{TERMS}}</td>
</tr>
</tbody>
</table>
<div class="info-div">
<table class="info-table">
<thead>
<tr>
<th>INVOICE #</th>
<th>ACCOUNT NO.</th>
<th>DATE</th>
<th>TERMS</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{INVOICE_NUMBER}}</td>
<td>{{ACCOUNT_NUMBER}}</td>
<td>{{INVOICE_DATE}}</td>
<td>{{TERMS}}</td>
</tr>
</tbody>
</table>
</div>
</div>
{{AUTHORIZATION}}