Resolve job costing.

This commit is contained in:
Patrick Fic
2024-04-04 11:31:37 -07:00
parent cbf5c5729f
commit f85e3d8d60

View File

@@ -770,7 +770,7 @@ const getAdditionalCostCenter = (jl, profitCenters) => {
return profitCenters["TOW"]; return profitCenters["TOW"];
} else if (jl.act_price > 0) { } else if (jl.act_price > 0) {
//TODO:AIO Ensure that this is tested. //TODO:AIO Ensure that this is tested.
ret.profitcenter_part = defaults.profits["PAO"]; return profitCenters["PAO"];
} else { } else {
return null; return null;
} }