İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
2307 Görünümler

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
Vazgeç
Üretici En İyi Yanıt

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
Vazgeç
En İyi Yanıt

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
Vazgeç