[FW][FIX] base_import: stop importing when everything has been imported #193817
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
Forward-Port-Of: #188092
Footnotes
see note on f583682 ↩