Logo

How can we help you?

Search our knowledge base to get answers to your questions, access video training & more!

Invoicing

Payment Details Component

Updated 2 days ago

Payment Details Component allows you to print and display the payment details on an invoice.

 

To add the Payment Details Component to an Invoice, you may follow the steps below:

 

1. Go to Setup | Classic Email Templates.
2. Select Payment Center Templates from the Folder dropdown. 

Image

 

 

 

 

 

3. Select the Invoice Email template.

 

4. Hit Edit Template then add the following lines of code on line 562.

Image

 

<!-- Payment Details-->
<apex:outputPanel rendered="{!Relatedto.Total_Paid_Amount__c > 0}">
<br/>
<c:PaymentDetails invoiceId="{!Relatedto.Id}" />
</apex:outputPanel>​

 

5. Save then perform multiple payment transactions to an Invoice to check if details are displayed.

Image

 

Previous

Invoice Line Payment

Next