feat: add reconcile credit transactions table.

This commit is contained in:
elforjani13
2021-12-07 20:58:17 +02:00
parent 14f33c667b
commit ecaf23d269
8 changed files with 312 additions and 12 deletions

View File

@@ -12,6 +12,10 @@ const OpenCreditNoteAlert = React.lazy(() =>
import('../../Alerts/CreditNotes/CreditNoteOpenedAlert'),
);
const ReconcileCreditDeleteAlert = React.lazy(() =>
import('../../Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert'),
);
/**
* Credit notes alerts.
*/
@@ -28,4 +32,8 @@ export default [
name: 'refund-credit-delete',
component: RefundCreditNoteDeleteAlert,
},
{
name: 'reconcile-credit-delete',
component: ReconcileCreditDeleteAlert,
},
];