mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
- Fix typo ONWERS_DRAWING -> OWNERS_DRAWING in server constants - Change OwnerDrawing -> owner_drawing for consistency in webapp - Fix typo TRANSACRIONS_TYPE -> TRANSACTIONS_TYPE - Fix typo OnwersDrawing -> OwnerDrawing - Add missing Icon and FDateInput imports - Add dark mode styling for BranchRowDivider Co-Authored-By: Claude Code <noreply@anthropic.com>
154 lines
4.1 KiB
TypeScript
154 lines
4.1 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,
|
|
FAccountsSuggestField,
|
|
InputPrependText,
|
|
MoneyInputGroup,
|
|
FieldRequiredHint,
|
|
Col,
|
|
Row,
|
|
FeatureCan,
|
|
BranchSelect,
|
|
FInputGroup,
|
|
FFormGroup,
|
|
FTextArea,
|
|
FMoneyInputGroup,
|
|
Icon,
|
|
FDateInput,
|
|
} from '@/components';
|
|
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={'branch_id'} label={<T id={'branch'} />}>
|
|
<BranchSelect
|
|
name={'branch_id'}
|
|
branches={branches}
|
|
popoverProps={{ minimal: true }}
|
|
/>
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
<BranchRowDivider />
|
|
</FeatureCan>
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
{/*------------ Date -----------*/}
|
|
<FFormGroup
|
|
name={'date'}
|
|
label={<T id={'date'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
fill
|
|
>
|
|
<FDateInput
|
|
name={'date'}
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
popoverProps={{ position: Position.BOTTOM_LEFT, minimal: true }}
|
|
inputProps={{
|
|
fill: true,
|
|
leftIcon: <Icon icon={'date-range'} />,
|
|
}}
|
|
/>
|
|
</FFormGroup>
|
|
</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 -----------*/}
|
|
<FFormGroup
|
|
name={'credit_account_id'}
|
|
label={<T id={'cash_flow_transaction.other_income_account'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
>
|
|
<FAccountsSuggestField
|
|
name={'credit_account_id'}
|
|
items={accounts}
|
|
filterByTypes={[ACCOUNT_TYPE.INCOME, ACCOUNT_TYPE.OTHER_INCOME]}
|
|
/>
|
|
</FFormGroup>
|
|
</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>
|
|
);
|
|
}
|