-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #490 from openfisca/introduce-association
Introduce `association à but non lucratif`
- Loading branch information
Showing
9 changed files
with
204 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
- period: "2016-06" | ||
description: | ||
Taxe d'apprentissage / Contribution supplémentaire à l'apprentissage | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 1467 | ||
# nécessaire pour des requêtes sur un mois de salaire : | ||
allegement_fillon_mode_recouvrement: 1 | ||
effectif_entreprise: 89 | ||
categorie_salarie: 0 # non cadre | ||
contrat_de_travail_duree: 0 | ||
entreprise_est_association_non_lucrative: 0 | ||
ratio_alternants: 0.015 | ||
output_variables: | ||
taxe_apprentissage: -.0068 * 1467 | ||
contribution_supplementaire_apprentissage: -.002 * 1467 | ||
|
||
- period: "2016-06" | ||
description: | ||
Taxe d'apprentissage / Contribution supplémentaire à l'apprentissage | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 1467 | ||
# nécessaire pour des requêtes sur un mois de salaire : | ||
allegement_fillon_mode_recouvrement: 1 | ||
effectif_entreprise: 89 | ||
categorie_salarie: 0 # non cadre | ||
contrat_de_travail_duree: 0 | ||
entreprise_est_association_non_lucrative: 1 | ||
ratio_alternants: 0.015 | ||
output_variables: | ||
taxe_apprentissage: 0 | ||
contribution_supplementaire_apprentissage: 0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
- period: "2014-01" | ||
name: Taxe sur les salaires pour les associations 1901 | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 2300 | ||
effectif_entreprise: 80 | ||
entreprise_est_association_non_lucrative: 1 | ||
output_variables: | ||
taxe_salaires: -199.462458333 | ||
# calcul : | ||
# -( | ||
# # Bareme | ||
# .0425 * (7666/12) + | ||
# 0.085 * ((15308−7666)/12) + | ||
# 0.136*(2300−15308÷12) | ||
# # Abattement spécial | ||
# - (20283/12)/80 ) | ||
|
||
- period: "2014-01" | ||
name: Pas de taxe sur les salaires par défaut | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 2300 | ||
effectif_entreprise: 80 | ||
output_variables: | ||
taxe_salaires: 0 | ||
|
||
|
||
- period: "2014-01" | ||
name: Taxe sur les salaires | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 2300 | ||
effectif_entreprise: 80 | ||
assujettie_taxe_salaires: 1 | ||
output_variables: | ||
taxe_salaires: -220.590583333 # même calcul que pour les associations, mais sans l'abattement | ||
|
||
#.0425*(7666/12)+0.085*((15308−7666)/12)+0.136*(2300−15308÷12) | ||
|
||
- period: "2014-01" | ||
name: Taxe sur les salaires (décote, franchise) | ||
relative_error_margin: 0.001 | ||
input_variables: | ||
salaire_de_base: 1467 | ||
effectif_entreprise: 1 | ||
assujettie_taxe_salaires: 1 | ||
output_variables: | ||
taxe_salaires: -60.279520833 # car la décôte s'applique au montant initial de la taxe (1287.631 €) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
setup( | ||
name = 'OpenFisca-France', | ||
version = '3.3.0', | ||
version = '3.4.0', | ||
author = 'OpenFisca Team', | ||
author_email = '[email protected]', | ||
classifiers = [ | ||
|