Skip to content

Commit

Permalink
[FIX] call to super, breaking chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiken committed Aug 15, 2017
1 parent f14a886 commit da9eacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_ar_perceptions_basic/invoice.py
Expand Up @@ -126,7 +126,7 @@ def finalize_invoice_move_lines(self, move_lines):
p.write({'date': move_line['date']})

move_lines.insert(len(move_lines) - 1, (0, 0, move_line))
return move_lines
return super(account_invoice, self).finalize_invoice_move_lines(move_lines)

account_invoice()

Expand Down

0 comments on commit da9eacc

Please sign in to comment.