def get_total_charges_salariales(self):
total = 0.0
for r in self.get_charges_salariales():
- total += r.montant_euro()
+ total += r.montant_euros()
return total
def get_charges_patronales(self):
def get_total_charges_patronales(self):
total = 0.0
for r in self.get_charges_patronales():
- total += r.montant_euro()
+ total += r.montant_euros()
return total
def get_salaire_brut(self):
"""
total = 0.0
for r in self.get_remunerations_brutes():
- total += r.montant_euro()
+ total += r.montant_euros()
return total
def get_salaire_net(self):
"""
total_charges = 0.0
for r in self.get_charges_salariales():
- total_charges += r.montant_euro()
+ total_charges += r.montant_euros()
return self.get_salaire_brut() - total_charges
def get_couts_auf(self):
"""
total_charges = 0.0
for r in self.get_charges_patronales():
- total_charges += r.montant_euro()
+ total_charges += r.montant_euros()
return self.get_salaire_net() + total_charges
def get_remunerations_tierces(self):
def get_total_remunerations_tierces(self):
total = 0.0
for r in self.get_remunerations_tierces():
- total += r.montant_euro()
+ total += r.montant_euros()
return total
def valide(self):