X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=8eca2ef19a629c473162ed111f43569d3da2bc97;hb=b7292954fb15ae771a58480dba753cfd2948d810;hp=787348a5987e08e3442b60446aa02afc0b003ee8;hpb=883307779f9ca5bac0533702a8702b0cccb4742f;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index 787348a5..8eca2ef1 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -10,17 +10,19 @@ 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"); +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 +37,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 "
" . _("Item:"). " "; -echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); - -echo "
"; +if (!$page_nested) +{ + 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 +72,11 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); +if ($page_nested) +{ + hidden('popup', @$_GET['popup']); +} + while ($myrow = db_fetch($result)) { @@ -98,5 +113,3 @@ submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); end_page(); - -?>