activate('items_table'); set_focus('_stock_id_edit'); } //----------------------------------------------------------------------------------------------- function handle_new_order() { if (isset($_SESSION['adj_items'])) { $_SESSION['adj_items']->clear_items(); unset ($_SESSION['adj_items']); } session_register("adj_items"); $_SESSION['adj_items'] = new items_cart(systypes::inventory_adjustment()); $_POST['AdjDate'] = Today(); if (!is_date_in_fiscalyear($_POST['AdjDate'])) $_POST['AdjDate'] = end_fiscalyear(); $_SESSION['adj_items']->tran_date = $_POST['AdjDate']; } //----------------------------------------------------------------------------------------------- function can_process() { $adj = &$_SESSION['adj_items']; if (count($adj->line_items) == 0) { display_error(_("You must enter at least one non empty item line.")); set_focus('stock_id'); return false; } if (!references::is_valid($_POST['ref'])) { display_error( _("You must enter a reference.")); set_focus('ref'); return false; } if (!is_new_reference($_POST['ref'], systypes::inventory_adjustment())) { display_error( _("The entered reference is already in use.")); set_focus('ref'); return false; } if (!is_date($_POST['AdjDate'])) { display_error(_("The entered date for the adjustment is invalid.")); set_focus('AdjDate'); return false; } elseif (!is_date_in_fiscalyear($_POST['AdjDate'])) { 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) { $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 unset($_POST['Process']); return false; } } return true; } //------------------------------------------------------------------------------- if (isset($_POST['Process']) && can_process()){ $trans_no = add_stock_adjustment($_SESSION['adj_items']->line_items, $_POST['StockLocation'], $_POST['AdjDate'], $_POST['type'], $_POST['Increase'], $_POST['ref'], $_POST['memo_']); $_SESSION['adj_items']->clear_items(); unset($_SESSION['adj_items']); meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no"); } /*end of process credit note */ //----------------------------------------------------------------------------------------------- function check_item_data() { if (!check_num('qty',0)) { display_error(_("The quantity entered is negative or invalid.")); set_focus('qty'); return false; } if (!check_num('std_cost', 0)) { display_error(_("The entered standard cost is negative or invalid.")); set_focus('std_cost'); return false; } return true; } //----------------------------------------------------------------------------------------------- function handle_update_item() { if($_POST['UpdateItem'] != "" && check_item_data()) { $id = $_POST['LineNo']; $_SESSION['adj_items']->update_cart_item($id, input_num('qty'), input_num('std_cost')); } line_start_focus(); } //----------------------------------------------------------------------------------------------- function handle_delete_item($id) { $_SESSION['adj_items']->remove_from_cart($id); line_start_focus(); } //----------------------------------------------------------------------------------------------- function handle_new_item() { if (!check_item_data()) return; add_to_order($_SESSION['adj_items'], $_POST['stock_id'], input_num('qty'), input_num('std_cost')); line_start_focus(); } //----------------------------------------------------------------------------------------------- $id = find_submit('Delete'); if ($id != -1) handle_delete_item($id); if (isset($_POST['AddItem'])) handle_new_item(); if (isset($_POST['UpdateItem'])) handle_update_item(); if (isset($_POST['CancelItemChanges'])) { line_start_focus(); } //----------------------------------------------------------------------------------------------- if (isset($_GET['NewAdjustment']) || !isset($_SESSION['adj_items'])) { handle_new_order(); } //----------------------------------------------------------------------------------------------- start_form(false, true); display_order_header($_SESSION['adj_items']); start_table("$table_style width=70%", 10); start_row(); echo ""; display_adjustment_items(_("Adjustment Items"), $_SESSION['adj_items']); adjustment_options_controls(); echo ""; end_row(); end_table(1); submit_center_first('Update', _("Update"), '', null); submit_center_last('Process', _("Process Adjustment"), '', true); end_form(); end_page(); ?>