Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3951 Переглядів

Hello, community.

I'm having an odd error due to "rules rejected on a model",


('The operation requested  ("read" en "Product catalog" (product.catalog)) was rejected by any of the following rules:\n\n\n(Records: False (id=00), User: Administrator (id=2))', None)


I've already check for read rights::

access_product_catalog,product.catalog,model_product_catalog,,1,0,0,0

I've also been trying other 'hacks' but the same odd result:

  • resigning rights,

  • creating new rule with [(1,'=',1)] domain;

  • sudo()

Any suggestions?

Thanks in advance

Аватар
Відмінити
Автор Найкраща відповідь

Hi, "mistery" solved. 

The bug was due a tuple instead a string/array into domain.

domain = [ ('id', 'in', (5,)) ]

self.search(domain)


So, now:

domain = [ ('id', 'in', [5]) ]

..

So, I don't get why the bug was related with security rules.. a tale for my childrens.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
5
черв. 20
10041
1
черв. 25
4586
0
черв. 25
310
0
січ. 25
1413
0
січ. 25
1441