Partner Portal

ReceivablesTable

ReceivablesTable is a React component that displays all accounts receivable documents - invoices, quotes, and credit notes - created by an entity. The component supports searching, filtering, and pagination between different receivables.

Preview

`ReceivablesTable` component preview.

ReceivablesTable component preview.

Usage

Use in the ReceivablesTable component in your application as shown:

import { ReceivablesTable } from "@monite/sdk-react";

...

// TODO: This component must be rendered within the MoniteProvider wrapper
return (
  <>
    <ReceivablesTable />
  </>
);

Props

PropTypeDescription
onChangeFilterfunctionThis callback is triggered when the filtering options are changed.
onChangeSortfunctionThis callback is called when the current sorting order for any column is changed. It returns the newly sorted field and order.
onRowClickfunctionThis callback takes the identifier of the clicked row as a parameter and is triggered when a receivables table row is clicked.