X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_movements.php;h=2c2e0974225965cbc2764b141a2835308c051a17;hb=1571869d54be48452fdbe08f25130972ff0a7b5a;hp=df25e10208c2be5c8d7bfe5a5f4bcd77756b3880;hpb=327bdb5d6f9a11274f0bedd20e6c9d39276a5f8f;p=fa-stable.git diff --git a/inventory/inquiry/stock_movements.php b/inventory/inquiry/stock_movements.php index df25e102..2c2e0974 100644 --- a/inventory/inquiry/stock_movements.php +++ b/inventory/inquiry/stock_movements.php @@ -18,15 +18,12 @@ include_once($path_to_root . "/includes/banking.inc"); include_once($path_to_root . "/sales/includes/sales_db.inc"); include_once($path_to_root . "/includes/ui.inc"); -if (!@$_GET['popup']) -{ - $js = ""; - if ($use_popup_windows) - $js .= get_js_open_window(800, 500); - if ($use_date_picker) - $js .= get_js_date_picker(); - page(_($help_context = "Inventory Item Movement"), @$_GET['popup'], false, "", $js); -} +$js = ""; +if ($use_popup_windows) + $js .= get_js_open_window(800, 500); +if ($use_date_picker) + $js .= get_js_date_picker(); +page(_($help_context = "Inventory Item Movement"), @$_GET['popup'], false, "", $js); //------------------------------------------------------------------------------------------------ check_db_has_stock_items(_("There are no items defined in the system.")); @@ -41,15 +38,14 @@ if (isset($_GET['stock_id'])) $_POST['stock_id'] = $_GET['stock_id']; } -if (!@$_GET['popup']) - start_form(); +start_form(); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); start_table(TABLESTYLE_NOBORDER); start_row(); -if (!@$_GET['popup']) +if (!$page_nested) stock_costable_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id']); end_row(); end_table(); @@ -59,7 +55,7 @@ start_row(); locations_list_cells(_("From Location:"), 'StockLocation', null, true); -date_cells(_("From:"), 'AfterDate', '', null, -30); +date_cells(_("From:"), 'AfterDate', '', null, -$_SESSION["wa_current_user"]->prefs->transaction_days()); date_cells(_("To:"), 'BeforeDate'); submit_cells('ShowMoves',_("Show Movements"),'',_('Refresh Inquiry'), 'default'); @@ -197,7 +193,6 @@ end_row(); end_table(1); div_end(); -if (!@$_GET['popup']) - end_page(@$_GET['popup'], false, false); +end_page(); ?>