0003871: [Fixed Assets] new patch fix for: 0003866, 0003869
[fa-stable.git] / fixed_assets / includes / fixed_assets_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 function process_fixed_asset_depreciation($stock_id, $gl_rows, $refline, $memo_)
14 {
15   global $Refs;
16
17   $row = get_item($stock_id);
18   $old_cost = $row['material_cost'];
19
20   begin_transaction();
21
22   $date_ = Today();
23   if (!is_date_in_fiscalyear($date_))
24     $date_ = end_fiscalyear();
25
26   $stock_gl_code = get_stock_gl_code($stock_id);
27
28   $cart = new items_cart(ST_JOURNAL);
29   $cart->tran_date = $cart->doc_date = $cart->event_date = $date_;
30   $cart->tran_date = end_fiscalyear();
31   $cart->reference = $Refs->get_next(ST_JOURNAL, $refline, $cart->tran_date, $date_);
32
33   $value_of_change = 0;
34   foreach ($gl_rows as $row) {
35     $value_of_change += round($row['value'], 2);
36
37     $cart->add_gl_item($stock_gl_code["adjustment_account"],
38         $stock_gl_code["dimension_id"], $stock_gl_code["dimension2_id"], -$row['value'],
39         '', null, null, $row['date']);
40     $cart->add_gl_item($stock_gl_code["cogs_account"], 0, 0, $row['value'],
41         '', null, null, $row['date']);
42   }
43
44   $new_cost = $old_cost - $value_of_change;
45
46   if (empty($memo_))
47     $cart->memo_ = sprintf(_("Fixed asset has been deprecated by the value of %s"),
48         number_format2($value_of_change, user_price_dec()));
49   else
50     $cart->memo_ = $memo_;
51
52   $trans_no = write_journal_entries($cart);
53
54   $sql = "UPDATE ".TB_PREF."stock_master SET 
55     depreciation_date='".date2sql($cart->tran_date)."',
56     material_cost=".db_escape($new_cost)."
57     WHERE stock_id=".db_escape($stock_id);
58   db_query($sql,"The depreciation start date could not be updated");
59
60   $update_no = -1;
61   add_audit_trail(ST_JOURNAL, $update_no, $date_);
62   commit_transaction();
63
64   return $trans_no;
65 }
66
67 //--------------------------------------------------------------------------------------------------
68
69 function get_fixed_asset_move($stock_id, $tran_type) {
70
71   $sql = "SELECT * FROM ".TB_PREF."stock_moves 
72             WHERE stock_id=".db_escape($stock_id)."
73                 AND type=".db_escape($tran_type);
74
75   $result = db_query($sql, "cannot retrieve fixed asset move");
76
77   if (db_num_rows($result) == 0)
78     return false;
79
80   $row = db_fetch_assoc($result);
81   return $row;
82 }
83
84 function get_fixed_asset_disposal($stock_id) {
85
86   $sql = "SELECT * FROM ".TB_PREF."stock_moves 
87         WHERE stock_id=".db_escape($stock_id)."
88                 AND (type=".ST_INVADJUST." OR type=".ST_CUSTDELIVERY.")
89         ORDER BY tran_date DESC
90         LIMIT 1";
91
92   $result = db_query($sql, "cannot retrieve fixed asset move");
93
94   if (db_num_rows($result) == 0)
95     return false;
96
97   $row = db_fetch_assoc($result);
98   return $row;
99 }
100
101 function get_fixed_asset_purchase($stock_id) 
102 {
103         $sql = "SELECT * 
104                 FROM ".TB_PREF."stock_master m, "
105                         .TB_PREF."supp_invoice_items i, "
106                         .TB_PREF."supp_trans t
107         WHERE m.stock_id=".db_escape($stock_id)."
108                     AND i.supp_trans_no=t.trans_no
109                 AND m.stock_id=i.stock_id
110         ORDER BY t.tran_date DESC
111         LIMIT 1";
112
113         $result = db_query($sql, "cannot retrieve fixed asset move");
114
115         if (db_num_rows($result) == 0)
116         return false;
117
118         $row = db_fetch_assoc($result);
119         return $row;
120 }
121
122 //--------------------------------------------------------------------------------------------------
123
124 function get_fixed_asset_class($id)
125 {
126         $sql="SELECT * FROM ".TB_PREF."stock_fa_class WHERE fa_class_id=".db_escape($id);
127
128         $result = db_query($sql,"a fixed asset class could not be retrieved");
129
130         return db_fetch($result);
131 }
132
133 //--------------------------------------------------------------------------------------------------
134
135 function get_sql_for_fixed_assets($show_inactive = false)
136 {
137         $sql = "SELECT s.stock_id, c.description, s.units, s.description as name,
138         s.depreciation_rate, s.depreciation_method, s.inactive, 
139         s.material_cost, s.purchase_cost, s.depreciation_factor
140     FROM ".TB_PREF."stock_master s"
141         ." LEFT JOIN ".TB_PREF."stock_fa_class c ON s.fa_class_id=c.fa_class_id"
142         ." WHERE s.mb_flag='F'";
143
144         if (!$show_inactive)
145         $sql .= " AND !s.inactive ";
146
147         $sql .= " ORDER BY c.description ";
148
149         return $sql;
150 }
151
152 //--------------------------------------------------------------------------------------------------
153
154 //function get_sql_for_fa_journal_inquiry($stock_id)
155 //{
156 //
157 //      $sql = "SELECT  IF(ISNULL(a.gl_seq),0,a.gl_seq) as gl_seq,
158 //              gl.tran_date,
159 //              gl.type as trans_type,
160 //              gl.type_no as trans_no,
161 //              IFNULL(max(supp.supp_name), max(cust.name)) as name,
162 //              refs.reference,
163 //              SUM(IF(gl.amount>0, gl.amount,0)) as amount,
164 //              com.memo_,
165 //              IF(ISNULL(u.user_id),'',u.user_id) as user_id";
166 //
167 //      $sql.= " FROM ".TB_PREF."gl_trans as gl
168 //               LEFT JOIN ".TB_PREF."audit_trail as a ON
169 //                      (gl.type=a.type AND gl.type_no=a.trans_no)
170 //               LEFT JOIN ".TB_PREF."comments as com ON
171 //                      (gl.type=com.type AND gl.type_no=com.id)
172 //               LEFT JOIN ".TB_PREF."refs as refs ON
173 //                      (gl.type=refs.type AND gl.type_no=refs.id)
174 //               LEFT JOIN ".TB_PREF."users as u ON
175 //                      a.user=u.id
176 //               LEFT JOIN ".TB_PREF."debtor_trans dt ON dt.type=gl.type AND gl.type_no=dt.trans_no
177 //               LEFT JOIN ".TB_PREF."debtors_master cust ON gl.person_type_id=2 AND gl.person_id=cust.debtor_no
178 //               LEFT JOIN ".TB_PREF."supp_trans st ON st.type=gl.type AND gl.type_no=st.trans_no
179 //               LEFT JOIN ".TB_PREF."suppliers supp ON gl.person_type_id=3 AND gl.person_id=supp.supplier_id
180 //               WHERE gl.amount!=0
181 //     AND NOT ISNULL(a.gl_seq)";
182 //
183 ////    if (!$alsoclosed) {
184 ////            $sql .= " AND gl_seq=0";
185 ////    }
186 ////    else
187 ////            $sql .= " AND NOT ISNULL(a.gl_seq)";
188 //
189 //      $sql .= " GROUP BY tran_date, gl_seq, trans_type, trans_no";
190 //
191 //      return $sql;
192 //}
193
194 //--------------------------------------------------------------------------------------------------