Milcho Dimkov
03/20/2024, 5:44 PMEFT
channel, so I'll shoot here:
we need to have the reference numbers of invoices paid via EFT added to the XML, so that these are visible on the bank statement (e.g. paid invoice ref numbers: 001, 002, 003)
this is for SEPA payments... is this possible with EFT? what needs to be added on the EFT payment template?
Thanks!Matt Carter
03/20/2024, 7:17 PMrustyshackles
03/20/2024, 8:12 PMtranid
value of the billsMarc
03/21/2024, 11:56 AMMilcho Dimkov
03/21/2024, 11:58 AMZoran R-DATAGRAM
03/22/2024, 6:02 AM<#function getCreditReference payment>
<#assign paidTransactions = transHash[payment.internalid]>
<#assign reference = "">
<#assign paidTransactionsCount = paidTransactions?size>
<#if (paidTransactionsCount >= 1)>
<#list paidTransactions as transaction>
<#if transaction.custbody_poziv_na_broj?has_content>
<#assign reference = transaction.custbody_poziv_na_broj>
</#if>
</#list>
</#if>
<#return reference>
</#function>
Zoran R-DATAGRAM
03/22/2024, 6:05 AMMilcho Dimkov
03/22/2024, 7:28 AM