X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fadjustments.php;h=8fde40770c6811a8633b6330a2f338a610ba4945;hb=cabf98787970f81d5b1f2fe094337dd3d17869c5;hp=18f26096f98c27f8fdad4536f12d5f8042fa120e;hpb=0b63d898491b6577a5a5bf90e771dca0dcbbcf1f;p=fa-stable.git diff --git a/inventory/adjustments.php b/inventory/adjustments.php index 18f26096..8fde4077 100644 --- a/inventory/adjustments.php +++ b/inventory/adjustments.php @@ -23,7 +23,7 @@ include_once($path_to_root . "/inventory/includes/inventory_db.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(800, 500); -if ($use_date_picker) +if (user_use_date_picker()) $js .= get_js_date_picker(); page(_($help_context = "Item Adjustments Note"), false, false, "", $js); @@ -80,7 +80,7 @@ function handle_new_order() function can_process() { - global $Refs; + global $Refs, $SysPrefs; $adj = &$_SESSION['adj_items']; @@ -114,16 +114,16 @@ function can_process() display_error(_("The entered date is out of fiscal year or is closed for further data entry.")); 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; @@ -141,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 */ //----------------------------------------------------------------------------------------------- @@ -236,4 +237,3 @@ submit_center_last('Process', _("Process Adjustment"), '', 'default'); end_form(); end_page(); -?>