Luis
03/27/2023, 2:47 AMLuis
03/27/2023, 2:48 AM<#if record.apply?has_content>
<table class="itemtable" style="margin-top: 10px; margin-left: 30px; margin-right: 30px; width: 100%;"><!-- start apply --><#list record.apply as apply><#if apply_index==0><tr class="apply-header gray-bg">
<th align="center" colspan="3"><span style="font-size:11px;">Supplier Invoice</span></th>
<th align="left" colspan="2"><span style="font-size:11px;">Date Issued</span></th>
<th align="left" colspan="2"><span style="font-size:11px;">Currency </span></th>
<th align="left" colspan="3"><span style="font-size:11px;">Invoice Amount</span></th>
<th align="left" colspan="2"><span style="font-size:11px;">Discount</span></th>
<th align="left" colspan="3"><span style="font-size:11px;">${apply.due@label}</span></th>
<th align="left" colspan="3"><span style="font-size:11px;">${apply.amount@label}</span></th>
</tr>
</#if>
<tr>
<td align="center" colspan="3"><span style="font-size:11px;">${apply.refnum}</span></td>
<td align="left" colspan="2"><span style="font-size:11px;">${apply.applydate}</span></td>
<td align="left" colspan="2"><span style="font-size:11px;">${apply.currency}</span></td>
<td align="left" colspan="3"><span style="font-size:11px;">${apply.amount}</span></td>
<td align="left" colspan="2"><span style="font-size:11px;">${apply.disc}</span></td>
<td align="left" colspan="3"><span style="font-size:11px;">${apply.due}</span></td>
<td align="left" colspan="3"><span style="font-size:11px;">${apply.total}</span></td>
</tr>
</#list><!-- end apply --></table>
<hr /></#if><#if record.credit?has_content>
<table class="itemtable" style="margin-top: 10px; margin-left: 30px; margin-right: 30px; width: 100%;"><!-- start apply --><#list record.credit as credit><#if credit_index==0><tr class="apply-header gray-bg">
<th align="center" colspan="3"><span style="font-size:11px;">Supplier Credit</span></th>
<th align="left" colspan="2"><span style="font-size:11px;">Date Issued</span></th>
<th align="left" colspan="2"><span style="font-size:11px;">Currency </span></th>
<th align="left" colspan="3"><span style="font-size:11px;"></span></th>
<th align="left" colspan="2"><span style="font-size:11px;"></span></th>
<th align="left" colspan="3"><span style="font-size:11px;"></span></th>
<th align="left" colspan="3"><span style="font-size:11px;">Applied</span></th>
</tr>
</#if>
<tr>
<td align="center" colspan="3"><span style="font-size:11px;">${credit.refnum}</span></td>
<td align="left" colspan="2"><span style="font-size:11px;">${credit.creditdate}</span></td>
<td align="left" colspan="2"><span style="font-size:11px;">${credit.currency}</span></td>
<td align="left" colspan="3"><span style="font-size:11px;"></span></td>
<td align="left" colspan="2"><span style="font-size:11px;"></span></td>
<td align="left" colspan="3"><span style="font-size:11px;"></span></td>
<td align="left" colspan="3"><span style="font-size:11px;">${credit.amount}</span></td>
</tr>
</#list><!-- end apply --></table>
</#if>
michoel
03/27/2023, 3:14 AMmichoel
03/27/2023, 3:15 AMLuis
03/27/2023, 9:17 AM