Commit 700181b2 by Damien Moulard

update comment

parent c51b7ec4
...@@ -9,9 +9,10 @@ use Doctrine\ORM\Mapping as ORM; ...@@ -9,9 +9,10 @@ use Doctrine\ORM\Mapping as ORM;
* @ORM\Entity(repositoryClass=ExternalDataTheoreticalCotisationRuleRepository::class) * @ORM\Entity(repositoryClass=ExternalDataTheoreticalCotisationRuleRepository::class)
* *
* This class stores data used to calculate the theoritical cotisation amount of a Adherent. * This class stores data used to calculate the theoritical cotisation amount of a Adherent.
* For each allocation bracket (allocationAmount), and for each income bracket (incomeMin < x <= incomeMax), * For each allocation bracket (allocationAmount), and for each income bracket (incomeMin < x <= incomeMax):
* cotisation is calculated as such : f(x) = coef * x + intercept ; * if fixedValue is set: f(x) = fixedValue
* with x as the Adherent's monthly income. * else cotisation is calculated as such : f(x) = coef * x + intercept ;
* with x as the Adherent's monthly income.
* *
* This data is used for visualisation purposes in an external Metabase instance. * This data is used for visualisation purposes in an external Metabase instance.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment