Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
5608 Widoki

I created a odoo custom module using python

The problem is that the records created in one company can be seen from another company 

how to make the records accruable by the company that created them only.

Awatar
Odrzuć
Najlepsza odpowiedź

Hi, 

You can see following for this, it has complete explanation for company_dependent fields alongwith access restriction and python code:

https://youtu.be/GkNgc-fZO-I

Hope it helps,

Thanks

Awatar
Odrzuć
Najlepsza odpowiedź

Normally, you should have a Global Record Rule like this:

['|',
('company_id','in', company_ids),
('company_id','=',False)]
You will find this Record Rule exists for many Models in Odoo.


This might also be helpful: https://www.odoo.com/documentation/13.0/howtos/company.html

Awatar
Odrzuć
Autor

I mean separate completely like accounting for example

Yes, Record Rules are how Odoo separates companies.

Powiązane posty Odpowiedzi Widoki Czynność
0
lis 21
2589
1
gru 20
9061
2
cze 20
5481
1
kwi 20
9620
8
mar 20
5303