IO-306 Dashboard monthly employee efficiency
This commit is contained in:
@@ -10689,6 +10689,27 @@
|
|||||||
<folder_node>
|
<folder_node>
|
||||||
<name>titles</name>
|
<name>titles</name>
|
||||||
<children>
|
<children>
|
||||||
|
<concept_node>
|
||||||
|
<name>monthlyemployeeefficiency</name>
|
||||||
|
<definition_loaded>false</definition_loaded>
|
||||||
|
<description></description>
|
||||||
|
<comment></comment>
|
||||||
|
<default_text></default_text>
|
||||||
|
<translations>
|
||||||
|
<translation>
|
||||||
|
<language>en-US</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>es-MX</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>fr-CA</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
</translations>
|
||||||
|
</concept_node>
|
||||||
<concept_node>
|
<concept_node>
|
||||||
<name>monthlyjobcosting</name>
|
<name>monthlyjobcosting</name>
|
||||||
<definition_loaded>false</definition_loaded>
|
<definition_loaded>false</definition_loaded>
|
||||||
|
|||||||
@@ -0,0 +1,166 @@
|
|||||||
|
import { Card } from "antd";
|
||||||
|
import _ from "lodash";
|
||||||
|
import moment from "moment";
|
||||||
|
import React from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import {
|
||||||
|
Bar,
|
||||||
|
CartesianGrid,
|
||||||
|
ComposedChart,
|
||||||
|
Legend,
|
||||||
|
Line,
|
||||||
|
ResponsiveContainer,
|
||||||
|
Tooltip,
|
||||||
|
XAxis,
|
||||||
|
YAxis,
|
||||||
|
} from "recharts";
|
||||||
|
import * as Utils from "../../scoreboard-targets-table/scoreboard-targets-table.util";
|
||||||
|
import DashboardRefreshRequired from "../refresh-required.component";
|
||||||
|
|
||||||
|
export default function DashboardMonthlyEmployeeEfficiency({
|
||||||
|
data,
|
||||||
|
...cardProps
|
||||||
|
}) {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
if (!data) return null;
|
||||||
|
if (!data.monthly_employee_efficiency)
|
||||||
|
return <DashboardRefreshRequired {...cardProps} />;
|
||||||
|
|
||||||
|
const ticketsByDate = _.groupBy(data.monthly_employee_efficiency, (item) =>
|
||||||
|
moment(item.date).format("YYYY-MM-DD")
|
||||||
|
);
|
||||||
|
|
||||||
|
const listOfDays = Utils.ListOfDaysInCurrentMonth();
|
||||||
|
|
||||||
|
const chartData = listOfDays.reduce((acc, val) => {
|
||||||
|
//Sum up the current day.
|
||||||
|
let dailyHrs;
|
||||||
|
if (!!ticketsByDate[val]) {
|
||||||
|
dailyHrs = ticketsByDate[val].reduce(
|
||||||
|
(dayAcc, dayVal) => {
|
||||||
|
return {
|
||||||
|
actual: dayAcc.actual + dayVal.actualhrs,
|
||||||
|
productive: dayAcc.actual + dayVal.productivehrs,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
{ actual: 0, productive: 0 }
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
dailyHrs = { actual: 0, productive: 0 };
|
||||||
|
}
|
||||||
|
|
||||||
|
const dailyEfficiency =
|
||||||
|
((dailyHrs.productive - dailyHrs.actual) / dailyHrs.productive + 1) * 100;
|
||||||
|
|
||||||
|
const theValue = {
|
||||||
|
date: moment(val).format("DD"),
|
||||||
|
...dailyHrs,
|
||||||
|
dailyEfficiency: isNaN(dailyEfficiency) ? 0 : dailyEfficiency.toFixed(1),
|
||||||
|
accActual:
|
||||||
|
acc.length > 0
|
||||||
|
? acc[acc.length - 1].accActual + dailyHrs.actual
|
||||||
|
: dailyHrs.actual,
|
||||||
|
|
||||||
|
accProductive:
|
||||||
|
acc.length > 0
|
||||||
|
? acc[acc.length - 1].accProductive + dailyHrs.productive
|
||||||
|
: dailyHrs.productive,
|
||||||
|
accEfficiency: 0,
|
||||||
|
};
|
||||||
|
theValue.accEfficiency = (
|
||||||
|
((theValue.accProductive - theValue.accActual) /
|
||||||
|
(theValue.accProductive || 1) +
|
||||||
|
1) *
|
||||||
|
100
|
||||||
|
).toFixed(1);
|
||||||
|
|
||||||
|
return [...acc, theValue];
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card
|
||||||
|
title={t("dashboard.titles.monthlyemployeeefficiency")}
|
||||||
|
{...cardProps}
|
||||||
|
>
|
||||||
|
<div style={{ height: "100%" }}>
|
||||||
|
<ResponsiveContainer width="100%" height="100%">
|
||||||
|
<ComposedChart
|
||||||
|
data={chartData}
|
||||||
|
margin={{ top: 20, right: 20, bottom: 20, left: 20 }}
|
||||||
|
>
|
||||||
|
<CartesianGrid stroke="#f5f5f5" />
|
||||||
|
<XAxis dataKey="date" />
|
||||||
|
<YAxis
|
||||||
|
yAxisId="left"
|
||||||
|
orientation="left"
|
||||||
|
stroke="#8884d8"
|
||||||
|
unit=" hrs"
|
||||||
|
/>
|
||||||
|
<YAxis
|
||||||
|
yAxisId="right"
|
||||||
|
orientation="right"
|
||||||
|
stroke="#82ca9d"
|
||||||
|
unit="%"
|
||||||
|
/>
|
||||||
|
<Tooltip />
|
||||||
|
<Legend />
|
||||||
|
<Line
|
||||||
|
yAxisId="right"
|
||||||
|
name="Accumulated Efficiency"
|
||||||
|
type="monotone"
|
||||||
|
unit="%"
|
||||||
|
dataKey="accEfficiency"
|
||||||
|
stroke="#152228"
|
||||||
|
connectNulls
|
||||||
|
// activeDot={{ r: 8 }}
|
||||||
|
/>
|
||||||
|
<Line
|
||||||
|
name="Daily Efficiency"
|
||||||
|
yAxisId="right"
|
||||||
|
unit="%"
|
||||||
|
type="monotone"
|
||||||
|
connectNulls
|
||||||
|
dataKey="dailyEfficiency"
|
||||||
|
stroke="#d31717"
|
||||||
|
/>
|
||||||
|
<Bar
|
||||||
|
name="Actual Hours"
|
||||||
|
dataKey="actual"
|
||||||
|
yAxisId="left"
|
||||||
|
unit=" hrs"
|
||||||
|
//stackId="day"
|
||||||
|
barSize={20}
|
||||||
|
fill="#102568"
|
||||||
|
/>
|
||||||
|
<Bar
|
||||||
|
name="Productive Hours"
|
||||||
|
dataKey="productive"
|
||||||
|
yAxisId="left"
|
||||||
|
unit=" hrs"
|
||||||
|
//stackId="day"
|
||||||
|
barSize={20}
|
||||||
|
fill="#017664"
|
||||||
|
/>
|
||||||
|
</ComposedChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export const DashboardMonthlyEmployeeEfficiencyGql = `
|
||||||
|
monthly_employee_efficiency: timetickets(where: {_and: [{date: {_gte: "${moment()
|
||||||
|
.startOf("month")
|
||||||
|
.format("YYYY-MM-DD")}"}},{date: {_lte: "${moment()
|
||||||
|
.endOf("month")
|
||||||
|
.format("YYYY-MM-DD")}"}} ]}) {
|
||||||
|
actualhrs
|
||||||
|
productivehrs
|
||||||
|
employeeid
|
||||||
|
employee {
|
||||||
|
first_name
|
||||||
|
last_name
|
||||||
|
}
|
||||||
|
date
|
||||||
|
}
|
||||||
|
`;
|
||||||
@@ -42,11 +42,17 @@ export function DashboardTotalProductionHours({
|
|||||||
return (
|
return (
|
||||||
<Card {...cardProps} title={t("dashboard.titles.prodhrssummary")}>
|
<Card {...cardProps} title={t("dashboard.titles.prodhrssummary")}>
|
||||||
<Space wrap style={{ flex: 1 }}>
|
<Space wrap style={{ flex: 1 }}>
|
||||||
<Statistic title={t("dashboard.labels.bodyhrs")} value={hours.body} />
|
<Statistic
|
||||||
<Statistic title={t("dashboard.labels.refhrs")} value={hours.ref} />
|
title={t("dashboard.labels.bodyhrs")}
|
||||||
|
value={hours.body.toFixed(1)}
|
||||||
|
/>
|
||||||
|
<Statistic
|
||||||
|
title={t("dashboard.labels.refhrs")}
|
||||||
|
value={hours.ref.toFixed(1)}
|
||||||
|
/>
|
||||||
<Statistic
|
<Statistic
|
||||||
title={t("dashboard.labels.prodhrs")}
|
title={t("dashboard.labels.prodhrs")}
|
||||||
value={hours.total}
|
value={hours.total.toFixed(1)}
|
||||||
valueStyle={{ color: aboveTargetHours ? "green" : "red" }}
|
valueStyle={{ color: aboveTargetHours ? "green" : "red" }}
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import Icon, { SyncOutlined } from "@ant-design/icons";
|
import Icon, { SyncOutlined } from "@ant-design/icons";
|
||||||
import { gql, useMutation, useQuery } from "@apollo/client";
|
import { gql, useMutation, useQuery } from "@apollo/client";
|
||||||
import { Button, Dropdown, Menu, notification, PageHeader, Space } from "antd";
|
import { Button, Dropdown, Menu, notification, PageHeader, Space } from "antd";
|
||||||
|
import i18next from "i18next";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
@@ -16,6 +17,9 @@ import {
|
|||||||
selectCurrentUser,
|
selectCurrentUser,
|
||||||
} from "../../redux/user/user.selectors";
|
} from "../../redux/user/user.selectors";
|
||||||
import AlertComponent from "../alert/alert.component";
|
import AlertComponent from "../alert/alert.component";
|
||||||
|
import DashboardMonthlyEmployeeEfficiency, {
|
||||||
|
DashboardMonthlyEmployeeEfficiencyGql,
|
||||||
|
} from "../dashboard-components/monthly-employee-efficiency/monthly-employee-efficiency.component";
|
||||||
import DashboardMonthlyJobCosting from "../dashboard-components/monthly-job-costing/monthly-job-costing.component";
|
import DashboardMonthlyJobCosting from "../dashboard-components/monthly-job-costing/monthly-job-costing.component";
|
||||||
import DashboardMonthlyLaborSales from "../dashboard-components/monthly-labor-sales/monthly-labor-sales.component";
|
import DashboardMonthlyLaborSales from "../dashboard-components/monthly-labor-sales/monthly-labor-sales.component";
|
||||||
import DashboardMonthlyPartsSales from "../dashboard-components/monthly-parts-sales/monthly-parts-sales.component";
|
import DashboardMonthlyPartsSales from "../dashboard-components/monthly-parts-sales/monthly-parts-sales.component";
|
||||||
@@ -195,7 +199,7 @@ export default connect(
|
|||||||
|
|
||||||
const componentList = {
|
const componentList = {
|
||||||
ProductionDollars: {
|
ProductionDollars: {
|
||||||
label: "Production Dollars",
|
label: i18next.t("dashboard.titles.productiondollars"),
|
||||||
component: DashboardTotalProductionDollars,
|
component: DashboardTotalProductionDollars,
|
||||||
gqlFragment: null,
|
gqlFragment: null,
|
||||||
w: 1,
|
w: 1,
|
||||||
@@ -204,7 +208,7 @@ const componentList = {
|
|||||||
minH: 1,
|
minH: 1,
|
||||||
},
|
},
|
||||||
ProductionHours: {
|
ProductionHours: {
|
||||||
label: "Production Hours",
|
label: i18next.t("dashboard.titles.productionhours"),
|
||||||
component: DashboardTotalProductionHours,
|
component: DashboardTotalProductionHours,
|
||||||
gqlFragment: DashboardTotalProductionHoursGql,
|
gqlFragment: DashboardTotalProductionHoursGql,
|
||||||
w: 3,
|
w: 3,
|
||||||
@@ -213,7 +217,7 @@ const componentList = {
|
|||||||
minH: 1,
|
minH: 1,
|
||||||
},
|
},
|
||||||
ProjectedMonthlySales: {
|
ProjectedMonthlySales: {
|
||||||
label: "Projected Monthly Sales",
|
label: i18next.t("dashboard.titles.projectedmonthlysales"),
|
||||||
component: DashboardProjectedMonthlySales,
|
component: DashboardProjectedMonthlySales,
|
||||||
gqlFragment: DashboardProjectedMonthlySalesGql,
|
gqlFragment: DashboardProjectedMonthlySalesGql,
|
||||||
w: 2,
|
w: 2,
|
||||||
@@ -222,7 +226,7 @@ const componentList = {
|
|||||||
minH: 1,
|
minH: 1,
|
||||||
},
|
},
|
||||||
MonthlyRevenueGraph: {
|
MonthlyRevenueGraph: {
|
||||||
label: "Monthly Sales Graph",
|
label: i18next.t("dashboard.titles.monthlyrevenuegraph"),
|
||||||
component: DashboardMonthlyRevenueGraph,
|
component: DashboardMonthlyRevenueGraph,
|
||||||
gqlFragment: DashboardMonthlyRevenueGraphGql,
|
gqlFragment: DashboardMonthlyRevenueGraphGql,
|
||||||
w: 4,
|
w: 4,
|
||||||
@@ -231,7 +235,7 @@ const componentList = {
|
|||||||
minH: 2,
|
minH: 2,
|
||||||
},
|
},
|
||||||
MonthlyJobCosting: {
|
MonthlyJobCosting: {
|
||||||
label: "Monthly Job Costing",
|
label: i18next.t("dashboard.titles.monthlyjobcosting"),
|
||||||
component: DashboardMonthlyJobCosting,
|
component: DashboardMonthlyJobCosting,
|
||||||
gqlFragment: null,
|
gqlFragment: null,
|
||||||
minW: 6,
|
minW: 6,
|
||||||
@@ -240,7 +244,7 @@ const componentList = {
|
|||||||
h: 3,
|
h: 3,
|
||||||
},
|
},
|
||||||
MonthlyPartsSales: {
|
MonthlyPartsSales: {
|
||||||
label: "Monthly Parts Sales",
|
label: i18next.t("dashboard.titles.productiondollars"),
|
||||||
component: DashboardMonthlyPartsSales,
|
component: DashboardMonthlyPartsSales,
|
||||||
gqlFragment: null,
|
gqlFragment: null,
|
||||||
minW: 2,
|
minW: 2,
|
||||||
@@ -249,7 +253,7 @@ const componentList = {
|
|||||||
h: 2,
|
h: 2,
|
||||||
},
|
},
|
||||||
MonthlyLaborSales: {
|
MonthlyLaborSales: {
|
||||||
label: "Monthly Parts Sales",
|
label: i18next.t("dashboard.titles.monthlypartssales"),
|
||||||
component: DashboardMonthlyLaborSales,
|
component: DashboardMonthlyLaborSales,
|
||||||
gqlFragment: null,
|
gqlFragment: null,
|
||||||
minW: 2,
|
minW: 2,
|
||||||
@@ -257,6 +261,15 @@ const componentList = {
|
|||||||
w: 2,
|
w: 2,
|
||||||
h: 2,
|
h: 2,
|
||||||
},
|
},
|
||||||
|
MonthlyEmployeeEfficency: {
|
||||||
|
label: i18next.t("dashboard.titles.monthlyemployeeefficiency"),
|
||||||
|
component: DashboardMonthlyEmployeeEfficiency,
|
||||||
|
gqlFragment: DashboardMonthlyEmployeeEfficiencyGql,
|
||||||
|
minW: 2,
|
||||||
|
minH: 2,
|
||||||
|
w: 2,
|
||||||
|
h: 2,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const createDashboardQuery = (state) => {
|
const createDashboardQuery = (state) => {
|
||||||
|
|||||||
@@ -317,7 +317,9 @@ function Header({
|
|||||||
window.open("https://help.imex.online/", "_blank");
|
window.open("https://help.imex.online/", "_blank");
|
||||||
}}
|
}}
|
||||||
icon={<Icon component={QuestionCircleFilled} />}
|
icon={<Icon component={QuestionCircleFilled} />}
|
||||||
/>
|
>
|
||||||
|
{t("menus.header.help")}
|
||||||
|
</Menu.Item>
|
||||||
<Menu.Item
|
<Menu.Item
|
||||||
key="rescue"
|
key="rescue"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Collapse, Form, Input, Select, Switch } from "antd";
|
import { Collapse, Form, Input, InputNumber, Select, Switch } from "antd";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
@@ -240,6 +240,26 @@ export function JobsCreateJobsInfo({ bodyshop, form, selected }) {
|
|||||||
<CurrencyInput />
|
<CurrencyInput />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</LayoutFormRow>
|
</LayoutFormRow>
|
||||||
|
<LayoutFormRow>
|
||||||
|
<Form.Item
|
||||||
|
label={t("jobs.fields.federal_tax_rate")}
|
||||||
|
name="federal_tax_rate"
|
||||||
|
>
|
||||||
|
<InputNumber min={0} max={1} precision={2} />
|
||||||
|
</Form.Item>
|
||||||
|
<Form.Item
|
||||||
|
label={t("jobs.fields.state_tax_rate")}
|
||||||
|
name="state_tax_rate"
|
||||||
|
>
|
||||||
|
<InputNumber min={0} max={1} precision={2} />
|
||||||
|
</Form.Item>
|
||||||
|
<Form.Item
|
||||||
|
label={t("jobs.fields.local_tax_rate")}
|
||||||
|
name="local_tax_rate"
|
||||||
|
>
|
||||||
|
<InputNumber min={0} max={1} precision={2} />
|
||||||
|
</Form.Item>
|
||||||
|
</LayoutFormRow>
|
||||||
<LayoutFormRow>
|
<LayoutFormRow>
|
||||||
<Form.Item label={t("jobs.fields.rate_lab")} name="rate_lab">
|
<Form.Item label={t("jobs.fields.rate_lab")} name="rate_lab">
|
||||||
<CurrencyInput />
|
<CurrencyInput />
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export function ScheduleCalendarHeaderGraph({ bodyshop, loadData }) {
|
|||||||
name="Ideal Load"
|
name="Ideal Load"
|
||||||
dataKey="target"
|
dataKey="target"
|
||||||
stroke="darkgreen"
|
stroke="darkgreen"
|
||||||
fill="whitr"
|
fill="white"
|
||||||
fillOpacity={0}
|
fillOpacity={0}
|
||||||
/>
|
/>
|
||||||
<Radar
|
<Radar
|
||||||
|
|||||||
@@ -162,6 +162,9 @@ function JobsCreateContainer({ bodyshop, setBreadcrumbs, setSelectedHeader }) {
|
|||||||
tax_sub_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
tax_sub_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
||||||
tax_lbr_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
tax_lbr_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
||||||
tax_levies_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
tax_levies_rt: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
||||||
|
federal_tax_rate: bodyshop.bill_tax_rates.federal_tax_rate / 100,
|
||||||
|
state_tax_rate: bodyshop.bill_tax_rates.state_tax_rate / 100,
|
||||||
|
local_tax_rate: bodyshop.bill_tax_rates.local_tax_rate / 100,
|
||||||
parts_tax_rates: {
|
parts_tax_rates: {
|
||||||
PAA: {
|
PAA: {
|
||||||
prt_type: "PAA",
|
prt_type: "PAA",
|
||||||
|
|||||||
@@ -674,18 +674,19 @@
|
|||||||
},
|
},
|
||||||
"labels": {
|
"labels": {
|
||||||
"bodyhrs": "Body Hrs",
|
"bodyhrs": "Body Hrs",
|
||||||
"dollarsinproduction": "Dollars in Production'",
|
"dollarsinproduction": "Dollars in Production",
|
||||||
"prodhrs": "Production Hrs",
|
"prodhrs": "Production Hrs",
|
||||||
"refhrs": "Refinish Hrs"
|
"refhrs": "Refinish Hrs"
|
||||||
},
|
},
|
||||||
"titles": {
|
"titles": {
|
||||||
|
"monthlyemployeeefficiency": "Monthly Employee Efficiency",
|
||||||
"monthlyjobcosting": "Monthly Job Costing ",
|
"monthlyjobcosting": "Monthly Job Costing ",
|
||||||
"monthlylaborsales": "Monthly Labor Sales",
|
"monthlylaborsales": "Monthly Labor Sales",
|
||||||
"monthlypartssales": "Monthly Parts Sales",
|
"monthlypartssales": "Monthly Parts Sales",
|
||||||
"monthlyrevenuegraph": "Monthly Revenue Graph",
|
"monthlyrevenuegraph": "Monthly Revenue Graph",
|
||||||
"prodhrssummary": "Production Hours Summary",
|
"prodhrssummary": "Production Hours Summary",
|
||||||
"productiondollars": "Total dollars in production",
|
"productiondollars": "Total dollars in Production",
|
||||||
"productionhours": "Total hours in production",
|
"productionhours": "Total hours in Production",
|
||||||
"projectedmonthlysales": "Projected Monthly Sales"
|
"projectedmonthlysales": "Projected Monthly Sales"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -679,6 +679,7 @@
|
|||||||
"refhrs": ""
|
"refhrs": ""
|
||||||
},
|
},
|
||||||
"titles": {
|
"titles": {
|
||||||
|
"monthlyemployeeefficiency": "",
|
||||||
"monthlyjobcosting": "",
|
"monthlyjobcosting": "",
|
||||||
"monthlylaborsales": "",
|
"monthlylaborsales": "",
|
||||||
"monthlypartssales": "",
|
"monthlypartssales": "",
|
||||||
|
|||||||
@@ -679,6 +679,7 @@
|
|||||||
"refhrs": ""
|
"refhrs": ""
|
||||||
},
|
},
|
||||||
"titles": {
|
"titles": {
|
||||||
|
"monthlyemployeeefficiency": "",
|
||||||
"monthlyjobcosting": "",
|
"monthlyjobcosting": "",
|
||||||
"monthlylaborsales": "",
|
"monthlylaborsales": "",
|
||||||
"monthlypartssales": "",
|
"monthlypartssales": "",
|
||||||
|
|||||||
Reference in New Issue
Block a user