98 lines
2.7 KiB
JavaScript
98 lines
2.7 KiB
JavaScript
import { Table } from "antd";
|
|
import Dinero from "dinero.js";
|
|
import React, { useMemo, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { alphaSort } from "../../utils/sorters";
|
|
|
|
export default function JobTotalsTableParts({ job }) {
|
|
const { t } = useTranslation();
|
|
const [state, setState] = useState({
|
|
sortedInfo: {},
|
|
filteredInfo: {},
|
|
});
|
|
|
|
const data = useMemo(() => {
|
|
return Object.keys(job.job_totals.parts.parts.list)
|
|
.filter(
|
|
(key) =>
|
|
key !== "mapa" &&
|
|
key !== "mash" &&
|
|
key !== "subtotal" &&
|
|
key !== "rates_subtotal"
|
|
)
|
|
.map((key) => {
|
|
return {
|
|
id: key,
|
|
...job.job_totals.parts.parts.list[key],
|
|
};
|
|
});
|
|
}, [job.job_totals.parts.parts.list]);
|
|
|
|
const columns = [
|
|
{
|
|
title: t("joblines.fields.part_type"),
|
|
dataIndex: "id",
|
|
key: "id",
|
|
sorter: (a, b) =>
|
|
alphaSort(
|
|
t(`jobs.fields.${a.id.toLowerCase()}`),
|
|
t(`jobs.fields.${b.id.toLowerCase()}`)
|
|
),
|
|
width: "80%",
|
|
sortOrder: state.sortedInfo.columnKey === "id" && state.sortedInfo.order,
|
|
render: (text, record) => t(`jobs.fields.${record.id.toLowerCase()}`),
|
|
},
|
|
{
|
|
title: t("joblines.fields.total"),
|
|
dataIndex: "total",
|
|
key: "total",
|
|
sorter: (a, b) => a.total.amount - b.total.amount,
|
|
sortOrder:
|
|
state.sortedInfo.columnKey === "total" && state.sortedInfo.order,
|
|
width: "20%",
|
|
align: "right",
|
|
render: (text, record) => Dinero(record.total).toFormat(),
|
|
},
|
|
];
|
|
|
|
const handleTableChange = (pagination, filters, sorter) => {
|
|
setState({ ...state, filteredInfo: filters, sortedInfo: sorter });
|
|
};
|
|
return (
|
|
<Table
|
|
columns={columns}
|
|
rowKey="id"
|
|
pagination={false}
|
|
onChange={handleTableChange}
|
|
dataSource={data}
|
|
scroll={{
|
|
x: true,
|
|
}}
|
|
summary={() => (
|
|
<>
|
|
<Table.Summary.Row>
|
|
<Table.Summary.Cell>
|
|
{t("jobs.labels.prt_dsmk_total")}
|
|
</Table.Summary.Cell>
|
|
|
|
<Table.Summary.Cell align="right">
|
|
{Dinero(job.job_totals.parts.parts.prt_dsmk_total).toFormat()}
|
|
</Table.Summary.Cell>
|
|
</Table.Summary.Row>
|
|
<Table.Summary.Row>
|
|
<Table.Summary.Cell>
|
|
<strong>{t("jobs.labels.partstotal")}</strong>
|
|
</Table.Summary.Cell>
|
|
|
|
<Table.Summary.Cell align="right">
|
|
<strong>
|
|
{Dinero(job.job_totals.parts.parts.total).toFormat()}
|
|
</strong>
|
|
</Table.Summary.Cell>
|
|
</Table.Summary.Row>
|
|
</>
|
|
)}
|
|
/>
|
|
);
|
|
}
|