911cdddff438ca11f56250ef35b832cc4253df9e
[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
90   $result = db_query($sql, "cannot retrieve fixed asset move");
91
92   if (db_num_rows($result) == 0)
93     return false;
94
95   $row = db_fetch_assoc($result);
96   return $row;
97 }
98
99 function get_fixed_asset_purchase($stock_id) {
100
101   $sql = "SELECT * 
102         FROM ".TB_PREF."stock_master m, "
103                 .TB_PREF."supp_invoice_items i, "
104                 .TB_PREF."supp_trans t
105     WHERE m.stock_id=".db_escape($stock_id)."
106             AND i.supp_trans_no=t.trans_no
107         AND m.stock_id=i.stock_id";
108
109   $result = db_query($sql, "cannot retrieve fixed asset move");
110
111   if (db_num_rows($result) == 0)
112     return false;
113
114   $row = db_fetch_assoc($result);
115   return $row;
116 }
117
118 //--------------------------------------------------------------------------------------------------
119
120 function get_fixed_asset_class($id)
121 {
122         $sql="SELECT * FROM ".TB_PREF."stock_fa_class WHERE fa_class_id=".db_escape($id);
123
124         $result = db_query($sql,"a fixed asset class could not be retrieved");
125
126         return db_fetch($result);
127 }
128
129 //--------------------------------------------------------------------------------------------------
130
131 function get_sql_for_fixed_assets($show_inactive = false)
132 {
133   $sql = "SELECT s.stock_id, c.description, s.units, s.description as name,
134     s.depreciation_rate, s.depreciation_method, s.inactive, rcv.tran_date as purchase_date, rcv.trans_no as purchase_no,
135     adj.tran_date as disposal_date, adj.type as disposal_type, adj.trans_no as disposal_no, s.material_cost, s.purchase_cost, s.depreciation_factor
136     FROM ".TB_PREF."stock_master s"
137         ." LEFT JOIN ".TB_PREF."stock_moves rcv ON rcv.stock_id=s.stock_id AND rcv.type=".ST_SUPPRECEIVE
138         ." LEFT JOIN ".TB_PREF."stock_moves adj ON adj.stock_id=s.stock_id AND adj.type IN(".ST_INVADJUST.",".ST_CUSTDELIVERY.")"
139         ." LEFT JOIN ".TB_PREF."stock_fa_class c ON s.fa_class_id=c.fa_class_id"
140         ." WHERE s.mb_flag='F'";
141
142   if (!$show_inactive)
143     $sql .= " AND !s.inactive AND !ISNULL(rcv.tran_date) AND ISNULL(adj.tran_date)";
144
145         return $sql;
146 }
147
148 //--------------------------------------------------------------------------------------------------
149
150 //function get_sql_for_fa_journal_inquiry($stock_id)
151 //{
152 //
153 //      $sql = "SELECT  IF(ISNULL(a.gl_seq),0,a.gl_seq) as gl_seq,
154 //              gl.tran_date,
155 //              gl.type as trans_type,
156 //              gl.type_no as trans_no,
157 //              IFNULL(max(supp.supp_name), max(cust.name)) as name,
158 //              refs.reference,
159 //              SUM(IF(gl.amount>0, gl.amount,0)) as amount,
160 //              com.memo_,
161 //              IF(ISNULL(u.user_id),'',u.user_id) as user_id";
162 //
163 //      $sql.= " FROM ".TB_PREF."gl_trans as gl
164 //               LEFT JOIN ".TB_PREF."audit_trail as a ON
165 //                      (gl.type=a.type AND gl.type_no=a.trans_no)
166 //               LEFT JOIN ".TB_PREF."comments as com ON
167 //                      (gl.type=com.type AND gl.type_no=com.id)
168 //               LEFT JOIN ".TB_PREF."refs as refs ON
169 //                      (gl.type=refs.type AND gl.type_no=refs.id)
170 //               LEFT JOIN ".TB_PREF."users as u ON
171 //                      a.user=u.id
172 //               LEFT JOIN ".TB_PREF."debtor_trans dt ON dt.type=gl.type AND gl.type_no=dt.trans_no
173 //               LEFT JOIN ".TB_PREF."debtors_master cust ON gl.person_type_id=2 AND gl.person_id=cust.debtor_no
174 //               LEFT JOIN ".TB_PREF."supp_trans st ON st.type=gl.type AND gl.type_no=st.trans_no
175 //               LEFT JOIN ".TB_PREF."suppliers supp ON gl.person_type_id=3 AND gl.person_id=supp.supplier_id
176 //               WHERE gl.amount!=0
177 //     AND NOT ISNULL(a.gl_seq)";
178 //
179 ////    if (!$alsoclosed) {
180 ////            $sql .= " AND gl_seq=0";
181 ////    }
182 ////    else
183 ////            $sql .= " AND NOT ISNULL(a.gl_seq)";
184 //
185 //      $sql .= " GROUP BY tran_date, gl_seq, trans_type, trans_no";
186 //
187 //      return $sql;
188 //}
189
190 //--------------------------------------------------------------------------------------------------