تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
2084 أدوات العرض

I am trying to unlink account.move.line through wizard on a button but error is getting called as "unbalanced entry debit - credit", Below is my code and screenshot of error for reference.
I can understand it wants to delete the journal items too , but how to do it?

def confirm(self):
if not self.move_lines:
raise UserError(_("Please check no any lines Available in wizard."))
move_lines = self.move_lines.filtered(lambda line: line.select_item == True)
for line in move_lines:
line.move_line_id.unlink()
return {'type': 'ir.actions.act_window_close'}


الصورة الرمزية
إهمال
أفضل إجابة

Hi,

Please try the below code using check_move_validity=False in context

def confirm(self):
if not self.move_lines:
raise UserError(_("Please check no any lines Available in wizard."))
move_lines = self.move_lines.filtered(lambda line: line.select_item == True)
for line in move_lines:
line.move_line_id.with_context(check_move_validity=False).unlink()
return {'type': 'ir.actions.act_window_close'}


Hope this will help you

Thanks


الصورة الرمزية
إهمال
الكاتب

Hey thankyou buddy, It worked.

المنشورات ذات الصلة الردود أدوات العرض النشاط
0
أبريل 23
2881
1
أكتوبر 22
5440
2
مارس 22
4387
2
مارس 22
6791
0
يونيو 24
2840