X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fadjustments.php;h=dc14d93ef4a31edfbd3d3802c1edcda6cd29c1a6;hb=ec51d9a922df61d39de8444cd0a3aaf51ebcbf2b;hp=cba646365a9e7e7e91688e09f77f3d31881edb3c;hpb=0952c82fc90f8ff443335d371ba32bbea6aba946;p=fa-stable.git diff --git a/inventory/adjustments.php b/inventory/adjustments.php index cba64636..dc14d93e 100644 --- a/inventory/adjustments.php +++ b/inventory/adjustments.php @@ -69,8 +69,6 @@ function handle_new_order() unset ($_SESSION['adj_items']); } - //session_register("adj_items"); - $_SESSION['adj_items'] = new items_cart(ST_INVADJUST); $_POST['AdjDate'] = new_doc_date(); if (!is_date_in_fiscalyear($_POST['AdjDate'])) @@ -82,7 +80,7 @@ function handle_new_order() function can_process() { - global $Refs; + global $Refs, $SysPrefs; $adj = &$_SESSION['adj_items']; @@ -116,16 +114,16 @@ function can_process() display_error(_("The entered date is not in fiscal year.")); set_focus('AdjDate'); return false; - } else { - $failed_item = $adj->check_qoh($_POST['StockLocation'], $_POST['AdjDate'], !$_POST['Increase']); - if ($failed_item >= 0) + } + elseif (!$SysPrefs->allow_negative_stock()) + { + $low_stock = $adj->check_qoh($_POST['StockLocation'], $_POST['AdjDate'], !$_POST['Increase']); + + if ($low_stock) { - $line = $adj->line_items[$failed_item]; - display_error(_("The adjustment cannot be processed because an adjustment item would cause a negative inventory balance :") . - " " . $line->stock_id . " - " . $line->item_description); - $_POST['Edit'.$failed_item] = 1; // enter edit mode + display_error(_("The adjustment cannot be processed because it would cause negative inventory balance for marked items as of document date or later.")); unset($_POST['Process']); - return false; + return false; } } return true; @@ -143,6 +141,7 @@ if (isset($_POST['Process']) && can_process()){ unset($_SESSION['adj_items']); meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no"); + } /*end of process credit note */ //-----------------------------------------------------------------------------------------------