2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-08-03 03:01:29 +00:00

Company split search (#620)
Some checks are pending
Android / build (push) Waiting to run
CI / test (push) Waiting to run
iOS / build (push) Waiting to run

* 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
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 = [];