Add extra filtering options for supplier parts (#868)

* Add extra filtering options for supplier parts

* Update release notes

* Allow edit of "primary" field
This commit is contained in:
Oliver
2026-08-28 21:45:16 +10:00
committed by GitHub
parent 94762fd523
commit 93a19b77f8
6 changed files with 42 additions and 0 deletions
@@ -65,6 +65,14 @@ class _PaginatedSupplierPartListState
};
}
if (InvenTreeAPI().supportsSupplierPartPrimaryField) {
filters["primary"] = {
"label": L10().filterPrimary,
"help_text": L10().filterPrimaryDetail,
"tristate": true,
};
}
return filters;
}