X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fitems.php;h=f4d3b988e4623e86114ad837783ebe77c6341799;hb=33e8c8d4cc6ace088b9a94a28b5c081e46f2ea81;hp=4599dfdfdd3c667735d74e0d1a06aa5f9d41d4a2;hpb=575fa4304beb3cd570a0352d52ee6c6aeb3864f7;p=fa-stable.git diff --git a/inventory/manage/items.php b/inventory/manage/items.php index 4599dfdf..f4d3b988 100644 --- a/inventory/manage/items.php +++ b/inventory/manage/items.php @@ -15,8 +15,10 @@ include($path_to_root . "/includes/session.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(900, 500); +if ($use_date_picker) + $js .= get_js_date_picker(); -page(_($help_context = "Items"), false, false, "", $js); +page(_($help_context = "Items"), @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -32,20 +34,20 @@ if (isset($_GET['stock_id'])) { $_POST['stock_id'] = $_GET['stock_id']; } +$stock_id = get_post('stock_id'); if (list_updated('stock_id')) { - $_POST['NewStockID'] = get_post('stock_id'); + $_POST['NewStockID'] = $stock_id = get_post('stock_id'); clear_data(); $Ajax->activate('details'); $Ajax->activate('controls'); } if (get_post('cancel')) { - $_POST['NewStockID'] = $_POST['stock_id'] = ''; + $_POST['NewStockID'] = $stock_id = $_POST['stock_id'] = ''; clear_data(); set_focus('stock_id'); $Ajax->activate('_page_body'); } -$stock_id = get_post('stock_id'); if (list_updated('category_id') || list_updated('mb_flag')) { $Ajax->activate('details'); } @@ -205,6 +207,7 @@ if (isset($_POST['addupdate'])) if (get_post('clone')) { unset($_POST['stock_id']); + $stock_id = ''; unset($_POST['inactive']); set_focus('NewStockID'); $Ajax->activate('_page_body'); @@ -244,12 +247,10 @@ if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) } } -function item_settings($stock_id) +function item_settings(&$stock_id) { global $SysPrefs, $path_to_root, $new_item, $pic_height; - div_start('details'); - start_outer_table(TABLESTYLE2); table_section(1); @@ -398,7 +399,7 @@ function item_settings($stock_id) record_status_list_row(_("Item status:"), 'inactive'); end_outer_table(1); - div_end(); + div_start('controls'); if (!isset($_POST['NewStockID']) || $new_item) { @@ -443,12 +444,19 @@ else hidden('stock_id', get_post('stock_id')); } -if ($stock_id != "") +div_start('details'); + +$stock_id = get_post('stock_id'); +if (!$stock_id) unset($_POST['_tabs_sel']); // force settings tab for new customer tabbed_content_start('tabs', array( 'settings' => array(_('&General settings'), $stock_id), - 'movement' => array(_('&Movement'), $stock_id), + 'sales_pricing' => array(_('S&ales Pricing'), $stock_id), + 'purchase_pricing' => array(_('&Purchasing Pricing'), $stock_id), + 'standard_cost' => array(_('Standard &Costs'), $stock_id), + 'reorder_level' => array(_('&Reorder Levels'), (is_inventory_item($stock_id) ? $stock_id : null)), + 'movement' => array(_('&Transactions'), $stock_id), 'status' => array(_('&Status'), $stock_id), )); @@ -457,27 +465,51 @@ tabbed_content_start('tabs', array( case 'settings': item_settings($stock_id); break; + case 'sales_pricing': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/prices.php"); + break; + case 'purchase_pricing': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/purchasing_data.php"); + break; + case 'standard_cost': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/cost_update.php"); + break; + case 'reorder_level': + if (!is_inventory_item($stock_id)) + { + break; + } + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/reorder_level.php"); + break; case 'movement': $_GET['stock_id'] = $stock_id; $_GET['popup'] = 1; - $_SERVER['REQUEST_METHOD'] = 'GET'; include_once($path_to_root."/inventory/inquiry/stock_movements.php"); break; case 'status': $_GET['stock_id'] = $stock_id; $_GET['popup'] = 1; - $_SERVER['REQUEST_METHOD'] = 'GET'; include_once($path_to_root."/inventory/inquiry/stock_status.php"); break; }; br(); tabbed_content_end(); +div_end(); + hidden('popup', @$_REQUEST['popup']); end_form(); //------------------------------------------------------------------------------------ -end_page(); +end_page(@$_REQUEST['popup']); ?>