139 lines
6.4 KiB
JavaScript
139 lines
6.4 KiB
JavaScript
import {useQuery} from "@apollo/client";
|
|
import {Col, Divider, Row, Skeleton, Space, Timeline, Typography} from "antd";
|
|
import React from "react";
|
|
import {useTranslation} from "react-i18next";
|
|
import {Link} from "react-router-dom";
|
|
import {GET_JOB_LINE_ORDERS} from "../../graphql/jobs.queries";
|
|
import CurrencyFormatter from "../../utils/CurrencyFormatter";
|
|
import {DateFormatter} from "../../utils/DateFormatter";
|
|
import AlertComponent from "../alert/alert.component";
|
|
|
|
import {connect} from "react-redux";
|
|
import {createStructuredSelector} from "reselect";
|
|
import {selectBodyshop} from "../../redux/user/user.selectors";
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
bodyshop: selectBodyshop,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
//setUserLanguage: language => dispatch(setUserLanguage(language))
|
|
});
|
|
export default connect(mapStateToProps, mapDispatchToProps)(JobLinesExpander);
|
|
|
|
export function JobLinesExpander({jobline, jobid, bodyshop}) {
|
|
const {t} = useTranslation();
|
|
const {loading, error, data} = useQuery(GET_JOB_LINE_ORDERS, {
|
|
fetchPolicy: "network-only",
|
|
nextFetchPolicy: "network-only",
|
|
variables: {
|
|
joblineid: jobline.id,
|
|
},
|
|
});
|
|
|
|
if (loading) return <Skeleton/>;
|
|
if (error) return <AlertComponent message={error.message} type="error"/>;
|
|
|
|
return (
|
|
<Row>
|
|
<Col md={24} lg={8}>
|
|
<Typography.Title level={4}>
|
|
{t("parts_orders.labels.parts_orders")}
|
|
</Typography.Title>
|
|
<Timeline
|
|
items={
|
|
data.parts_order_lines.length > 0
|
|
? data.parts_order_lines.map((line) => ({
|
|
key: line.id,
|
|
children: (
|
|
<Space split={<Divider type="vertical"/>} wrap>
|
|
<Link
|
|
to={`/manage/jobs/${jobid}?partsorderid=${line.parts_order.id}`}
|
|
>
|
|
{line.parts_order.order_number}
|
|
</Link>
|
|
<DateFormatter>{line.parts_order.order_date}</DateFormatter>
|
|
{line.parts_order.vendor.name}
|
|
</Space>
|
|
),
|
|
}))
|
|
: [
|
|
{
|
|
key: "no-orders",
|
|
children: t("parts_orders.labels.notyetordered"),
|
|
},
|
|
]
|
|
}
|
|
/> </Col>
|
|
<Col md={24} lg={8}>
|
|
<Typography.Title level={4}>{t("bills.labels.bills")}</Typography.Title>
|
|
<Timeline
|
|
items={
|
|
data.billlines.length > 0
|
|
? data.billlines.map((line) => ({
|
|
key: line.id,
|
|
children: (
|
|
<Row wrap>
|
|
<Col span={4}>
|
|
<Link
|
|
to={`/manage/jobs/${jobid}?tab=partssublet&billid=${line.bill.id}`}
|
|
>
|
|
{line.bill.invoice_number}
|
|
</Link>
|
|
</Col>
|
|
<Col span={4}>
|
|
<span>{`${t("billlines.fields.actual_price")}: `}<CurrencyFormatter>{line.actual_price}</CurrencyFormatter></span>
|
|
</Col>
|
|
<Col span={4}>
|
|
<span>{`${t("billlines.fields.actual_cost")}: `}<CurrencyFormatter>{line.actual_cost}</CurrencyFormatter></span>
|
|
</Col>
|
|
<Col span={4}>
|
|
<DateFormatter>{line.bill.date}</DateFormatter>
|
|
</Col>
|
|
<Col span={4}> {line.bill.vendor.name}</Col>
|
|
</Row>
|
|
),
|
|
}))
|
|
: [
|
|
{
|
|
key: "no-orders",
|
|
children: t("parts_orders.labels.notyetordered"),
|
|
},
|
|
]
|
|
}
|
|
/>
|
|
</Col>
|
|
<Col md={24} lg={8}>
|
|
<Typography.Title level={4}>
|
|
{t("parts_dispatch.labels.parts_dispatch")}
|
|
</Typography.Title>
|
|
<Timeline items={
|
|
data.parts_dispatch_lines.length > 0 ? (
|
|
data.parts_dispatch_lines.map((line) => ({
|
|
key: line.id,
|
|
children: (
|
|
<Space split={<Divider type="vertical"/>} wrap>
|
|
<Link to={`/manage/jobs/${jobid}?partsorderid=${line.id}`}>
|
|
{line.parts_dispatch.number}
|
|
</Link>
|
|
{
|
|
bodyshop.employees.find(
|
|
(e) => e.id === line.parts_dispatch.employeeid
|
|
)?.first_name
|
|
}
|
|
<Space>
|
|
{t("parts_dispatch_lines.fields.accepted_at")}
|
|
<DateFormatter>{line.accepted_at}</DateFormatter>
|
|
</Space>
|
|
</Space>
|
|
)
|
|
}))
|
|
) : ({
|
|
key: 'dispatch-lines',
|
|
children: t("parts_orders.labels.notyetordered"),
|
|
})
|
|
}/>
|
|
</Col>
|
|
</Row>
|
|
);
|
|
}
|