This question has been flagged
1 Reply
6011 Views

I am working on an Australian payroll module for Odoo and due to the complicated way our tax system works I need to be able to call a method in the employee object and pass it some parameters (such as date to and the taxable income for the payment period) which would then look up the relevant tax table and return the tax to be deducted from the employee's pay.

I have a method in hr.employee calculate_paygw(self, cr, uid, ids, date, taxin, context=None) and attempt to call it within a salary rule. The problem is that it is never called and I get an error - wrong python code defined for salary rule.

Is it possible to call a method on an object within a salary rule? If so, how do I do it?

Avatar
Discard
Best Answer

Try this code in salary rule

result = (employee.calculate_paygw(date,taxin)

Avatar
Discard

Hi !!! This solution doesn't work for me. Is there any other trick available to call method or to define new object for custom module within a SALARY RULE ?

Your code should be like below In Python file: def calculate_paygw(self, cr, uid, ids, employee, date_from, date_to, context=None): # your code return total In Rule: result = employee.calculate_paygw(payslip.employee_id,payslip.date_from,payslip.date_to) I hope its work else send me your code....