Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / inventory / reorder_level.php
index 49f5f5ca12f5abc8f0e41aa9817c2f4955de914d..6dfba5f0bdff8f36594c829434c97ff4db0ebb9c 100644 (file)
     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(_($help_context = "Reorder Levels"));
+if (@$_GET['page_level'] == 1)
+       $path_to_root = "../..";
+else   
+       $path_to_root = "..";
 
+include_once($path_to_root . "/includes/session.inc");
 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");
 
+$js = "";
+if ($SysPrefs->use_popup_windows && $SysPrefs->use_popup_search)
+       $js .= get_js_open_window(900, 500);
+page(_($help_context = "Reorder Levels"), false, false, "", $js);
+
 check_db_has_costable_items(_("There are no inventory items defined in the system (Purchased or manufactured items)."));
 
 //------------------------------------------------------------------------------------
@@ -35,24 +41,32 @@ if (list_updated('stock_id'))
 }
 //------------------------------------------------------------------------------------
 
-start_form();
+$action = $_SERVER['PHP_SELF'];
+if ($page_nested)
+       $action .= "?stock_id=".get_post('stock_id');
+start_form(false, false, $action);
 
 if (!isset($_POST['stock_id']))
        $_POST['stock_id'] = get_global_stock_item();
 
-echo "<center>" . _("Item:"). "&nbsp;";
-stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
-
-echo "<hr></center>";
+if (!$page_nested)
+{
+       echo "<center>" . _("Item:"). "&nbsp;";
+       echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
 
+       echo "<hr></center>";
+}
+else
+       br(2);
 div_start('show_heading');
 stock_item_heading($_POST['stock_id']);
 br();
 div_end();
+
 set_global_stock_item($_POST['stock_id']);
 
 div_start('reorders');
-start_table("$table_style width=30%");
+start_table(TABLESTYLE, "width='30%'");
 
 $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level"));
 table_header($th);
@@ -72,6 +86,7 @@ while ($myrow = db_fetch($result))
 
                $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"]);
@@ -97,5 +112,3 @@ submit_center('UpdateData', _("Update"), true, false, 'default');
 
 end_form();
 end_page();
-
-?>