-
Notifications
You must be signed in to change notification settings - Fork 29.9k
[FIX] base_import: stop importing when everything has been imported #188092
New issue
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
Closed
lvsz
wants to merge
1
commit into
odoo:17.0
from
odoo-dev:17.0-opw-4164056-stop_importing_when_everything_has_been_imported-sile
Closed
[FIX] base_import: stop importing when everything has been imported #188092
lvsz
wants to merge
1
commit into
odoo:17.0
from
odoo-dev:17.0-opw-4164056-stop_importing_when_everything_has_been_imported-sile
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rco-odoo
approved these changes
Dec 3, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks consistent with the description of the issue.
But that's not in my area of expertise.
d388add
to
ec90d26
Compare
Versions -------- - 17.0+ Steps ----- 1. Create a pricelist with 200 price rules; 2. export pricelist to xlsx; 3. delete original pricelist; 4. import pricelist, setting batch size to 100. Issue ----- Pricelist is imported with 400 price rules. Cause ----- The back-end signals there's nothing left to import by having `nextrow` be falsy[^1]. The front-end ignores this, and continues looping until it's taken as many steps as it initially planned. The upfront `totalSteps` calculation is too high when an imported record has a number of nested relational records that's larger than the batch size. Solution -------- If the ORM returns a falsy `nextrow` value, call `stopImport`. opw-4164056 [^1]: see note on f583682
ec90d26
to
3c40553
Compare
Done @Iucapad I have a feeling you're the only one familiar with this part of the codebase |
The fix seems good. Thank you |
@robodoo r+ |
robodoo
pushed a commit
that referenced
this pull request
Jan 15, 2025
Versions -------- - 17.0+ Steps ----- 1. Create a pricelist with 200 price rules; 2. export pricelist to xlsx; 3. delete original pricelist; 4. import pricelist, setting batch size to 100. Issue ----- Pricelist is imported with 400 price rules. Cause ----- The back-end signals there's nothing left to import by having `nextrow` be falsy[^1]. The front-end ignores this, and continues looping until it's taken as many steps as it initially planned. The upfront `totalSteps` calculation is too high when an imported record has a number of nested relational records that's larger than the batch size. Solution -------- If the ORM returns a falsy `nextrow` value, call `stopImport`. opw-4164056 [^1]: see note on f583682 closes #188092 Signed-off-by: Luca Vitali (luvi) <luvi@odoo.com>
This was referenced Jan 15, 2025
BurkhalterY
pushed a commit
to Burkhalter-IT/odoo
that referenced
this pull request
Jan 28, 2025
Versions -------- - 17.0+ Steps ----- 1. Create a pricelist with 200 price rules; 2. export pricelist to xlsx; 3. delete original pricelist; 4. import pricelist, setting batch size to 100. Issue ----- Pricelist is imported with 400 price rules. Cause ----- The back-end signals there's nothing left to import by having `nextrow` be falsy[^1]. The front-end ignores this, and continues looping until it's taken as many steps as it initially planned. The upfront `totalSteps` calculation is too high when an imported record has a number of nested relational records that's larger than the batch size. Solution -------- If the ORM returns a falsy `nextrow` value, call `stopImport`. opw-4164056 [^1]: see note on f583682 closes odoo#188092 Signed-off-by: Luca Vitali (luvi) <luvi@odoo.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Versions
Steps
Test files ready for import:
Issue
Pricelist is imported with 400 price rules.
Cause
The back-end signals there's nothing left to import by having
nextrow
be falsy1. The front-end ignores this, and continues looping until it's taken as many steps as it initially planned.The upfront
totalSteps
calculation is too high when an imported record has a number of nested relational records that's larger than the batch size.Solution
If the ORM returns a falsy
nextrow
value, callstopImport
.opw-4164056
Footnotes
see note on f583682 ↩