mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
178 lines
5.3 KiB
TypeScript
178 lines
5.3 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { FastField, ErrorMessage } from 'formik';
|
|
import {
|
|
Classes,
|
|
FormGroup,
|
|
TextArea,
|
|
Position,
|
|
ControlGroup,
|
|
} from '@blueprintjs/core';
|
|
import classNames from 'classnames';
|
|
import {
|
|
FormattedMessage as T,
|
|
AccountsSuggestField,
|
|
InputPrependText,
|
|
MoneyInputGroup,
|
|
FieldRequiredHint,
|
|
Col,
|
|
Row,
|
|
FeatureCan,
|
|
BranchSelect,
|
|
BranchSelectButton,
|
|
FInputGroup,
|
|
FFormGroup,
|
|
FTextArea,
|
|
FMoneyInputGroup,
|
|
} from '@/components';
|
|
import { DateInput } from '@blueprintjs/datetime';
|
|
import { CLASSES, ACCOUNT_TYPE, Features } from '@/constants';
|
|
|
|
import {
|
|
inputIntent,
|
|
momentFormatter,
|
|
tansformDateValue,
|
|
handleDateChange,
|
|
} from '@/utils';
|
|
|
|
import { useMoneyInDailogContext } from '../MoneyInDialogProvider';
|
|
import { useSetPrimaryBranchToForm, BranchRowDivider } from '../utils';
|
|
import { MoneyInOutTransactionNoField } from '../../_components';
|
|
import { useMoneyInFieldsContext } from '../MoneyInFieldsProvider';
|
|
import { MoneyInExchangeRateField } from '../MoneyInExchangeRateField';
|
|
|
|
/**
|
|
* Other income form fields.
|
|
*/
|
|
export default function OtherIncomeFormFields() {
|
|
// Money in dialog context.
|
|
const { accounts, branches } = useMoneyInDailogContext();
|
|
const { account } = useMoneyInFieldsContext();
|
|
|
|
// Sets the primary branch to form.
|
|
useSetPrimaryBranchToForm();
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<FeatureCan feature={Features.Branches}>
|
|
<Row>
|
|
<Col xs={5}>
|
|
<FFormGroup name={'amount'} label={<T id={'branch'} />}>
|
|
<BranchSelect
|
|
name={'branch_id'}
|
|
branches={branches}
|
|
input={BranchSelectButton}
|
|
popoverProps={{ minimal: true }}
|
|
/>
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
<BranchRowDivider />
|
|
</FeatureCan>
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
{/*------------ Date -----------*/}
|
|
<FastField name={'date'}>
|
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'date'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
intent={inputIntent({ error, touched })}
|
|
helperText={<ErrorMessage name="date" />}
|
|
minimal={true}
|
|
className={classNames(CLASSES.FILL, 'form-group--date')}
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
onChange={handleDateChange((formattedDate) => {
|
|
form.setFieldValue('date', formattedDate);
|
|
})}
|
|
value={tansformDateValue(value)}
|
|
popoverProps={{
|
|
position: Position.BOTTOM,
|
|
minimal: true,
|
|
}}
|
|
intent={inputIntent({ error, touched })}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
|
|
<Col xs={5}>
|
|
{/*------------ Transaction number -----------*/}
|
|
<MoneyInOutTransactionNoField />
|
|
</Col>
|
|
</Row>
|
|
|
|
{/*------------ Amount -----------*/}
|
|
<Row>
|
|
<Col xs={10}>
|
|
<FFormGroup
|
|
name={'amount'}
|
|
label={<T id={'amount'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
>
|
|
<ControlGroup>
|
|
<InputPrependText text={account.currency_code} />
|
|
<FMoneyInputGroup name={'amount'} minimal={true} />
|
|
</ControlGroup>
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
|
|
{/*------------ Exchange rate -----------*/}
|
|
<MoneyInExchangeRateField />
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
{/*------------ other income account -----------*/}
|
|
<FastField name={'credit_account_id'}>
|
|
{({ form, field, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'cash_flow_transaction.other_income_account'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
intent={inputIntent({ error, touched })}
|
|
helperText={<ErrorMessage name="credit_account_id" />}
|
|
className={'form-group--credit_account_id'}
|
|
>
|
|
<AccountsSuggestField
|
|
accounts={accounts}
|
|
onAccountSelected={({ id }) =>
|
|
form.setFieldValue('credit_account_id', id)
|
|
}
|
|
filterByTypes={[
|
|
ACCOUNT_TYPE.INCOME,
|
|
ACCOUNT_TYPE.OTHER_INCOME,
|
|
]}
|
|
inputProps={{
|
|
intent: inputIntent({ error, touched }),
|
|
}}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
|
|
<Col xs={5}>
|
|
{/*------------ Reference -----------*/}
|
|
<FFormGroup label={<T id={'reference_no'} />} name={'reference_no'}>
|
|
<FInputGroup name={'reference_no'} />
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
|
|
{/*------------ Description -----------*/}
|
|
<FFormGroup name={'description'} label={<T id={'description'} />}>
|
|
<FTextArea
|
|
name={'description'}
|
|
growVertically={true}
|
|
large={true}
|
|
fill={true}
|
|
/>
|
|
</FFormGroup>
|
|
</React.Fragment>
|
|
);
|
|
}
|