From 2eb4e142ffea1ff768dd8249b4084226dfbc1ef0 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Mon, 1 May 2023 13:48:18 -0700 Subject: [PATCH] IO-2190 Correct lookup location for MAPA Hrs --- server/data/autohouse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/data/autohouse.js b/server/data/autohouse.js index b4e29b086..94090c0f2 100644 --- a/server/data/autohouse.js +++ b/server/data/autohouse.js @@ -799,7 +799,7 @@ const CreateCosts = (job) => { (job.bodyshop.jc_hourly_rates && job.bodyshop.jc_hourly_rates.mapa * 100) || 0, - }).multiply(materialsHours.mapaHrs) + }).multiply(job.job_totals.rates.mapa.hours) ); } }