Skip to content

Commit

Permalink
[FIX] account_interests: Fix when having interval to run interest
Browse files Browse the repository at this point in the history
closes #654

closes #659

X-original-commit: d7817f6
Related: ingadhoc/odoo-academic#189
Related: ingadhoc/odoo-academic#193
Signed-off-by: Ignacio Cainelli <[email protected]>
Signed-off-by: Camila Vives <[email protected]>
Signed-off-by: rov-adhoc <[email protected]>
  • Loading branch information
rov-adhoc committed Jan 30, 2025
1 parent f5550a0 commit 2b5a1e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions account_interests/models/res_company_interest.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,9 @@ def _prepare_info(self, to_date):
else:
res = _(
'Deuda Vencida al %s de periodos anteriores con tasa de interés de %s. '
'Deuda Vencida al %s del ultimo periodo con tasa de interés de %s'
) , (to_date_format, self.past_due_rate, to_date_format, self.rate)
'Deuda Vencida al %s del ultimo periodo con tasa de interés de %s',
to_date_format, self.past_due_rate, to_date_format, self.rate
)
return res

def _prepare_interest_invoice(self, partner, debt, to_date, journal):
Expand Down

0 comments on commit 2b5a1e7

Please sign in to comment.