mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
77 lines
2.4 KiB
JavaScript
77 lines
2.4 KiB
JavaScript
import React from 'react';
|
|
import { FastField } from 'formik';
|
|
import { DateInput } from '@blueprintjs/datetime';
|
|
import { Intent, FormGroup, InputGroup, Position } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
import { Row, Col, FieldHint } from 'components';
|
|
import { momentFormatter } from 'utils';
|
|
|
|
/**
|
|
* AR Aging Summary - Drawer Header - General Fields.
|
|
*/
|
|
export default function ARAgingSummaryHeaderGeneral({}) {
|
|
return (
|
|
<div>
|
|
<Row>
|
|
<Col xs={5}>
|
|
<FastField name={'asDate'}>
|
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'as_date'} />}
|
|
labelInfo={<FieldHint />}
|
|
fill={true}
|
|
intent={error && Intent.DANGER}
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
value={value}
|
|
onChange={(selectedDate) => {
|
|
form.setFieldValue('asDate', selectedDate);
|
|
}}
|
|
popoverProps={{ position: Position.BOTTOM, minimal: true }}
|
|
minimal={true}
|
|
fill={true}
|
|
/>
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
<FastField name={'agingBeforeDays'}>
|
|
{({ field, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'aging_before_days'} />}
|
|
labelInfo={<FieldHint />}
|
|
className={'form-group--aging-before-days'}
|
|
intent={error && Intent.DANGER}
|
|
>
|
|
<InputGroup medium={true} intent={error && Intent.DANGER} {...field } />
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Row>
|
|
<Col xs={5}>
|
|
<FastField name={'agingPeriods'}>
|
|
{({ field, meta: { error, touched } }) => (
|
|
<FormGroup
|
|
label={<T id={'aging_periods'} />}
|
|
labelInfo={<FieldHint />}
|
|
className={'form-group--aging-periods'}
|
|
intent={error && Intent.DANGER}
|
|
>
|
|
<InputGroup medium={true} intent={error && Intent.DANGER} {...field} />
|
|
</FormGroup>
|
|
)}
|
|
</FastField>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|