Company split search (#620)

* Allow split search by company type

* Bump release notes
This commit is contained in:
Oliver 2025-02-26 22:36:29 +11:00 committed by GitHub
parent efe8db138b
commit dc314d1c26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 102 additions and 4 deletions

View file

@ -340,6 +340,9 @@ class InvenTreeAPI {
// Ref: https://github.com/inventree/InvenTree/pull/8403
bool get supportsPurchaseOrderDestination => isConnected() && apiVersion >= 276;
// Supports separate search against "supplier" / "customer" / "manufacturer"
bool get supportsSplitCompanySearch => isConnected() && apiVersion >= 315;
// Cached list of plugins (refreshed when we connect to the server)
List<InvenTreePlugin> _plugins = [];