Skip to Content
Menu
This question has been flagged
2 Replies
2058 Views

I am using multi-company , when I want to make a purchase is absolutely show all products of all companies, wish that products that have been set in each company are displayed.

Estoy utilizando multicompanias, cuando quiero realizar una compra se muestran absolutamente todos los productos de todas las companias, deseo que se muestren los productos que han sido configurados en cada compania.

Avatar
Discard
Author Best Answer

Thanks, I overwrote the search method , and it works

user_company_id = self.env['res.users'].search([('id', '=', self._uid)], limit=1).company_idcompany_id = self._context.get('company_id') or user_company_id.idargs += [('company_id', '=', company_id)]return super(product_product, self).search(args)
Avatar
Discard
Best Answer

It's simple,

In product you should have set company, and in that have company_id field.

And in purchase order also have company_id field,

You just have to inherit form view of purchase order and set domain in purchase order line for product_id field, domain is below.

domain = "[('company_id','=',parent.company_id)]"

Avatar
Discard