← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 743242] Re: hr_employee category field definition swapped after update from trunk

 

Hello,

You should follow the syntax of many2many relationship before it was wrong and fixed by related team. 
https://bugs.launchpad.net/openobject-addons/+bug/731332 

You can consider the following related link for documentation.
http://doc.openerp.com/v6.0/developer/2_5_Objects_Fields_Methods/field_type.html

So this is not a bug and I am closing this issue.

Thanks.

** Changed in: openobject-addons
       Status: New => Invalid

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/743242

Title:
  hr_employee category field definition swapped after update from trunk

Status in OpenERP Modules (addons):
  Invalid

Bug description:
  After Update from trunk:

  'category_ids': fields.many2many('hr.employee.category',
  'employee_category_rel', 'emp_id', 'category_id', 'Category'),

  The right one is:

    'category_ids': fields.many2many('hr.employee.category',
  'employee_category_rel','category_id','emp_id','Category'),

  Please correct this, like above.



References