Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
5454 Vistas

what I want : if an employee is a Male then his deduction tax will be 600

and  if an employee is a Female then his deduction tax will be 400

I tried in Payroll >> Salary Rules >> deduction tax

by using this code in 

Computation: 

if (hr.employee.gender== "male"):
 result = ((categories.BASIC + categories.ALW) -500)

else if (hr.employee.merital== "married"):
 result =((categories.BASIC + categories.ALW) -400)
I didn't get computation, I dont know how to fix it 

can anybody please help me.


Avatar
Descartar
Mejor respuesta

Hi,

Try this

if (employee.gender == 'male'):
     result = ((categories.BASIC + categories.ALW) -500)
elif (employee.marital == 'married'):
     result = ((categories.BASIC + categories.ALW) -400)


The " else if " will checks if the employee not a male and if is married (not male and married) [I just wrote it as yours]

Hope it'll work

Avatar
Descartar
Autor Mejor respuesta

sorry for reply here because of my carma.

Thank you for your reply.....
I tried by your code but... it shows me Error: 

Wrong python code defined for salary rule Federal Tax (FT).

Avatar
Descartar

Hi, I just copy&paste the code below and it works with me ... can you paste your code , maybe you missed something ...

Autor

it works ... thx a lot

Publicaciones relacionadas Respuestas Vistas Actividad
0
abr 24
1825
4
nov 23
5860
0
oct 23
1669
0
dic 22
2547
2
dic 23
19230