Fixed focus setting on multi-form pages.
[fa-stable.git] / inventory / adjustments.php
index dda848d7da92f306fab1d9c4683255e9e0cdcb59..7eac496c1d26bc54960a8d90056bb7417f47b723 100644 (file)
@@ -48,27 +48,6 @@ function line_start_focus() {
   $Ajax->activate('items_table');
   set_focus('_stock_id_edit');
 }
-//--------------------------------------------------------------------------------------------------
-
-function copy_to_st()
-{
-       $_SESSION['adj_items']->from_loc = $_POST['StockLocation'];
-       $_SESSION['adj_items']->tran_date = $_POST['AdjDate'];
-       $_SESSION['adj_items']->transfer_type = $_POST['type'];
-       $_SESSION['adj_items']->increase = $_POST['Increase'];
-       $_SESSION['adj_items']->memo_ = $_POST['memo_'];
-}
-//--------------------------------------------------------------------------------------------------
-
-function copy_from_st()
-{
-       $_POST['StockLocation'] = $_SESSION['adj_items']->from_loc;
-       $_POST['AdjDate'] = $_SESSION['adj_items']->tran_date;
-       $_POST['type'] = $_SESSION['adj_items']->transfer_type;
-       $_POST['Increase'] = $_SESSION['adj_items']->increase;
-       $_POST['memo_'] = $_SESSION['adj_items']->memo_;
-}
-
 //-----------------------------------------------------------------------------------------------
 
 function handle_new_order()
@@ -212,11 +191,6 @@ $id = find_submit('Delete');
 if ($id != -1)
        handle_delete_item($id);
 
-if (isset($_POST['AddItem']) || isset($_POST['UpdateItem'])) {
-       copy_to_st();
-       line_start_focus();
-}
-
 if (isset($_POST['AddItem']))
        handle_new_item();