feat: Bad Debt.

This commit is contained in:
elforjani13
2021-11-01 20:24:01 +02:00
parent 613454a862
commit 91b848f158
25 changed files with 734 additions and 12 deletions

View File

@@ -7,10 +7,15 @@ const InvoiceDeliverAlert = React.lazy(() =>
import('../../Alerts/Invoices/InvoiceDeliverAlert'),
);
const BadDebtAlert = React.lazy(() =>
import('../../Alerts/Invoices/BadDebtAlert'),
);
/**
* Invoices alert.
*/
export default [
{ name: 'invoice-delete', component: InvoiceDeleteAlert },
{ name: 'invoice-deliver', component: InvoiceDeliverAlert },
{ name: 'bad-debt', component: BadDebtAlert },
];