X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=c863796a6ece9fbff25b16f9a78f59de59e6b56f;hb=06feaeabf5f8376201cf3aeb6367a4c97e1e2cbd;hp=787348a5987e08e3442b60446aa02afc0b003ee8;hpb=9e44d776f49ac5c16c15fd3fc8f0d85edcc771e7;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index 787348a5..c863796a 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -10,17 +10,20 @@ See the License here . ***********************************************************************/ $page_security = 'SA_REORDER'; -$path_to_root = ".."; -include_once($path_to_root . "/includes/session.inc"); - -page(_($help_context = "Reorder Levels")); +if (!@$_GET['popup']) + $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"); +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).")); //------------------------------------------------------------------------------------ @@ -35,24 +38,32 @@ if (list_updated('stock_id')) } //------------------------------------------------------------------------------------ -start_form(); +$action = $_SERVER['PHP_SELF']; +if (@$_GET['popup']) + $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 "
" . _("Item:"). " "; -echo 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']); 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); @@ -62,6 +73,12 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); +if (@$_GET['popup']) +{ + hidden('_tabs_sel', get_post('_tabs_sel')); + hidden('popup', @$_GET['popup']); +} + while ($myrow = db_fetch($result)) { @@ -97,6 +114,7 @@ div_end(); submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); -end_page(); +if (!@$_GET['popup']) + end_page(@$_GET['popup'], false, false); ?>