# Invoice pane

Warning: Deprecated Page

The PrestaShop Billing component is deprecated since January 2026. No new modules can use this component. Existing modules that already use it remain unchanged.

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

PrestaShop Billing Invoice Pane

# 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>

# Initialize the invoice component

Add the following code to load the component.

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