mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-06-01 07:29:01 +00:00
191 lines
5.5 KiB
TypeScript
191 lines
5.5 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import intl from 'react-intl-universal';
|
|
import { isEqual } from 'lodash';
|
|
import { FastField, ErrorMessage, useFormikContext } from 'formik';
|
|
import {
|
|
Classes,
|
|
FormGroup,
|
|
InputGroup,
|
|
TextArea,
|
|
Position,
|
|
ControlGroup,
|
|
} from '@blueprintjs/core';
|
|
import classNames from 'classnames';
|
|
import { CLASSES, Features } from '@/constants';
|
|
import { DateInput } from '@blueprintjs/datetime';
|
|
import {
|
|
Icon,
|
|
Col,
|
|
Row,
|
|
If,
|
|
FieldRequiredHint,
|
|
FAccountsSuggestField,
|
|
InputPrependText,
|
|
MoneyInputGroup,
|
|
FormattedMessage as T,
|
|
ExchangeRateMutedField,
|
|
BranchSelect,
|
|
BranchSelectButton,
|
|
FeatureCan,
|
|
FInputGroup,
|
|
FMoneyInputGroup,
|
|
} from '@/components';
|
|
import {
|
|
inputIntent,
|
|
momentFormatter,
|
|
tansformDateValue,
|
|
handleDateChange,
|
|
compose,
|
|
} from '@/utils';
|
|
import { useAutofocus } from '@/hooks';
|
|
import { ACCOUNT_TYPE } from '@/constants/accountTypes';
|
|
import { useSetPrimaryBranchToForm } from './utils';
|
|
import { useRefundCreditNoteContext } from './RefundCreditNoteFormProvider';
|
|
|
|
import withCurrentOrganization from '@/containers/Organization/withCurrentOrganization';
|
|
|
|
/**
|
|
* Refund credit note form fields.
|
|
*/
|
|
function RefundCreditNoteFormFields({
|
|
// #withCurrentOrganization
|
|
organization: { base_currency },
|
|
}) {
|
|
const { accounts, branches } = useRefundCreditNoteContext();
|
|
const { values } = useFormikContext();
|
|
|
|
const amountFieldRef = useAutofocus();
|
|
|
|
// Sets the primary branch to form.
|
|
useSetPrimaryBranchToForm();
|
|
|
|
return (
|
|
<div className={Classes.DIALOG_BODY}>
|
|
<FeatureCan feature={Features.Branches}>
|
|
<Row>
|
|
<Col xs={5}>
|
|
<FormGroup
|
|
label={<T id={'branch'} />}
|
|
className={classNames('form-group--select-list', Classes.FILL)}
|
|
>
|
|
<BranchSelect
|
|
name={'branch_id'}
|
|
branches={branches}
|
|
input={BranchSelectButton}
|
|
popoverProps={{ minimal: true }}
|
|
/>
|
|
</FormGroup>
|
|
</Col>
|
|
</Row>
|
|
<BranchRowDivider />
|
|
</FeatureCan>
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
{/* ------------- Refund date ------------- */}
|
|
<FastField name={'date'}>
|
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
|
<FFormGroup
|
|
name={'date'}
|
|
label={<T id={'refund_credit_note.dialog.refund_date'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
fill
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
value={tansformDateValue(value)}
|
|
onChange={handleDateChange((formattedDate) => {
|
|
form.setFieldValue('date', formattedDate);
|
|
})}
|
|
popoverProps={{ position: Position.BOTTOM, minimal: true }}
|
|
inputProps={{
|
|
leftIcon: <Icon icon={'date-range'} />,
|
|
}}
|
|
/>
|
|
</FFormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
<Col xs={5}>
|
|
{/* ------------ Form account ------------ */}
|
|
<FFormGroup
|
|
name={'from_account_id'}
|
|
label={<T id={'refund_credit_note.dialog.from_account'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
fill
|
|
>
|
|
<FAccountsSuggestField
|
|
name={'from_account_id'}
|
|
items={accounts}
|
|
inputProps={{
|
|
placeholder: intl.get('select_account'),
|
|
}}
|
|
filterByTypes={[
|
|
ACCOUNT_TYPE.BANK,
|
|
ACCOUNT_TYPE.CASH,
|
|
ACCOUNT_TYPE.FIXED_ASSET,
|
|
]}
|
|
/>
|
|
</FFormGroup>
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* ------------- Amount ------------- */}
|
|
<FFormGroup
|
|
name={'amount'}
|
|
label={<T id={'refund_credit_note.dialog.amount'} />}
|
|
labelInfo={<FieldRequiredHint />}
|
|
fill
|
|
>
|
|
<ControlGroup>
|
|
<InputPrependText text={values.currency_code} />
|
|
<FMoneyInputGroup
|
|
name={'amount'}
|
|
minimal={true}
|
|
inputRef={(ref) => (amountFieldRef.current = ref)}
|
|
/>
|
|
</ControlGroup>
|
|
</FFormGroup>
|
|
|
|
{/*------------ exchange rate -----------*/}
|
|
<If condition={!isEqual(base_currency, values.currency_code)}>
|
|
<ExchangeRateMutedField
|
|
name={'exchange_rate'}
|
|
fromCurrency={base_currency}
|
|
toCurrency={values.currency_code}
|
|
formGroupProps={{ label: '', inline: false }}
|
|
date={values.date}
|
|
exchangeRate={values.exchange_rate}
|
|
/>
|
|
</If>
|
|
|
|
{/* ------------ Reference No. ------------ */}
|
|
<FFormGroup name={'reference_no'} label={<T id={'reference_no'} />} fill>
|
|
<FInputGroup name={'reference_no'} minimal fill />
|
|
</FFormGroup>
|
|
|
|
{/* --------- Statement --------- */}
|
|
<FastField name={'description'}>
|
|
{({ form, field, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'refund_credit_note.dialog.description'} />}
|
|
className={'form-group--description'}
|
|
>
|
|
<TextArea growVertically={true} {...field} />
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default compose(withCurrentOrganization())(RefundCreditNoteFormFields);
|
|
|
|
export const BranchRowDivider = styled.div`
|
|
height: 1px;
|
|
background: #ebf1f6;
|
|
margin-bottom: 13px;
|
|
`;
|