Hello, I have Odoo 8. I am developing a module and I want to override "write" method to check that a special field (for instance: "field_a") not changes after edition. How can I check this?
In the creation the field can assume any value.
Thanks!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello, I have Odoo 8. I am developing a module and I want to override "write" method to check that a special field (for instance: "field_a") not changes after edition. How can I check this?
In the creation the field can assume any value.
Thanks!
José,
Here you go!
def write(cr, uid, ids, vals, context=None):
if not vals.has_key(''field_a):
print "Your Field A is not updated..."
res = super(class_name, self).write(cr, uid, ids, vals, context=context)
return res
This might helps you!
Regards,
Anil.
try this ;
def write(self,cr,uid,ids,vals,context=None): if vals.get('field_a',False): ##### if pass the condition means that 'field_a' has been updated return super(your_class_name, self).write(cr, uid, ids, vals, context=context) |
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
7
mai 20
|
6320 | ||
|
0
avr. 16
|
2984 | ||
Hide field in a tree view
Résolu
|
|
11
sept. 21
|
32022 | |
|
2
janv. 24
|
14928 | ||
|
2
déc. 17
|
4114 |