跳至內容
選單
此問題已被標幟
11708 瀏覽次數

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.

頭像
捨棄

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

self.action_confirm()

this will make in RecursionError

相關帖文 回覆 瀏覽次數 活動
2
12月 24
4172
1
11月 24
2923
2
4月 23
17762
1
3月 23
2212
4
8月 24
23827