mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import FinancialStatementDateRange from '../FinancialStatementDateRange';
|
|
import FinancialStatementsFilter from '../FinancialStatementsFilter';
|
|
import {
|
|
Row,
|
|
Col,
|
|
FormattedMessage as T,
|
|
CustomersMultiSelect,
|
|
FFormGroup,
|
|
} from '@/components';
|
|
import { filterCustomersOptions } from '../constants';
|
|
|
|
import {
|
|
CustomersTransactionsGeneralPanelProvider,
|
|
useCustomersTransactionsGeneralPanelContext,
|
|
} from './CustomersTransactionsHeaderGeneralPanelProvider';
|
|
|
|
/**
|
|
* Customers transactions header - General panel.
|
|
*/
|
|
export default function CustomersTransactionsHeaderGeneralPanel() {
|
|
return (
|
|
<CustomersTransactionsGeneralPanelProvider>
|
|
<CustomersTransactionsHeaderGeneralPanelContent />
|
|
</CustomersTransactionsGeneralPanelProvider>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Customers transactions header - General panel - Content.
|
|
*/
|
|
function CustomersTransactionsHeaderGeneralPanelContent() {
|
|
const { customers } = useCustomersTransactionsGeneralPanelContext();
|
|
|
|
return (
|
|
<div>
|
|
<FinancialStatementDateRange />
|
|
|
|
<Row>
|
|
<Col xs={4}>
|
|
<FinancialStatementsFilter
|
|
items={filterCustomersOptions}
|
|
label={<T id={'customers.label_filter_customers'} />}
|
|
initialSelectedItem={'with-transactions'}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Row>
|
|
<Col xs={4}>
|
|
<FFormGroup
|
|
label={<T id={'specific_customers'} />}
|
|
name={'customersIds'}
|
|
>
|
|
<CustomersMultiSelect name={'customersIds'} items={customers} />
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|