Transfer order (#854)

* Add API version check

* Implement basic transfer order support

* add link to drawer

* Adjust dashboard display order

* Support transfer order allocation detail

* Add progress bar

* Enable scan of transfer order
This commit is contained in:
Oliver
2026-07-14 15:37:43 +10:00
committed by GitHub
parent 8568187b38
commit 0fe2bdd507
13 changed files with 1565 additions and 0 deletions
+4
View File
@@ -330,6 +330,10 @@ class InvenTreeAPI {
// Ref: https://github.com/inventree/InvenTree/pull/11963
bool get supportsNewUserEndpoints => apiVersion >= 490;
// Does the server support TransferOrder model
// Ref: https://github.com/inventree/InvenTree/pull/11281
bool get supportsTransferOrders => apiVersion >= 492;
// Does the server support the "creation_date" field on the StockItem model?
// Ref: https://github.com/inventree/InvenTree/pull/12011
bool get supportsStockItemCreationDate => apiVersion >= 496;