Skip to Content
Menú
This question has been flagged
1 Respondre
3878 Vistes

I have company_id field in stock.location which is many2one. When I change the field type from many2one to many2many by inheriting the model in custom addon, it shows the following error- 


My code:


class Location(models.Model):
_inherit = "stock.location"

company_id = fields.Many2many("res.company", string='Company12345', required=True

The error:

TypeError: Type of related field stock.quant.company_id is inconsistent with stock.location.company_id - - -


Any idea?

Avatar
Descartar
Best Answer

Hi,

Try as follows:

company_id = fields.Many2many("res.company", string="Company", required=True, related='')

Thanks

Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
d’oct. 21
1785
1
de març 23
2210
1
d’ag. 21
2828
1
de jul. 25
2189
2
de jul. 25
7692