Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged

Hello Community,

When I am importing xlsx sheet than getting 'RecursionError: maximum recursion depth exceeded' error. I am using odoo v13. My aim is that when 'log_status' changed to 'Confirmed' state then one assigned method should be called. for this, I am using a write method for calling this method. My python code is below:

    @api.model
def write(self, vals):
record = super(Transaction_log, self).write(vals)
if 'log_status' in vals and vals.get('log_status') == 'Confirmed':
self.action_confirm()
return record


def action_confirm(self):
self.write({'log_status': 'Confirmed'})
self.action_performed.create({'log_status': 'Confirmed', 'trans_log': self.id,
'performed_by': self.env.user.id, 'performed_time': datetime.now()})
return True

Thanks in advance.

Avatar
Opusti

change this if 'log_status' in vals and vals.get('log_status') == 'Confirmed':

self.action_confirm()

this will make in RecursionError

Related Posts Odgovori Prikazi Aktivnost
2
dec. 24
3660
1
nov. 24
2358
2
apr. 23
16516
1
mar. 23
1702
4
avg. 24
22805