mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 15:20:34 +00:00
feat: account transaction alerts.
This commit is contained in:
@@ -1,6 +1,11 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import AccountDeleteTransactionAlert from '../../Alerts/CashFlow/AccountDeleteTransactionAlert';
|
import AccountDeleteTransactionAlert from '../../Alerts/CashFlow/AccountDeleteTransactionAlert';
|
||||||
|
import ReceiptsAlerts from '../../Sales/Receipts/ReceiptsAlerts';
|
||||||
|
import ManualJournalsAlerts from '../../Accounting/JournalsLanding/ManualJournalsAlerts';
|
||||||
|
import ExpensesAlerts from '../../Expenses/ExpensesAlerts';
|
||||||
|
import PaymentReceiveAlerts from '../../Sales/PaymentReceives/PaymentReceiveAlerts';
|
||||||
|
import PaymentMadesAlerts from '../../Purchases/PaymentMades/PaymentMadesAlerts';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Account transaction alert.
|
* Account transaction alert.
|
||||||
@@ -9,6 +14,11 @@ export default function AccountTransactionsAlerts() {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<AccountDeleteTransactionAlert name={'account-transaction-delete'} />
|
<AccountDeleteTransactionAlert name={'account-transaction-delete'} />
|
||||||
|
<ReceiptsAlerts />
|
||||||
|
<ExpensesAlerts />
|
||||||
|
<ManualJournalsAlerts />
|
||||||
|
<PaymentReceiveAlerts />
|
||||||
|
<PaymentMadesAlerts />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user