Hi, While developing a new module, I have inherited "hr.employee" and added an "hod_id" field like this:
class rad_rb_employee(osv.osv): _name = 'hr.employee' _inherit = 'hr.employee' _columns = { 'hod_id' : fields.many2one('hr.employee', 'Head of the department') } rad_rb_employee() As expected, the field is reflecting in "hr.employee" object, but not in "hr.employee.form" view of the existing HR module. Needing help on what is the best way to have the new field reflected in the employee form view. thanks ------------------------ Sanjay RAD Solutions Private Limited sanjay at radsolutions co in -------------------- m2f -------------------- -- http://www.openerp.com/forum/viewtopic.php?p=27206#27206 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman/listinfo/tinyerp-users
