Overview

InvoicesTable is a React component that displays all outgoing invoices created by an entity. The component shows each invoice’s amount, status, issuance date, due date, and the counterpart to which they were sent.

Permissions

To access this component, the entity user must have read permissions for the receivable object. For more information, see List of permissions.

Preview

InvoicesTable component preview
InvoicesTable component preview

Usage

Use in the InvoicesTable component in your application as shown:

React.js
1import { InvoicesTable } from "@monite/sdk-react";
2
3...
4
5// TODO: This component must be rendered within the MoniteProvider wrapper
6const InvoicesTablePage = () => {
7 return <InvoicesTable />
8};

Props

The following table shows all InvoicesTable component properties, their types, and description:

PropTypeDescription
onRowClickfunctionThis callback takes the identifier of the clicked row as a parameter and is triggered when a invoice table row is clicked.