Implement multi-note support (#883)

* Implement multi-note support

Ref: https://github.com/inventree/InvenTree/pull/11971

* Bump iOS target
This commit is contained in:
Oliver
2026-09-12 08:41:11 +10:00
committed by GitHub
parent 923479c38c
commit 5b40a0d3b6
17 changed files with 529 additions and 118 deletions
+5
View File
@@ -344,6 +344,11 @@ class InvenTreeAPI {
// Ref: https://github.com/inventree/InvenTree/pull/12011
bool get supportsStockItemCreationDate => apiVersion >= 496;
// Does the server support the "multi notes" API?
// (Multiple HTML notes may be attached to a single model instance)
// Ref: https://github.com/inventree/InvenTree/pull/11971
bool get supportsMultiNotes => apiVersion >= 537;
// Cached list of plugins (refreshed when we connect to the server)
List<InvenTreePlugin> _plugins = [];