Skip to content

Commit

Permalink
[FIX] account_reconcile_oca: use lazy translation
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiBForgeFlow committed Feb 25, 2025
1 parent 1ba580c commit 203719b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions account_reconcile_oca/models/account_bank_statement_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
from odoo import Command, _, api, fields, models, tools
from odoo.exceptions import UserError
from odoo.fields import first
from odoo.tools import float_compare, float_is_zero
from odoo.tools import LazyTranslate, float_compare, float_is_zero

_lt = LazyTranslate(__name__, default_lang="en_US")


class AccountBankStatementLine(models.Model):
Expand Down Expand Up @@ -455,7 +457,7 @@ def _get_manual_reconcile_vals(self):
"account_id": (
[self.manual_account_id.id, self.manual_account_id.display_name]
if self.manual_account_id
else [False, _("Undefined")]
else [False, _lt("Undefined")]
),
"amount": self.manual_amount,
"credit": -self.manual_amount if self.manual_amount < 0 else 0.0,
Expand Down Expand Up @@ -907,7 +909,7 @@ def _unreconcile_bank_line_keep(self):
default_values_list = [
{
"date": move.date,
"ref": _("Reversal of: %s", move.name),
"ref": _lt("Reversal of: %s", move.name),
}
for move in to_reverse
]
Expand Down

0 comments on commit 203719b

Please sign in to comment.