Skip to content

Commit

Permalink
Correction
Browse files Browse the repository at this point in the history
  • Loading branch information
bsongis committed Jan 13, 2020
1 parent 6d48037 commit 07b1e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ def GetFactureFields(facture):
('montant-heure-garde', facture.montant_heure_garde, FIELD_EUROS),
('montant-jour-garde', facture.montant_jour_garde, FIELD_EUROS),
('cotisation-mensuelle', facture.cotisation_mensuelle, FIELD_EUROS),
('cotisation-mensuelle-sans-majoration-mensuelle', facture.cotisation_mensuelle - facture.last_cotisation.majoration_mensuelle, FIELD_EUROS),
('cotisation-mensuelle-sans-majoration-mensuelle', facture.cotisation_mensuelle - (facture.last_cotisation.majoration_mensuelle if facture.last_cotisation else 0), FIELD_EUROS),
('heures-cotisation-mensuelle', facture.heures_cotisation_mensuelle, FIELD_HEURES),
('heures-contractualisees', heures_contractualisees, FIELD_HEURES),
('heures-contrat', facture.heures_contrat, FIELD_HEURES),
Expand Down

0 comments on commit 07b1e24

Please sign in to comment.