From 4691dd3054d633b3af32e4d0e8e6798918c0e272 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 13 Jul 2021 08:34:30 +1000 Subject: [PATCH] URL fix --- lib/inventree/stock.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inventree/stock.dart b/lib/inventree/stock.dart index ba8685d4..827553b6 100644 --- a/lib/inventree/stock.dart +++ b/lib/inventree/stock.dart @@ -459,7 +459,7 @@ class InvenTreeStockItem extends InvenTreeModel { Future countStock(BuildContext context, double q, {String? notes}) async { - final bool result = await adjustStock(context, "/stock/count", q, notes: notes); + final bool result = await adjustStock(context, "/stock/count/", q, notes: notes); return result; }