We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know if it's a bug or I misunderstand something
In 12.0 reverse_entry_id is set in the original move and point to the reverse move https://github.com/odoo/odoo/blob/12.0/addons/account/models/account_move.py#L469
reverse_entry_id
In 13.0 reversed_entry_id is set in the reverse move and point to the original move https://github.com/odoo/odoo/blob/13.0/addons/account/models/account_move.py#L2247
reversed_entry_id
But in the pre-migration we rename reverse_entry_id to reversed_entry_id and so point in the wrong direction https://github.com/OCA/OpenUpgrade/blob/13.0/addons/account/migrations/13.0.1.1/pre-migration.py#L37
The text was updated successfully, but these errors were encountered:
Yes, it's a mistake. Can you please propose the fix doing?:
OpenUpgrade/addons/account/migrations/13.0.1.1/post-migration.py
Line 583 in 39543a8
NULL
Sorry, something went wrong.
No branches or pull requests
I don't know if it's a bug or I misunderstand something
In 12.0
reverse_entry_id
is set in the original move and point to the reverse movehttps://github.com/odoo/odoo/blob/12.0/addons/account/models/account_move.py#L469
In 13.0
reversed_entry_id
is set in the reverse move and point to the original movehttps://github.com/odoo/odoo/blob/13.0/addons/account/models/account_move.py#L2247
But in the pre-migration we rename
reverse_entry_id
toreversed_entry_id
and so point in the wrong directionhttps://github.com/OCA/OpenUpgrade/blob/13.0/addons/account/migrations/13.0.1.1/pre-migration.py#L37
The text was updated successfully, but these errors were encountered: