Moving 2.0 development version to main trunk.
[fa-stable.git] / inventory / includes / db / items_adjust_db.inc
index c245bb0fbbc27253a67dc3ab3da160ec53c0ee37..bab75ba7cd42533fe8c3e1d14febe76f91a134c7 100644 (file)
@@ -5,28 +5,26 @@
 function add_stock_adjustment($items, $location, $date_, $type, $increase, $reference, $memo_)
 {
        begin_transaction();
-               
+
        $adj_id = get_next_trans_no(systypes::inventory_adjustment());
-               
-       foreach ($items as $line_item) 
+
+       foreach ($items as $line_item)
        {
-               
+
                if (!$increase)
                        $line_item->quantity = -$line_item->quantity;
-                       
-               add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $type, $reference, 
+
+               add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $type, $reference,
                        $line_item->quantity, $line_item->standard_cost, $memo_);
        }
-       
-       add_comments(systypes::inventory_adjustment(), $adj_id, $date_, $memo_);        
-       
-       add_forms_for_sys_type(systypes::inventory_adjustment(), $adj_id, $increase, $location);        
-       
-       references::save_last($reference, systypes::inventory_adjustment());            
-       
+
+       add_comments(systypes::inventory_adjustment(), $adj_id, $date_, $memo_);
+
+       references::save_last($reference, systypes::inventory_adjustment());
+
        commit_transaction();
 
-       return $adj_id; 
+       return $adj_id;
 }
 
 //-------------------------------------------------------------------------------------------------------------
@@ -42,39 +40,39 @@ function void_stock_adjustment($type_no)
 function get_stock_adjustment_items($trans_no)
 {
        $result = get_stock_moves(systypes::inventory_adjustment(), $trans_no);
-       
-       if (db_num_rows($result) == 0) 
+
+       if (db_num_rows($result) == 0)
        {
-               return null; 
+               return null;
        }
-       
+
        return $result;
 }
 
 //--------------------------------------------------------------------------------------------------
 
-function add_stock_adjustment_item($adj_id, $stock_id, $location, $date_, $type, $reference, 
+function add_stock_adjustment_item($adj_id, $stock_id, $location, $date_, $type, $reference,
        $quantity, $standard_cost, $memo_)
 {
        $mb_flag = get_mb_flag($stock_id);
-    
+
     if (is_service($mb_flag))
     {
-       display_db_error("Cannot do inventory adjustment for Service item : $stock_id", "");    
-    }  
-       
+       display_db_error("Cannot do inventory adjustment for Service item : $stock_id", "");
+    }
+
        add_stock_move(systypes::inventory_adjustment(), $stock_id, $adj_id, $location,
-        $date_, $reference, $quantity, $standard_cost, $type);         
+        $date_, $reference, $quantity, $standard_cost, $type);
 
        if ($standard_cost > 0)
        {
-               
+
                $stock_gl_codes = get_stock_gl_code($stock_id);
-               
-               add_gl_trans_std_cost(systypes::inventory_adjustment(), $adj_id, $date_, 
+
+               add_gl_trans_std_cost(systypes::inventory_adjustment(), $adj_id, $date_,
                        $stock_gl_codes['adjustment_account'], $stock_gl_codes['dimension_id'], $stock_gl_codes['dimension2_id'], $memo_, ($standard_cost * -($quantity)));
-               
-               add_gl_trans_std_cost(systypes::inventory_adjustment(), $adj_id, $date_, $stock_gl_codes['inventory_account'], 0, 0, $memo_, ($standard_cost * $quantity));             
+
+               add_gl_trans_std_cost(systypes::inventory_adjustment(), $adj_id, $date_, $stock_gl_codes['inventory_account'], 0, 0, $memo_, ($standard_cost * $quantity));
        }
 }