Resolved job totals calculation error.

This commit is contained in:
Patrick Fic
2021-01-19 18:15:37 -08:00
parent 85c1d882f7
commit 277cf9dd74

View File

@@ -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;
}
}
});