Payments & Deposits(Rounding Problem). Fixed.
[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 += round2($row['value'], user_price_dec());
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   commit_transaction();
61
62   return $trans_no;
63 }
64
65 //--------------------------------------------------------------------------------------------------
66
67 function get_fixed_asset_move($stock_id, $tran_type) {
68
69   $sql = "SELECT * FROM ".TB_PREF."stock_moves 
70             WHERE stock_id=".db_escape($stock_id)."
71                 AND type=".db_escape($tran_type);
72
73   $result = db_query($sql, "cannot retrieve fixed asset move");
74
75   if (db_num_rows($result) == 0)
76     return false;
77
78   $row = db_fetch_assoc($result);
79   return $row;
80 }
81
82 function get_fixed_asset_disposal($stock_id) {
83
84   $sql = "SELECT * FROM ".TB_PREF."stock_moves 
85         WHERE stock_id=".db_escape($stock_id)."
86                 AND (type=".ST_INVADJUST." OR type=".ST_CUSTDELIVERY.")
87         ORDER BY tran_date DESC
88         LIMIT 1";
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         ORDER BY t.tran_date DESC
109         LIMIT 1";
110
111         $result = db_query($sql, "cannot retrieve fixed asset move");
112
113         if (db_num_rows($result) == 0)
114         return false;
115
116         $row = db_fetch_assoc($result);
117         return $row;
118 }
119
120 //--------------------------------------------------------------------------------------------------
121
122 function get_fixed_asset_class($id)
123 {
124         $sql="SELECT * FROM ".TB_PREF."stock_fa_class WHERE fa_class_id=".db_escape($id);
125
126         $result = db_query($sql,"a fixed asset class could not be retrieved");
127
128         return db_fetch($result);
129 }
130
131 //--------------------------------------------------------------------------------------------------
132
133 function get_sql_for_fixed_assets($show_inactive = false)
134 {
135         $sql = "SELECT s.stock_id, c.description, s.units, s.description as name,
136         s.depreciation_rate, s.depreciation_method, s.inactive, 
137         s.material_cost, s.purchase_cost, s.depreciation_factor
138     FROM ".TB_PREF."stock_master s"
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 ";
144
145         $sql .= " ORDER BY c.description ";
146
147         return $sql;
148 }
149
150 //--------------------------------------------------------------------------------------------------
151
152 //function get_sql_for_fa_journal_inquiry($stock_id)
153 //{
154 //
155 //      $sql = "SELECT  IF(ISNULL(a.gl_seq),0,a.gl_seq) as gl_seq,
156 //              gl.tran_date,
157 //              gl.type as trans_type,
158 //              gl.type_no as trans_no,
159 //              IFNULL(max(supp.supp_name), max(cust.name)) as name,
160 //              refs.reference,
161 //              SUM(IF(gl.amount>0, gl.amount,0)) as amount,
162 //              com.memo_,
163 //              IF(ISNULL(u.user_id),'',u.user_id) as user_id";
164 //
165 //      $sql.= " FROM ".TB_PREF."gl_trans as gl
166 //               LEFT JOIN ".TB_PREF."audit_trail as a ON
167 //                      (gl.type=a.type AND gl.type_no=a.trans_no)
168 //               LEFT JOIN ".TB_PREF."comments as com ON
169 //                      (gl.type=com.type AND gl.type_no=com.id)
170 //               LEFT JOIN ".TB_PREF."refs as refs ON
171 //                      (gl.type=refs.type AND gl.type_no=refs.id)
172 //               LEFT JOIN ".TB_PREF."users as u ON
173 //                      a.user=u.id
174 //               LEFT JOIN ".TB_PREF."debtor_trans dt ON dt.type=gl.type AND gl.type_no=dt.trans_no
175 //               LEFT JOIN ".TB_PREF."debtors_master cust ON gl.person_type_id=2 AND gl.person_id=cust.debtor_no
176 //               LEFT JOIN ".TB_PREF."supp_trans st ON st.type=gl.type AND gl.type_no=st.trans_no
177 //               LEFT JOIN ".TB_PREF."suppliers supp ON gl.person_type_id=3 AND gl.person_id=supp.supplier_id
178 //               WHERE gl.amount!=0
179 //     AND NOT ISNULL(a.gl_seq)";
180 //
181 ////    if (!$alsoclosed) {
182 ////            $sql .= " AND gl_seq=0";
183 ////    }
184 ////    else
185 ////            $sql .= " AND NOT ISNULL(a.gl_seq)";
186 //
187 //      $sql .= " GROUP BY tran_date, gl_seq, trans_type, trans_no";
188 //
189 //      return $sql;
190 //}
191
192 //--------------------------------------------------------------------------------------------------