Changed context help organization to enable use of central, multilanguage wiki.
[fa-stable.git] / inventory / reorder_level.php
index 83283d5b536d012e36863ba8c5213b8586f2e02b..49f5f5ca12f5abc8f0e41aa9817c2f4955de914d 100644 (file)
@@ -1,10 +1,19 @@
 <?php
-
-$page_security = 4;
-$path_to_root="..";
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$page_security = 'SA_REORDER';
+$path_to_root = "..";
 include_once($path_to_root . "/includes/session.inc");
 
-page(_("Reorder Levels"));
+page(_($help_context = "Reorder Levels"));
 
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/includes/ui.inc");
@@ -19,14 +28,14 @@ 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();
@@ -38,6 +47,7 @@ echo "<hr></center>";
 
 div_start('show_heading');
 stock_item_heading($_POST['stock_id']);
+br();
 div_end();
 set_global_stock_item($_POST['stock_id']);
 
@@ -83,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();