196 lines
5.8 KiB
JavaScript
196 lines
5.8 KiB
JavaScript
import { useMutation } from "@apollo/react-hooks";
|
|
import { Button, Form, Modal, notification } from "antd";
|
|
import React, { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import { INSERT_NEW_BILL } from "../../graphql/bills.queries";
|
|
import { toggleModalVisible } from "../../redux/modals/modals.actions";
|
|
import { selectBillEnterModal } from "../../redux/modals/modals.selectors";
|
|
import {
|
|
selectBodyshop,
|
|
selectCurrentUser,
|
|
} from "../../redux/user/user.selectors";
|
|
import { handleUpload } from "../documents-upload/documents-upload.utility";
|
|
import BillFormContainer from "../bill-form/bill-form.container";
|
|
import { UPDATE_JOB_LINE_STATUS } from "../../graphql/jobs-lines.queries";
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
billEnterModal: selectBillEnterModal,
|
|
bodyshop: selectBodyshop,
|
|
currentUser: selectCurrentUser,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
toggleModalVisible: () => dispatch(toggleModalVisible("billEnter")),
|
|
});
|
|
|
|
function BillEnterModalContainer({
|
|
billEnterModal,
|
|
toggleModalVisible,
|
|
bodyshop,
|
|
currentUser,
|
|
}) {
|
|
const [form] = Form.useForm();
|
|
const { t } = useTranslation();
|
|
const [enterAgain, setEnterAgain] = useState(false);
|
|
const [insertBill] = useMutation(INSERT_NEW_BILL);
|
|
const [updateJobLines] = useMutation(UPDATE_JOB_LINE_STATUS);
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleFinish = (values) => {
|
|
setLoading(true);
|
|
const { upload, location, ...remainingValues } = values;
|
|
insertBill({
|
|
variables: {
|
|
bill: [
|
|
Object.assign({}, remainingValues, {
|
|
billlines: {
|
|
data:
|
|
remainingValues.billlines &&
|
|
remainingValues.billlines.map((i) => {
|
|
return {
|
|
...i,
|
|
joblineid: i.joblineid === "noline" ? null : i.joblineid,
|
|
};
|
|
}),
|
|
},
|
|
}),
|
|
],
|
|
},
|
|
})
|
|
.then((r) => {
|
|
const billId = r.data.insert_bills.returning[0].id;
|
|
|
|
updateJobLines({
|
|
variables: {
|
|
ids: remainingValues.billlines
|
|
.filter((il) => il.joblineid !== "noline")
|
|
.map((li) => li.joblineid),
|
|
status: bodyshop.md_order_statuses.default_received || "Received*",
|
|
location: location,
|
|
},
|
|
}).then((joblineresult) => {
|
|
/////////////////////////
|
|
if (upload && upload.length > 0) {
|
|
//insert Each of the documents?
|
|
upload.forEach((u) => {
|
|
handleUpload(
|
|
{ file: u.originFileObj },
|
|
{
|
|
bodyshop: bodyshop,
|
|
uploaded_by: currentUser.email,
|
|
jobId: values.jobid,
|
|
billId: billId,
|
|
tagsArray: null,
|
|
callback: null,
|
|
}
|
|
);
|
|
});
|
|
}
|
|
///////////////////////////
|
|
setLoading(false);
|
|
notification["success"]({
|
|
message: t("bills.successes.created"),
|
|
});
|
|
if (billEnterModal.actions.refetch) billEnterModal.actions.refetch();
|
|
|
|
if (enterAgain) {
|
|
form.resetFields();
|
|
form.setFieldsValue({ billlines: [] });
|
|
} else {
|
|
toggleModalVisible();
|
|
}
|
|
setEnterAgain(false);
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
setLoading(false);
|
|
setEnterAgain(false);
|
|
notification["error"]({
|
|
message: t("bills.errors.creating", {
|
|
message: JSON.stringify(error),
|
|
}),
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
toggleModalVisible();
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (enterAgain) form.submit();
|
|
}, [enterAgain, form]);
|
|
|
|
useEffect(() => {
|
|
if (billEnterModal.visible) form.resetFields();
|
|
}, [billEnterModal.visible, form]);
|
|
|
|
return (
|
|
<Modal
|
|
title={t("bills.labels.new")}
|
|
width={"90%"}
|
|
visible={billEnterModal.visible}
|
|
okText={t("general.actions.save")}
|
|
onOk={() => form.submit()}
|
|
onCancel={handleCancel}
|
|
afterClose={() => form.resetFields()}
|
|
footer={
|
|
<span>
|
|
<Button onClick={handleCancel}>{t("general.actions.cancel")}</Button>
|
|
<Button loading={loading} onClick={() => form.submit()}>
|
|
{t("general.actions.save")}
|
|
</Button>
|
|
{billEnterModal.context && billEnterModal.context.id ? null : (
|
|
<Button
|
|
type="primary"
|
|
loading={loading}
|
|
onClick={() => {
|
|
setEnterAgain(true);
|
|
}}
|
|
>
|
|
{t("general.actions.saveandnew")}
|
|
</Button>
|
|
)}
|
|
</span>
|
|
}
|
|
destroyOnClose
|
|
>
|
|
<Form
|
|
onFinish={handleFinish}
|
|
autoComplete={"off"}
|
|
layout="vertical"
|
|
form={form}
|
|
onFinishFailed={() => {
|
|
setEnterAgain(false);
|
|
}}
|
|
initialValues={{
|
|
...billEnterModal.context.bill,
|
|
jobid:
|
|
(billEnterModal.context.job && billEnterModal.context.job.id) ||
|
|
null,
|
|
federal_tax_rate:
|
|
(bodyshop.bill_tax_rates &&
|
|
bodyshop.bill_tax_rates.federal_tax_rate) ||
|
|
0,
|
|
state_tax_rate:
|
|
(bodyshop.bill_tax_rates &&
|
|
bodyshop.bill_tax_rates.state_tax_rate) ||
|
|
0,
|
|
local_tax_rate:
|
|
(bodyshop.bill_tax_rates &&
|
|
bodyshop.bill_tax_rates.local_tax_rate) ||
|
|
0,
|
|
}}
|
|
>
|
|
<BillFormContainer form={form} />
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(BillEnterModalContainer);
|