X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=inline;f=inventory%2Freorder_level.php;h=bd517f251221a18e5a762835ad5c2177c36bc665;hb=879a85f0d6bab6e938c816d6b6a615e18c6b2101;hp=980d04cfb60ed09e393a45875b8a19c32e79e470;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index 980d04cf..bd517f25 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -1,43 +1,66 @@ . +***********************************************************************/ +$page_security = 'SA_REORDER'; +if (!@$_GET['popup']) + $path_to_root = ".."; +else + $path_to_root = "../.."; -$page_security = 4; -$path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); - -page(_("Reorder Levels")); - include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); - include_once($path_to_root . "/inventory/includes/inventory_db.inc"); +if (!@$_GET['popup']) + page(_($help_context = "Reorder Levels")); + check_db_has_costable_items(_("There are no inventory items defined in the system (Purchased or manufactured items).")); //------------------------------------------------------------------------------------ if (isset($_GET['stock_id'])) -{ $_POST['stock_id'] = $_GET['stock_id']; -} +if (list_updated('stock_id')) +{ + $Ajax->activate('show_heading'); + $Ajax->activate('reorders'); +} //------------------------------------------------------------------------------------ - -start_form(false, true); +if (!@$_GET['popup']) + start_form(); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); -echo "
" . _("Item:"). " "; -stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); - -echo "
"; +if (!@$_GET['popup']) +{ + echo "
" . _("Item:"). " "; + echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); + echo "
"; +} +else + br(2); +div_start('show_heading'); stock_item_heading($_POST['stock_id']); +br(); +div_end(); set_global_stock_item($_POST['stock_id']); -start_table("$table_style width=30%"); +div_start('reorders'); +start_table(TABLESTYLE, "width=30%"); $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level")); table_header($th); @@ -47,23 +70,33 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); -while ($myrow = db_fetch($result)) +if (@$_GET['popup']) +{ + hidden('_tabs_sel', get_post('_tabs_sel')); + hidden('popup', @$_GET['popup']); +} + +while ($myrow = db_fetch($result)) { alt_table_row_color($k); - if (isset($_POST['UpdateData']) && is_numeric($_POST[$myrow["loc_code"]])) + if (isset($_POST['UpdateData']) && check_num($myrow["loc_code"])) { - $myrow["reorder_level"] = $_POST[$myrow["loc_code"]]; - set_reorder_level($_POST['stock_id'], $myrow["loc_code"], $_POST[$myrow["loc_code"]]); + $myrow["reorder_level"] = input_num($myrow["loc_code"]); + set_reorder_level($_POST['stock_id'], $myrow["loc_code"], input_num($myrow["loc_code"])); + display_notification(_("Reorder levels has been updated.")); } $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); label_cell($myrow["location_name"]); - label_cell(number_format2($qoh,user_qty_dec()), "nowrap align='right'"); - text_cells(null, $myrow["loc_code"], $myrow["reorder_level"], 10, 10); + + $_POST[$myrow["loc_code"]] = qty_format($myrow["reorder_level"], $_POST['stock_id'], $dec); + + qty_cell($qoh, false, $dec); + qty_cells(null, $myrow["loc_code"], null, null, null, $dec); end_row(); $j++; If ($j == 12) @@ -74,10 +107,12 @@ while ($myrow = db_fetch($result)) } end_table(1); +div_end(); +submit_center('UpdateData', _("Update"), true, false, 'default'); -submit('UpdateData', _("Update")); - -end_form(); -end_page(); - +if (!@$_GET['popup']) +{ + end_form(); + end_page(@$_GET['popup'], false, false); +} ?>