From 277cf9dd745b892257490f55e69c07f95f05a3ad Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Tue, 19 Jan 2021 18:15:37 -0800 Subject: [PATCH] Resolved job totals calculation error. --- server/job/job-totals.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/job/job-totals.js b/server/job/job-totals.js index 3e4983246..11a50a749 100644 --- a/server/job/job-totals.js +++ b/server/job/job-totals.js @@ -98,7 +98,7 @@ function CalculateRatesTotals(ratesList, shoprates) { if (item.mod_lbr_ty === "LAR") { ret.mapa.hours = ret.mapa.hours + item.mod_lb_hrs; } else { - ret.mash.hours = ret.mapa.hours + item.mod_lb_hrs; + ret.mash.hours = ret.mash.hours + item.mod_lb_hrs; } } });