Update from usntable branch.
[fa-stable.git] / inventory / includes / db / items_adjust_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //-------------------------------------------------------------------------------------------------------------
13
14 function add_stock_adjustment($items, $location, $date_, $type, $increase, $reference, $memo_)
15 {
16         global $Refs;
17
18         begin_transaction();
19
20         $adj_id = get_next_trans_no(ST_INVADJUST);
21
22         foreach ($items as $line_item)
23         {
24
25                 if (!$increase)
26                         $line_item->quantity = -$line_item->quantity;
27
28                 add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $type, $reference,
29                         $line_item->quantity, $line_item->standard_cost, $memo_);
30         }
31
32         add_comments(ST_INVADJUST, $adj_id, $date_, $memo_);
33
34         $Refs->save(ST_INVADJUST, $adj_id, $reference);
35         add_audit_trail(ST_INVADJUST, $adj_id, $date_);
36
37         commit_transaction();
38
39         return $adj_id;
40 }
41
42 //-------------------------------------------------------------------------------------------------------------
43
44 function void_stock_adjustment($type_no)
45 {
46         void_gl_trans(ST_INVADJUST, $type_no);
47         void_stock_move(ST_INVADJUST, $type_no);
48 }
49
50 //-------------------------------------------------------------------------------------------------------------
51
52 function get_stock_adjustment_items($trans_no)
53 {
54         $result = get_stock_moves(ST_INVADJUST, $trans_no);
55
56         if (db_num_rows($result) == 0)
57         {
58                 return null;
59         }
60
61         return $result;
62 }
63
64 //--------------------------------------------------------------------------------------------------
65
66 function add_stock_adjustment_item($adj_id, $stock_id, $location, $date_, $type, $reference,
67         $quantity, $standard_cost, $memo_)
68 {
69         $mb_flag = get_mb_flag($stock_id);
70
71     if (is_service($mb_flag))
72     {
73         display_db_error("Cannot do inventory adjustment for Service item : $stock_id", "");
74     }
75
76         update_average_material_cost(null, $stock_id, $standard_cost, $quantity, $date_);
77
78         add_stock_move(ST_INVADJUST, $stock_id, $adj_id, $location,
79         $date_, $reference, $quantity, $standard_cost, $type);
80
81         if ($standard_cost > 0)
82         {
83
84                 $stock_gl_codes = get_stock_gl_code($stock_id);
85
86                 add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_,
87                         $stock_gl_codes['adjustment_account'], $stock_gl_codes['dimension_id'], $stock_gl_codes['dimension2_id'], $memo_, ($standard_cost * -($quantity)));
88
89                 add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_, $stock_gl_codes['inventory_account'], 0, 0, $memo_, ($standard_cost * $quantity));
90         }
91 }
92
93 //-------------------------------------------------------------------------------------------------------------
94
95 ?>