diff --git a/src/calculations/calculator.ts b/src/calculations/calculator.ts index 7d5a119..99596d4 100644 --- a/src/calculations/calculator.ts +++ b/src/calculations/calculator.ts @@ -104,11 +104,11 @@ export default class Calculator { grossArea: Math.ceil(grossArea), netArea: Math.ceil(netArea), utilityFloorSpace: Math.ceil(utilityFloorSpace), + adjustedAreaInclCompensationWithAdjustmentAndCompensation: Math.ceil(this.totalAdjustedAreaInclCompensationWithAdjustmentAndCompensation), unadjustedArea: Math.ceil(this.totalUnadjustedArea), workplaceArea: Math.ceil(this.totalWorkplaceArea), compensationArea: Math.ceil(this.totalCompensationArea), employeesPerWorkplaceTypeUnadjusted: this.totalEmployeesPerWorkplaceTypeUnadjusted, - adjustedAreaInclCompensationWithAdjustmentAndCompensation: Math.ceil(this.totalAdjustedAreaInclCompensationWithAdjustmentAndCompensation), netAreaPerEmployee: Math.round(netAreaPerEmployee * 100) / 100, grossAreaPerEmployee: Math.round(grossAreaPerEmployee * 100) / 100, utilityFloorSpacePerEmployee: Math.round(utilityFloorSpacePerEmployee * 100) / 100,