From f85e3d8d60449b7af5258d92bbe6c468003a8ee7 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 4 Apr 2024 11:31:37 -0700 Subject: [PATCH] Resolve job costing. --- server/job/job-costing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/job/job-costing.js b/server/job/job-costing.js index df00f093c..9216c02b9 100644 --- a/server/job/job-costing.js +++ b/server/job/job-costing.js @@ -770,7 +770,7 @@ const getAdditionalCostCenter = (jl, profitCenters) => { return profitCenters["TOW"]; } else if (jl.act_price > 0) { //TODO:AIO Ensure that this is tested. - ret.profitcenter_part = defaults.profits["PAO"]; + return profitCenters["PAO"]; } else { return null; }