We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3f2504 commit cee2fd0Copy full SHA for cee2fd0
openfisca_france/model/prelevements_obligatoires/prelevements_sociaux/contributions_sociales/base.py
@@ -49,7 +49,7 @@ def montant_csg_crds_bareme(base_avec_abattement = None, base_sans_abattement =
49
round_base_decimals = 2,
50
) + base_sans_abattement
51
if indicatrice_taux_plein is None and indicatrice_taux_reduit is None:
52
- return -law_node.taux.calc(base)
+ return -law_node.calc(base)
53
elif indicatrice_taux_plein is not None and indicatrice_taux_reduit is not None and indicatrice_taux_intermediaire is None:
54
return -(
55
law_node.taux_plein.calc(base) * indicatrice_taux_plein
0 commit comments