I'm trying to add a "Mini Statement" to the bottom of an Invoice Advanced PDF. The Aging fields are on the customer record, my labels are pulling in correctly but I'm getting field not found on the values. Here is the coding I'm using as well as the result. Any ideas?
<table style="width: 100%; margin-top: 10px;"><tr>
<th>${record.entity.aging@label}</th>
<th>${record.entity.aging1@label}</th>
<th>${record.entity.aging2@label}</th>
<th>${record.entity.aging3@label}</th>
<th>${record.entity.aging4@label}</th>
<th>${record.entity.balance@label}</th>
</tr>
<tr>
<td>${record.entity.aging}</td>
<td>${record.entity.aging1}</td>
<td>${record.entity.aging2}</td>
<td>${record.entity.aging3}</td>
<td>${record.entity.aging4}</td>
<td>${record.entity.balance}</td>
</tr></table>