This question has been flagged
1 Reply
2560 Views

Hi,

            I am new to open erp development. I am working on Hr module. i want to use hr_salary_rule class of hr_payroll module in hr_employee class of hr modue for that i have change the _openerp_.py file of hr and added hr_payroll as depends module list. but still i am not able to use the hr_salary_rule class in hr_employee class. Do i need to do something else for that or i am missing something.

Thanks & Regards,

Yusuf ali

Avatar
Discard
Best Answer

You got the first part right.. now

you need actual file for your code, let's call it hr_salary.py . 
next, you need to add import hr_salary  in __init__.py of your module 

Now you are ready to inherit the class hr_employee, in hr_salary.py start with:

class hr_salary_rule(osv.Model):
     _inherit = "hr.salary.rule"
     # the rest of your class code goes here

After you have done coding, save your file, and restart openerp service...
 

hope it helps...

 

 

Avatar
Discard