Bonjour,
Un client a un accord d’entreprise où on accorde des CP d’ancienneté supplémentaire selon la date d’entrée. je n’ai trouvé que les formules avec la date d’ancienneté, avez vous un exemple avec la date d’entrée?
j’avais mis cela
Begin
Jours = 0
If Bul.SortiCeMois = False Then
If Emp.Anciennete > 12 then Jours = 1
If Emp.Anciennete > 36 then Jours = 2
If Emp.Anciennete > 60 then Jours = 3
If Emp.Anciennete > 84 then Jours = 4
If Emp.Anciennete > 108 then Jours = 5
If Emp.Anciennete > 132 then Jours = 6
If Stockvar("CPANCIENNETE") <> 0 then Jours = Stockvar("CPANCIENNETE")
If Stockvar("CPANCIENNETE") = -1 then Jours = 0
If Jours <> 0 then
Exec("Lprime_D02")
LigneNeutre = True
MethodeCalcul = 99
Bases = Jours
Liblong = "Jours de congés ancienneté acquis"
Exec("GenereLprime")
LigneNeutre = False
Endif
Endif
End
Mais ça tient compte de la date d’ancienneté…
Merci
Alice