Skip to Content
Menu
This question has been flagged
2 Replies
5022 Views

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
Discard
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
Discard
Author 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
Discard

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

Author

it works ... thx a lot

Related Posts Replies Views Activity
0
Apr 24
396
4
Nov 23
4242
0
Oct 23
377
0
Dec 22
1334
2
Dec 23
17347