From c82b50895aad2e028092a3b362783149f81d8906 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Fri, 31 Jul 2020 10:04:03 +0200 Subject: [PATCH] Negative Inventory Adjustments not working anymore (2.4.8). Fixed --- inventory/includes/db/items_adjust_db.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inventory/includes/db/items_adjust_db.inc b/inventory/includes/db/items_adjust_db.inc index 9a45e0f7..83c33c4a 100644 --- a/inventory/includes/db/items_adjust_db.inc +++ b/inventory/includes/db/items_adjust_db.inc @@ -35,8 +35,10 @@ function add_stock_adjustment($items, $location, $date_, $reference, $memo_) if ($SysPrefs->loc_notification() == 1 && $line_item->quantity < 0) { + $tmp = $line_item->quantity; $chg = $line_item; $chg->quantity= -$chg->quantity; // calculate_reorder_level expect positive qty $loc = calculate_reorder_level($location, $chg, $st_ids, $st_names, $st_num, $st_reorder); + $line_item->quantity = $tmp; } add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $reference, -- 2.30.2