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
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
3
답글
4337
화면
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.
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
2
3월 19
|
9078 | ||
|
1
10월 23
|
2081 | ||
|
0
7월 23
|
1791 | ||
|
2
12월 20
|
3698 | ||
|
2
4월 19
|
3307 |
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 ..