Changes in void_stock?_adjustmen?t
[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         $args = func_get_args();
20         $args = (object)array_combine(array('items', 'location', 'date_', 'type', 'increase',
21                 'reference', 'memo_'), $args);
22         $args->trans_no = 0;
23         hook_db_prewrite($args, ST_INVADJUST);
24
25         $adj_id = get_next_trans_no(ST_INVADJUST);
26
27         foreach ($items as $line_item)
28         {
29
30                 if (!$increase)
31                         $line_item->quantity = -$line_item->quantity;
32
33                 add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $type, $reference,
34                         $line_item->quantity, $line_item->standard_cost, $memo_);
35         }
36
37         add_comments(ST_INVADJUST, $adj_id, $date_, $memo_);
38
39         $Refs->save(ST_INVADJUST, $adj_id, $reference);
40         add_audit_trail(ST_INVADJUST, $adj_id, $date_);
41
42         $args->trans_no = $adj_id;
43         hook_db_postwrite($args, ST_INVADJUST);
44         commit_transaction();
45
46         return $adj_id;
47 }
48
49 //-------------------------------------------------------------------------------------------------------------
50
51 function void_stock_adjustment($type_no)
52 {
53         hook_db_prevoid(ST_INVADJUST, $type_no);
54
55         void_gl_trans(ST_INVADJUST, $type_no);
56         void_stock_move(ST_INVADJUST, $type_no);
57 }
58
59 //-------------------------------------------------------------------------------------------------------------
60
61 function get_stock_adjustment_items($trans_no)
62 {
63         $result = get_stock_moves(ST_INVADJUST, $trans_no);
64
65         if (db_num_rows($result) == 0)
66         {
67                 return null;
68         }
69
70         return $result;
71 }
72
73 //--------------------------------------------------------------------------------------------------
74
75 function add_stock_adjustment_item($adj_id, $stock_id, $location, $date_, $type, $reference,
76         $quantity, $standard_cost, $memo_)
77 {
78         $mb_flag = get_mb_flag($stock_id);
79
80     if (is_service($mb_flag))
81     {
82         display_db_error("Cannot do inventory adjustment for Service item : $stock_id", "");
83     }
84
85         update_average_material_cost(null, $stock_id, $standard_cost, $quantity, $date_);
86
87         add_stock_move(ST_INVADJUST, $stock_id, $adj_id, $location,
88         $date_, $reference, $quantity, $standard_cost, $type);
89
90         if ($standard_cost > 0)
91         {
92
93                 $stock_gl_codes = get_stock_gl_code($stock_id);
94
95                 add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_,
96                         $stock_gl_codes['adjustment_account'], $stock_gl_codes['dimension_id'], $stock_gl_codes['dimension2_id'], $memo_, ($standard_cost * -($quantity)));
97
98                 add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_, $stock_gl_codes['inventory_account'], 0, 0, $memo_, ($standard_cost * $quantity));
99         }
100 }
101
102 //-------------------------------------------------------------------------------------------------------------
103
104 ?>