Display more output information in "build allocated stock" table#11276
Display more output information in "build allocated stock" table#11276SchrodingersGat merged 12 commits intoinventree:masterfrom
Conversation
SchrodingersGat
commented
Feb 10, 2026
- Closes UI: Build Order "Allocated Stock" table shows stock item ID under "build output" #11268
- Adds output detail to API
- Refactor multiple tables to use single rendering function
✅ Deploy Preview for inventree-web-pui-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #11276 +/- ##
==========================================
+ Coverage 88.06% 88.08% +0.02%
==========================================
Files 1292 1292
Lines 58527 58481 -46
Branches 1964 1943 -21
==========================================
- Hits 51539 51511 -28
+ Misses 6499 6486 -13
+ Partials 489 484 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
Merging this PR will degrade performance by 35.94%
Performance Changes
Comparing Footnotes |
| install_into_detail = enable_filter( | ||
| StockItemSerializer( | ||
| source='install_into', | ||
| read_only=True, | ||
| allow_null=True, | ||
| label=_('Install Into'), | ||
| part_detail=False, | ||
| location_detail=False, | ||
| supplier_part_detail=False, | ||
| path_detail=False, | ||
| ), | ||
| False, | ||
| prefetch_fields=['install_into', 'install_into__part'], | ||
| ) |
There was a problem hiding this comment.
Have you looked into the performance impact of this?
There was a problem hiding this comment.
There is some performance hit by adding an enable_filter - even if it is not used in the final API output.
#11073 would be useful here
