mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 20:00:33 +00:00
204 lines
6.3 KiB
JavaScript
204 lines
6.3 KiB
JavaScript
import React, { useMemo, useCallback, useState } from 'react';
|
|
import {
|
|
FormGroup,
|
|
InputGroup,
|
|
Intent,
|
|
Position,
|
|
ControlGroup,
|
|
} from '@blueprintjs/core';
|
|
import { DateInput } from '@blueprintjs/datetime';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
import moment from 'moment';
|
|
import { momentFormatter, compose, tansformDateValue, saveInvoke } from 'utils';
|
|
import classNames from 'classnames';
|
|
import { CLASSES } from 'common/classes';
|
|
import {
|
|
ContactSelecetList,
|
|
ErrorMessage,
|
|
FieldRequiredHint,
|
|
Icon,
|
|
InputPrependButton,
|
|
Row,
|
|
Col,
|
|
} from 'components';
|
|
|
|
import withCustomers from 'containers/Customers/withCustomers';
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
|
|
function InvoiceFormHeader({
|
|
formik: { errors, touched, setFieldValue, getFieldProps, values },
|
|
|
|
//#withCustomers
|
|
customers,
|
|
//#withDialogActions
|
|
openDialog,
|
|
|
|
// #ownProps
|
|
onInvoiceNumberChanged,
|
|
}) {
|
|
const handleDateChange = useCallback(
|
|
(date_filed) => (date) => {
|
|
const formatted = moment(date).format('YYYY-MM-DD');
|
|
setFieldValue(date_filed, formatted);
|
|
},
|
|
[setFieldValue],
|
|
);
|
|
|
|
// handle change customer
|
|
const onChangeCustomer = useCallback(
|
|
(filedName) => {
|
|
return (customer) => {
|
|
setFieldValue(filedName, customer.id);
|
|
};
|
|
},
|
|
[setFieldValue],
|
|
);
|
|
|
|
const handleInvoiceNumberChange = useCallback(() => {
|
|
openDialog('invoice-number-form', {});
|
|
}, [openDialog]);
|
|
|
|
const handleInvoiceNumberChanged = (event) => {
|
|
saveInvoke(onInvoiceNumberChanged, event.currentTarget.value);
|
|
};
|
|
|
|
return (
|
|
<div className={classNames(CLASSES.PAGE_FORM_HEADER)}>
|
|
<div className={classNames(CLASSES.PAGE_FORM_HEADER_PRIMARY)}>
|
|
{/* ----------- Customer name ----------- */}
|
|
<FormGroup
|
|
label={<T id={'customer_name'} />}
|
|
inline={true}
|
|
className={classNames(
|
|
'form-group--select-list',
|
|
'form-group--customer-name',
|
|
CLASSES.FILL,
|
|
)}
|
|
labelInfo={<FieldRequiredHint />}
|
|
intent={errors.customer_id && touched.customer_id && Intent.DANGER}
|
|
helperText={
|
|
<ErrorMessage name={'customer_id'} {...{ errors, touched }} />
|
|
}
|
|
>
|
|
<ContactSelecetList
|
|
contactsList={customers}
|
|
selectedContactId={values.customer_id}
|
|
defaultSelectText={<T id={'select_customer_account'} />}
|
|
onContactSelected={onChangeCustomer('customer_id')}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<Row>
|
|
<Col md={7} className={'col--invoice-date'}>
|
|
{/* ----------- Invoice date ----------- */}
|
|
<FormGroup
|
|
label={<T id={'invoice_date'} />}
|
|
inline={true}
|
|
labelInfo={<FieldRequiredHint />}
|
|
className={classNames(
|
|
'form-group--select-list',
|
|
'form-group--invoice-date',
|
|
CLASSES.FILL,
|
|
)}
|
|
intent={
|
|
errors.invoice_date && touched.invoice_date && Intent.DANGER
|
|
}
|
|
helperText={
|
|
<ErrorMessage name="invoice_date" {...{ errors, touched }} />
|
|
}
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
value={tansformDateValue(values.invoice_date)}
|
|
onChange={handleDateChange('invoice_date')}
|
|
popoverProps={{ position: Position.BOTTOM, minimal: true }}
|
|
/>
|
|
</FormGroup>
|
|
</Col>
|
|
|
|
<Col md={5} className={'col--due-date'}>
|
|
{/* ----------- Due date ----------- */}
|
|
<FormGroup
|
|
label={<T id={'due_date'} />}
|
|
inline={true}
|
|
className={classNames(
|
|
'form-group--select-list',
|
|
'form-group--due-date',
|
|
CLASSES.FILL,
|
|
)}
|
|
intent={errors.due_date && touched.due_date && Intent.DANGER}
|
|
helperText={
|
|
<ErrorMessage name="due_date" {...{ errors, touched }} />
|
|
}
|
|
>
|
|
<DateInput
|
|
{...momentFormatter('YYYY/MM/DD')}
|
|
value={tansformDateValue(values.due_date)}
|
|
onChange={handleDateChange('due_date')}
|
|
popoverProps={{ position: Position.BOTTOM, minimal: true }}
|
|
/>
|
|
</FormGroup>
|
|
</Col>
|
|
</Row>
|
|
|
|
{/* ----------- Invoice number ----------- */}
|
|
<FormGroup
|
|
label={<T id={'invoice_no'} />}
|
|
inline={true}
|
|
className={classNames('form-group--invoice-no', CLASSES.FILL)}
|
|
intent={errors.invoice_no && touched.invoice_no && Intent.DANGER}
|
|
helperText={
|
|
<ErrorMessage name="invoice_no" {...{ errors, touched }} />
|
|
}
|
|
>
|
|
<ControlGroup fill={true}>
|
|
<InputGroup
|
|
intent={errors.invoice_no && touched.invoice_no && Intent.DANGER}
|
|
minimal={true}
|
|
{...getFieldProps('invoice_no')}
|
|
onBlur={handleInvoiceNumberChanged}
|
|
/>
|
|
<InputPrependButton
|
|
buttonProps={{
|
|
onClick: handleInvoiceNumberChange,
|
|
icon: <Icon icon={'settings-18'} />,
|
|
}}
|
|
tooltip={true}
|
|
tooltipProps={{
|
|
content: 'Setting your auto-generated invoice number',
|
|
position: Position.BOTTOM_LEFT,
|
|
}}
|
|
/>
|
|
</ControlGroup>
|
|
</FormGroup>
|
|
|
|
{/* ----------- Reference ----------- */}
|
|
<FormGroup
|
|
label={<T id={'reference'} />}
|
|
inline={true}
|
|
className={classNames('form-group--reference', CLASSES.FILL)}
|
|
intent={errors.reference_no && touched.reference_no && Intent.DANGER}
|
|
helperText={
|
|
<ErrorMessage name="reference" {...{ errors, touched }} />
|
|
}
|
|
>
|
|
<InputGroup
|
|
intent={
|
|
errors.reference_no && touched.reference_no && Intent.DANGER
|
|
}
|
|
minimal={true}
|
|
{...getFieldProps('reference_no')}
|
|
/>
|
|
</FormGroup>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withCustomers(({ customers }) => ({
|
|
customers,
|
|
})),
|
|
withDialogActions,
|
|
)(InvoiceFormHeader);
|