# Invoice pane

You can choose to add the following invoice pane at the location of your choice within your module:

# Add in your DOM the invoice pane locator

Access the file corresponding to the location where you want to display the pane (for example, a template file), then add the following code to display the pane.

<div id="ps-billing-invoice"></div>
1

# Initialize the invoice component

Add the following code to load the component.

window.psBilling.initializeInvoiceList(
  window.psBillingContext.context,
  "#ps-billing-invoice"
);
1
2
3
4