Skip to content
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

Stock count fix #738

Merged
merged 15 commits into from
Apr 19, 2020
Merged

Conversation

SchrodingersGat
Copy link
Member

@SchrodingersGat SchrodingersGat commented Apr 19, 2020

Wow, what a ride!

This PR is a fix for #723 which appeared to be a simple bug but as it turns out, it was quite complicated:

There exists a "bug" in django where multiple query annotations may cause the returned results to be corrupted (which is what was reported). The fix is to set distinct=True when forming the annotations.

However, the distinct parameter is not available for Sum aggregations until django3..

SO: This PR also migrates to Django3

There were a few updates to dependencies required to make this work.

As an aside the refactoring work required to fix the reported bug has improved query efficiency and also Django3 seems to run a lot faster!

References

- This is required to fix some issues with query aggregations as "distinct=True" cannot be set for Sum operations until django 3.0
- Multiple annotations on the same queryset were returning invalid results
- Ref: https://code.djangoproject.com/ticket/10060
- Ref: https://docs.djangoproject.com/en/3.0/topics/db/aggregation/#combining-multiple-aggregations
- django-dbbackup required updating for django3 support
- django-qr-code for now is disabled, a new solution needs to be worked out
- Ensure that "distinct=True" is set!
- ARRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH
- Perform a single call to get starred parts for current user and record results
- This provides significant speed improvements
- Remove old manual serializer
- More data prefetching
Official package does not (yet) support django 3.0
- django-mptt required updating to fix a bug where tree was not being rebuild on item save
New tablib is broked (at least in the admin interface)
- Some more work needed here to cut down on database hits
- Display django version in "about" dialog
- Not working in travis for some reason?
- But they are working locally...
@SchrodingersGat SchrodingersGat merged commit 654f5d3 into inventree:master Apr 19, 2020
@SchrodingersGat SchrodingersGat deleted the stock-count-fix branch April 19, 2020 15:26
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.

Stock Count Calculation Django 3.X Upgrade
1 participant