Skip to content

Commit

Permalink
[FIX] Fix Transsacctions in installment
Browse files Browse the repository at this point in the history
closes #388

Signed-off-by: Juan José Scarafía <jjs@adhoc.com.ar>
  • Loading branch information
maq-adhoc committed Dec 6, 2023
1 parent 7abc32c commit 48c6397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion card_installment/models/account_card_installment.py
Expand Up @@ -77,5 +77,5 @@ def map_installment_values(self, amount_total):
'base_amount': amount_total,
'amount': amount,
'fee': amount - amount_total,
'description': _('%s installment of %.2f (total %.2f)' % (self.divisor, amount / self.divisor, amount))
'description': _('%s installment of %.2f (total %.2f)') % (self.divisor, amount / self.divisor, amount)
}

0 comments on commit 48c6397

Please sign in to comment.