From: Joe Hunt Date: Fri, 31 Jul 2020 08:04:03 +0000 (+0200) Subject: Negative Inventory Adjustments not working anymore (2.4.8). Fixed X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=c82b50895aad2e028092a3b362783149f81d8906;p=fa-stable.git Negative Inventory Adjustments not working anymore (2.4.8). Fixed --- 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,