Skip to Content
Menu
This question has been flagged
1 Odpoveď
4090 Zobrazenia

Somehow I can't define a local class variable that I can read and write to in multiple methods.


class Queue(models.Model):
​myVar = {}

​def method(self):
​​ ​self.myVar = {"var":"value"}


Error:

ValueError: : "'module.model' object attribute 'var' is read-only" while evaluating


How would this be approached in Odoo? 

Avatar
Zrušiť
Best Answer

Hi

perhaps you can try to access from class level using dot notation.

Therefore, the solution might be close to :

Queue.myVar = {"var":"value"}

Queue is the class and myVar is part of the Queue class.

Or, if it still unable to access it you need to identify the upper level like the module name or the file name like

​YourModule.YourFile.Queue.myVar = {"var":"value"}

Best regards,

Altela (altelasoftware.com)

Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
3
feb 16
6343
1
mar 15
11682
1
mar 15
5819
2
máj 25
1846
0
mar 25
2070