feat: add Bad-debt & cancel bad-bebt.

This commit is contained in:
elforjani13
2021-11-02 00:23:43 +02:00
parent 91b848f158
commit cd3105b320
13 changed files with 86 additions and 100 deletions

View File

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