I try to override many2one field with many2many
property_product_pricelist = fields.Many2many('product.pricelist',
string="Sale Pricelist",
help="This pricelist will be used, instead of the default one, for sales to the current partner")
and i get this error when try to save values
File "/home//workspace/odoo-9.0/openerp/models.py", line 5384, in _browse
env.prefetch[cls._name].update(ids)
TypeError: unhashable type: 'list'
also i tryid like this
property_product_pricelist = fields.Many2many('product.pricelist', column1='partner_id', column2='pricelist_id')
but get
ProgrammingError: column product_pricelist_res_partner_rel.pricelist_id does not exist
LINE 1: SELECT product_pricelist_res_partner_rel.pricelist_id, produ...