Skip to content

Commit

Permalink
[FIX] Wrong code.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbcosta committed Apr 29, 2021
1 parent e793ea6 commit 917e88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_br_account_payment_order/models/account_move_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def create_payment_line_from_move_line(self, payment_order):
:return:
"""
cnab_state = 'added'
if self.reconciled == 'paid':
if self.reconciled:
cnab_state = 'added_paid'

self.cnab_state = cnab_state
Expand Down

0 comments on commit 917e88a

Please sign in to comment.