Skip to content

Commit

Permalink
EHT fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pallvigrover committed Feb 21, 2024
1 parent 3d155e6 commit d309780
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private decimal EmployerHealthTax
_ => 0m
};

return ehtRate * TotalHRRenumeration;
return (ehtRate/100) * TotalHRRenumeration;
}
}

Expand Down Expand Up @@ -203,7 +203,7 @@ public async Task<bool> Calculate()
GrandTotal_PF = TotalParentFees,

//Calculation Date
NewCalculationDate = DateTime.UtcNow
//NewCalculationDate = DateTime.UtcNow
};

_fundingResult = FundingResult.AutoCalculated(_funding.ofm_funding_number, fundingAmounts, null);
Expand Down

0 comments on commit d309780

Please sign in to comment.