2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-22 01:06:50 +00:00

Implement Latest parts dashboard widget (#11540)

* Implement Latest parts dashboard widget

* Removed unused variables

* Fix StylishText include
This commit is contained in:
Miklós Márton
2026-05-04 12:25:48 +02:00
committed by GitHub
parent f4b7999f0f
commit cc60692388
4 changed files with 111 additions and 2 deletions
@@ -1,11 +1,14 @@
"""InvenTree API version information."""
# InvenTree API version
INVENTREE_API_VERSION = 481
INVENTREE_API_VERSION = 482
"""Increment this API version number whenever there is a significant change to the API that any clients need to know about."""
INVENTREE_API_TEXT = """
v482 -> 2026-03-15 : https://github.com/inventree/InvenTree/pull/11540
- Add id to the ordering fields of the Parts model
v481 -> 2026-04-28 : https://github.com/inventree/InvenTree/pull/11825
- Adds new "bom" ruleset and associated permissions for BOM management, separate from the "part" ruleset which remains focused on part management
+1
View File
@@ -1057,6 +1057,7 @@ class PartList(
filter_backends = SEARCH_ORDER_FILTER
ordering_fields = [
'id',
'name',
'creation_date',
'IPN',