mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
feat: add payment transaction & style
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import { Tab } from '@blueprintjs/core';
|
||||
import { DrawerMainTabs } from 'components';
|
||||
import { DrawerMainTabs, FormattedMessage as T } from 'components';
|
||||
import InvoicePaymentTransactionsTable from './InvoicePaymentTransactionsDataTable';
|
||||
import EstimatePaymentTransactionsTable from './EstimatePaymentTransactionsDataTable';
|
||||
import ReceiptPaymentTransactionsTable from './ReceiptPaymentTransactionsDataTable';
|
||||
@@ -13,17 +13,18 @@ export const ItemPaymentTransactions = () => {
|
||||
<DrawerMainTabs>
|
||||
<Tab
|
||||
id={'invoice'}
|
||||
title={'Invoice'}
|
||||
title={<T id={'invoice'} />}
|
||||
panel={<InvoicePaymentTransactionsTable />}
|
||||
/>
|
||||
<Tab
|
||||
id={'estiamte'}
|
||||
title={'Estimate'}
|
||||
title={<T id={'estimate_'} />}
|
||||
panel={<EstimatePaymentTransactionsTable />}
|
||||
/>
|
||||
<Tab
|
||||
id={'receipt'}
|
||||
title={'Receipt'}
|
||||
title={<T id={'receipt_'} />}
|
||||
panel={<ReceiptPaymentTransactionsTable />}
|
||||
/>
|
||||
<Tab
|
||||
@@ -34,7 +35,3 @@ export const ItemPaymentTransactions = () => {
|
||||
</DrawerMainTabs>
|
||||
);
|
||||
};
|
||||
|
||||
{
|
||||
/* <ItemSwitchMenuItem onChange={handleSwitch} /> */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user