Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(add) LODEOM #2359

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
(add) LODEOM exception for allegement_general
  • Loading branch information
qbolliet committed Sep 30, 2024
commit bfe30606ebcb8e595975408e2d398e14347b4a40
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,14 @@ class allegement_general(Variable):
# Attention : cet allègement a des règles de cumul spécifiques

def formula_2005_07_01(individu, period, parameters):
# Extraction des caractéristiques d'intérêt de l'individu
stagiaire = individu('stagiaire', period)
apprenti = individu('apprenti', period)
allegement_mode_recouvrement = individu('allegement_general_mode_recouvrement', period)
exoneration_cotisations_employeur_jei = individu('exoneration_cotisations_employeur_jei', period)
exoneration_cotisations_employeur_tode = individu('exoneration_cotisations_employeur_tode', period)
non_cumulee = not_(exoneration_cotisations_employeur_jei + exoneration_cotisations_employeur_tode)
exoneration_lodeom = individu('exoneration_lodeom', period)
non_cumulee = not_(exoneration_cotisations_employeur_jei+exoneration_cotisations_employeur_tode+exoneration_lodeom)

# switch on 3 possible payment options
allegement = switch_on_allegement_mode(
Expand Down