Skip to content

T3058 FIX offbalance when positive exchange rate#275

Merged
ecino merged 1 commit into
17.0from
17.0-offbalance-overpayment
Mar 18, 2026
Merged

T3058 FIX offbalance when positive exchange rate#275
ecino merged 1 commit into
17.0from
17.0-offbalance-overpayment

Conversation

@ecino
Copy link
Copy Markdown
Member

@ecino ecino commented Mar 16, 2026

No description provided.

@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request resolves an issue in the off-balance sponsorship module where positive exchange rate fluctuations could lead to an incorrect distribution of funds. The changes introduce a mechanism to properly account for and distribute any gains realized from favorable exchange rates, ensuring financial accuracy and preventing off-balance discrepancies.

Highlights

  • Bug Fix: Off-balance Exchange Rate Handling: Addressed a bug where positive exchange rate gains were not correctly distributed in off-balance accounts, leading to potential imbalances.
  • Exchange Rate Gain Distribution Logic: Implemented new logic in _get_onbalance_amounts_by_line to ensure that any remaining income (gain) resulting from a favorable exchange rate is equally distributed among the corresponding on-balance income lines.
  • New Test Case for Overpayment Distribution: Introduced a new test case, test_overpayment_distribution, to validate the correct equal distribution of exchange rate gains in off-balance reconciliation scenarios.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • account_offbalance_sponsorship/README.rst
    • Updated list formatting for improved readability.
  • account_offbalance_sponsorship/models/account_move_line.py
    • Added logic to distribute remaining income equally when a gain is made due to exchange rate differences.
  • account_offbalance_sponsorship/tests/test_offbalance_reconciliation_usecases.py
    • Added test_overpayment_distribution to verify the equal distribution of exchange rate gains across on-balance lines.
  • recurring_contract/README.rst
    • Updated list formatting for improved readability.
Activity
  • No specific activity (comments, reviews, progress updates) has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request addresses an issue with handling positive exchange rate differences for off-balance accounts. The changes introduce logic to distribute exchange rate gains equally across the relevant on-balance lines, and a new test case has been added to validate this behavior. My review identified a potential issue in how the currency is determined for checking the remaining amount, which could be fragile in scenarios involving multiple invoices with different currencies. I've provided a suggestion to make this logic more robust by using the currency from the payment transaction itself.

Comment on lines +266 to +271
if (
onbalance_amounts_by_line
and invoice_lines
and not invoice_lines[0].company_currency_id.is_zero(available_income)
and invoice_lines[0].currency_id.is_zero(available_income_currency)
):
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The condition to check for remaining income from exchange rate gains uses invoice_lines[0].currency_id. This is fragile because it assumes the first invoice line's currency is the correct one for checking available_income_currency. This assumption may not hold true in scenarios with multiple invoices (especially if they have different currencies) or if the first invoice is in the company currency while the payment is in a foreign currency.

To make this more robust, you should use the currency from the payment lines (income_move_lines), as available_income_currency is derived from them. This ensures the check is performed using the correct currency context.

Suggested change
if (
onbalance_amounts_by_line
and invoice_lines
and not invoice_lines[0].company_currency_id.is_zero(available_income)
and invoice_lines[0].currency_id.is_zero(available_income_currency)
):
if (
onbalance_amounts_by_line
and invoice_lines
and not invoice_lines[0].company_currency_id.is_zero(available_income)
and income_move_lines.currency_id
and income_move_lines.currency_id.is_zero(available_income_currency)
):

@ecino ecino merged commit 215795a into 17.0 Mar 18, 2026
1 check passed
@ecino ecino deleted the 17.0-offbalance-overpayment branch March 18, 2026 07:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant