Hi everybody!!!
Please i want to add two fields type integer from the same class and to display it in a third field from the same classe. Can anyone help me please
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi everybody!!!
Please i want to add two fields type integer from the same class and to display it in a third field from the same classe. Can anyone help me please
def _add_numbers(self, cr, uid, ids, field_name, arg, context=None):
res = {}
for record in self.browse(cr, uid, ids, context=context):
res[record.id] = record.number1 + record.number2
return res
'number1':fields.float('First Value'),
'number2':fields.float('Second Value'),
'result':fields.function(_add_numbers,method= True,type='float',string='Result'),
Create an account today to enjoy exclusive features and engage with our awesome community!
RegistracijaRelated Posts | Replies | Rodiniai | Veikla | |
---|---|---|---|---|
|
4
spal. 16
|
31294 | ||
|
1
rugs. 15
|
3953 | ||
|
1
birž. 15
|
870 | ||
|
0
bal. 15
|
703 | ||
|
2
bal. 15
|
889 |