Skip to Content
मेन्यू
This question has been flagged
2 Replies
7375 Views

 workorder_count = fields.Integer('# Work Orders', compute='_compute_workorder_count')

"workorder+=1"  it doesn't work

Avatar
Discard

Can You Explain Your Question in Brief?

Best Answer

Hi,

workorder_count = fields.Integer('# Work Orders', compute='_compute_workorder_count')

The above line is field declaration and if you have to increment the value on the field workorder_count, write a function in the name you have mentioned in the compute "_compute_workorder_count".

@api.depends('workorder_count')
def _compute_workorder_count(self):
     self.workorder_count += 1


Thanks

Avatar
Discard
Related Posts Replies Views Activity
0
अग॰ 22
2382
1
जुल॰ 22
20074
0
अप्रैल 22
3056
3
सित॰ 21
3214
2
सित॰ 21
4505