X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=7af7329e4b43bb65d44538f7dd4c42cfdcc1e0ed;hb=2a0f29497517eca1cde8b2832da5761edefb2268;hp=5b1ac7282c92dbad8bbfbc2f3919d7f68b5ba9de;hpb=99730b8d6deb7e81d2f1ebeb2ce7066d27729485;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index 5b1ac728..7af7329e 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -1,7 +1,16 @@ . +***********************************************************************/ +$page_security = 'SA_REORDER'; +$path_to_root = ".."; include_once($path_to_root . "/includes/session.inc"); page(_("Reorder Levels")); @@ -17,15 +26,16 @@ check_db_has_costable_items(_("There are no inventory items defined in the syste //------------------------------------------------------------------------------------ if (isset($_GET['stock_id'])) -{ $_POST['stock_id'] = $_GET['stock_id']; -} -if (isset($_POST['_stock_id_update'])) +if (list_updated('stock_id')) +{ + $Ajax->activate('show_heading'); $Ajax->activate('reorders'); +} //------------------------------------------------------------------------------------ -start_form(false, true); +start_form(); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); @@ -35,8 +45,10 @@ stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); echo "
"; +div_start('show_heading'); stock_item_heading($_POST['stock_id']); - +br(); +div_end(); set_global_stock_item($_POST['stock_id']); div_start('reorders'); @@ -81,7 +93,7 @@ while ($myrow = db_fetch($result)) end_table(1); div_end(); -submit_center('UpdateData', _("Update")); +submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); end_page();