Hello community!
I have my odoo configured with multicompany and shared all products,
The point is that I need to create a company but I don't want it to share the products.
How can I achieve it?
I also need to make a personalized shopping module for this company.
Thank you
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
3
Replies
4116
Tampilan
Hi,
Following rule will help you to achieve this
<record id="product_template_rule" model="ir.rule">
<field name="name">Product Template</field>
<field name="model_id" ref="model_product_template"/>
<field name="domain_force">[('company_id', 'child_of', user.company_ids.ids)]</field>
</record>
Assign Company ID in Users and Products. Based on that you can do it.
Thanks.
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
2
Mar 19
|
8838 | ||
|
1
Okt 23
|
1858 | ||
|
0
Jul 23
|
1533 | ||
How to set one of my companies as a vendor ?
Diselesaikan
|
|
2
Des 20
|
3698 | |
|
2
Apr 19
|
3087 |
Does this mean that you want 2 companies to share the product catalog but the 3rd company should have it's own product catalog ?
Yes, it is exactly what I need ..