How can i get the "Credits Applied" line values (D...
# general
j
How can i get the "Credits Applied" line values (Date,Ref.No,Applied To, Payment) from Bill payment (Vendor Payment) record in advanced PDF template ?
a
I assume on a printed check? Here is an example snippet: <#list check.credit as credit> <tr> <td align="center">${credit.creditdate}</td> <td align="left">${credit.appliedto}</td> <td align="left">${credit.refnum}</td> <td align="right">(${credit.amount})</td> <td align="right">&nbsp;</td> <td align="right">(${credit.amount})</td> </tr>