mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
feat: excluded bank transactions
This commit is contained in:
@@ -1,16 +1,22 @@
|
||||
// @ts-nocheck
|
||||
import { useEffect } from 'react';
|
||||
import styled from 'styled-components';
|
||||
import * as R from 'ramda';
|
||||
|
||||
import '@/style/pages/CashFlow/AccountTransactions/List.scss';
|
||||
|
||||
import AccountTransactionsUncategorizedTable from './AccountTransactionsUncategorizedTable';
|
||||
import { AccountUncategorizedTransactionsBoot } from './AllTransactionsUncategorizedBoot';
|
||||
import { AccountTransactionsUncategorizeFilter } from './AccountTransactionsUncategorizeFilter';
|
||||
import { UncategorizedTransactionsFilterProvider } from './AccountUncategorizedTransactionsFilterProvider';
|
||||
import { RecognizedTransactionsTableBoot } from './RecognizedTransactions/RecognizedTransactionsTableBoot';
|
||||
import { RecognizedTransactionsTable } from './RecognizedTransactions/RecognizedTransactionsTable';
|
||||
import {
|
||||
WithBankingActionsProps,
|
||||
withBankingActions,
|
||||
} from '../withBankingActions';
|
||||
import { useEffect } from 'react';
|
||||
import { AccountUncategorizedTransactionsBoot } from './AllTransactionsUncategorizedBoot';
|
||||
import AccountTransactionsUncategorizedTable from './AccountTransactionsUncategorizedTable';
|
||||
import { ExcludedBankTransactionsTableBoot } from './ExcludedTransactions/ExcludedTransactionsTableBoot';
|
||||
import { ExcludedTransactionsTable } from './ExcludedTransactions/ExcludedTransactionsTable';
|
||||
|
||||
const Box = styled.div`
|
||||
margin: 30px 15px;
|
||||
@@ -36,14 +42,31 @@ function AllTransactionsUncategorizedRoot({
|
||||
},
|
||||
[closeMatchingTransactionAside],
|
||||
);
|
||||
|
||||
return (
|
||||
<AccountUncategorizedTransactionsBoot>
|
||||
<UncategorizedTransactionsFilterProvider>
|
||||
<Box>
|
||||
<CashflowTransactionsTableCard>
|
||||
<AccountTransactionsUncategorizedTable />
|
||||
</CashflowTransactionsTableCard>
|
||||
<AccountTransactionsUncategorizeFilter />
|
||||
|
||||
<ExcludedBankTransactionsTableBoot>
|
||||
<CashflowTransactionsTableCard>
|
||||
<ExcludedTransactionsTable />
|
||||
</CashflowTransactionsTableCard>
|
||||
</ExcludedBankTransactionsTableBoot>
|
||||
|
||||
{/* <RecognizedTransactionsTableBoot>
|
||||
<CashflowTransactionsTableCard>
|
||||
<RecognizedTransactionsTable />
|
||||
</CashflowTransactionsTableCard>
|
||||
</RecognizedTransactionsTableBoot> */}
|
||||
|
||||
{/* <AccountUncategorizedTransactionsBoot>
|
||||
<CashflowTransactionsTableCard>
|
||||
<AccountTransactionsUncategorizedTable />
|
||||
</CashflowTransactionsTableCard>
|
||||
</AccountUncategorizedTransactionsBoot> */}
|
||||
</Box>
|
||||
</AccountUncategorizedTransactionsBoot>
|
||||
</UncategorizedTransactionsFilterProvider>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user