Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
3487 Tampilan

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
Buang
Jawaban Terbai

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
Buang
Post Terkait Replies Tampilan Aktivitas
3
Feb 16
5827
1
Mar 15
11140
1
Mar 15
5403
2
Mei 25
1211
0
Mar 25
1552