Skip to Content
Menú
This question has been flagged
2 Respostes
5515 Vistes

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
Best Answer

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 Best Answer

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

Related Posts Respostes Vistes Activitat
0
d’abr. 24
1887
4
de nov. 23
6018
0
d’oct. 23
1760
0
de des. 22
2647
2
de des. 23
19379