Overview

CreditNotesTable is a React component that displays all credit notes created by an entity. The component shows each credit note’s amount, status, issuance date, and 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

CreditNotesTable component preview
CreditNotesTable component preview

Usage

Use in the CreditNotesTable component in your application as shown:

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

Props

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

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