Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
huulbaek committed Nov 21, 2023
1 parent 7f38670 commit 2d56e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/calculations/calculator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2d56e93

Please sign in to comment.