Implemented journal entries with multiply virtual AR/AP subaccounts.
[fa-stable.git] / admin / db / fiscalyears_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 // fiscal year routines
14 function add_fiscalyear($from_date, $to_date, $closed)
15 {
16         $from = date2sql($from_date);
17         $to = date2sql($to_date);
18
19         $sql = "INSERT INTO ".TB_PREF."fiscal_year (begin, end, closed)
20                 VALUES (".db_escape($from).",".db_escape($to).", ".db_escape($closed).")";
21
22         db_query($sql, "could not add fiscal year");
23 }
24
25 function update_fiscalyear($id, $closed)
26 {
27         $sql = "UPDATE ".TB_PREF."fiscal_year SET closed=".db_escape($closed)."
28                 WHERE id=".db_escape($id);
29
30         db_query($sql, "could not update fiscal year");
31 }
32
33 function get_all_fiscalyears()
34 {
35         $sql = "SELECT * FROM ".TB_PREF."fiscal_year ORDER BY begin";
36
37         return db_query($sql, "could not get all fiscal years");
38 }
39
40 function get_fiscalyear($id)
41 {
42         $sql = "SELECT * FROM ".TB_PREF."fiscal_year WHERE id=".db_escape($id);
43
44         $result = db_query($sql, "could not get fiscal year");
45
46         return db_fetch($result);
47 }
48
49 function get_current_fiscalyear()
50 {
51         global $path_to_root;
52         include_once($path_to_root . "/admin/db/company_db.inc");
53         $year = get_company_pref('f_year');
54
55         $sql = "SELECT * FROM ".TB_PREF."fiscal_year WHERE id=".db_escape($year);
56
57         $result = db_query($sql, "could not get current fiscal year");
58
59         return db_fetch($result);
60 }
61
62
63 function delete_fiscalyear($id)
64 {
65         begin_transaction();
66
67         $sql="DELETE FROM ".TB_PREF."fiscal_year WHERE id=".db_escape($id);
68
69         db_query($sql, "could not delete fiscal year");
70
71         commit_transaction();
72 }
73
74 function is_date_in_fiscalyears($date, $closed=true)
75 {
76         $date = date2sql($date);
77         $sql = "SELECT * FROM ".TB_PREF."fiscal_year WHERE '$date' >= begin AND '$date' <= end";
78         if (!$closed)
79                 $sql .= " AND closed=0";
80         $result = db_query($sql, "could not get all fiscal years");
81         return db_fetch($result) !== false;
82 }
83
84 function check_begin_end_date($date1, $date2)
85 {
86         $sql = "SELECT MAX(end), MIN(begin) FROM ".TB_PREF."fiscal_year";
87         $result = db_query($sql, "could not retrieve last fiscal years");
88         $row = db_fetch_row($result);
89         if ($row[0] === null)
90                 return true;
91         $max = add_days(sql2date($row[0]), 1);
92         $min = add_days(sql2date($row[1]), -1);
93         return ($max === $date1 || $min === $date2);
94 }
95
96 function next_begin_date()
97 {
98         $sql = "SELECT MAX(end) FROM ".TB_PREF."fiscal_year";
99         $result = db_query($sql, "could not retrieve last fiscal years");
100         $row = db_fetch_row($result);
101         if ($row[0] === null)
102                 return false;
103         return add_days(sql2date($row[0]), 1);
104 }
105
106 function check_years_before($date, $closed=false)
107 {
108         $date = date2sql($date);
109         $sql = "SELECT COUNT(*) FROM ".TB_PREF."fiscal_year WHERE begin < '$date'";
110         if (!$closed)
111                 $sql .= " AND closed=0";
112
113         $result = db_query($sql, "could not check fiscal years before");
114         $row = db_fetch_row($result);
115         return ($row[0] > 0);
116 }
117
118 //---------------------------------------------------------------------------------------------
119 function close_year($year)
120 {
121         $co = get_company_prefs();
122         if (get_gl_account($co['retained_earnings_act']) == false || get_gl_account($co['profit_loss_year_act']) == false)
123         {
124                 display_error(_("The Retained Earnings Account or the Profit and Loss Year Account has not been set in System and General GL Setup"));
125                 return false;
126         }
127         if (!is_account_balancesheet($co['retained_earnings_act']) || is_account_balancesheet($co['profit_loss_year_act']))
128         {
129                 display_error(_("The Retained Earnings Account should be a Balance Account or the Profit and Loss Year Account should be an Expense Account (preferred the last one in the Expense Class)"));
130                 return false;
131         }
132
133         begin_transaction();
134
135         $myrow = get_fiscalyear($year);
136         $to = $myrow['end'];
137         // retrieve total balances from balance sheet accounts
138     $sql = "SELECT SUM(amount) FROM ".TB_PREF."gl_trans INNER JOIN ".TB_PREF."chart_master ON account=account_code
139         INNER JOIN ".TB_PREF."chart_types ON account_type=id INNER JOIN ".TB_PREF."chart_class ON class_id=cid 
140                 WHERE ctype>=".CL_ASSETS." AND ctype <=".CL_EQUITY." AND tran_date <= '$to'";
141         $result = db_query($sql, "The total balance could not be calculated");
142
143         $row = db_fetch_row($result);
144         $balance = round2($row[0], user_price_dec());
145
146         $to = sql2date($to);
147
148         if ($balance != 0.0)
149         {
150                 $trans_type = ST_JOURNAL;
151                 $trans_id = get_next_trans_no($trans_type);
152
153                 add_gl_trans($trans_type, $trans_id, $to, $co['retained_earnings_act'],
154                         0, 0, _("Closing Year"), -$balance);
155                 add_gl_trans($trans_type, $trans_id, $to, $co['profit_loss_year_act'],
156                         0, 0, _("Closing Year"), $balance);
157
158         }       
159         close_transactions($to);
160
161         commit_transaction();
162         return true;
163 }
164
165 function open_year($year)
166 {
167         $myrow = get_fiscalyear($year);
168         $from = sql2date($myrow['begin']);
169 }
170
171 //---------------------------------------------------------------------------------------------
172 function delete_attachments_and_comments($type_no, $trans_no)
173 {
174         
175         $sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no = $type_no AND trans_no = $trans_no";
176         $result = db_query($sql, "Could not retrieve attachments");
177         while ($row = db_fetch($result))
178         {
179                 $dir =  company_path(). "/attachments";
180                 if (file_exists($dir."/".$row['unique_name']))
181                         unlink($dir."/".$row['unique_name']);
182                 $sql = "DELETE FROM ".TB_PREF."attachments WHERE  type_no = $type_no AND trans_no = $trans_no";
183                 db_query($sql, "Could not delete attachment");
184         }       
185         $sql = "DELETE FROM ".TB_PREF."comments WHERE  type = $type_no AND id = $trans_no";
186         db_query($sql, "Could not delete comments");
187         $sql = "DELETE FROM ".TB_PREF."refs WHERE  type = $type_no AND id = $trans_no";
188         db_query($sql, "Could not delete refs");
189 }       
190
191 //---------------------------------------------------------------------------------------------
192 function delete_this_fiscalyear($selected_id)
193 {
194         global $db_connections;
195         
196         db_backup($db_connections[$_SESSION["wa_current_user"]->company], 'Security backup before Fiscal Year Removal');
197         begin_transaction();
198         $ref = _("Open Balance");
199         $myrow = get_fiscalyear($selected_id);
200         $to = $myrow['end'];
201         $sql = "SELECT order_no, trans_type FROM ".TB_PREF."sales_orders WHERE ord_date <= '$to' AND type <> 1"; // don't take the templates
202         $result = db_query($sql, "Could not retrieve sales orders");
203         while ($row = db_fetch($result))
204         {
205                 $sql = "SELECT SUM(qty_sent), SUM(quantity) FROM ".TB_PREF."sales_order_details WHERE order_no = {$row['order_no']} AND trans_type = {$row['trans_type']}";
206                 $res = db_query($sql, "Could not retrieve sales order details");
207                 $row2 = db_fetch_row($res);
208                 if ($row2[0] == $row2[1])
209                 {
210                         $sql = "DELETE FROM ".TB_PREF."sales_order_details WHERE order_no = {$row['order_no']} AND trans_type = {$row['trans_type']}";
211                         db_query($sql, "Could not delete sales order details");
212                         $sql = "DELETE FROM ".TB_PREF."sales_orders WHERE order_no = {$row['order_no']} AND trans_type = {$row['trans_type']}";
213                         db_query($sql, "Could not delete sales order");
214                         delete_attachments_and_comments($row['trans_type'], $row['order_no']);
215                 }
216         }
217         $sql = "SELECT order_no FROM ".TB_PREF."purch_orders WHERE ord_date <= '$to'";
218         $result = db_query($sql, "Could not retrieve purchase orders");
219         while ($row = db_fetch($result))
220         {
221                 $sql = "SELECT SUM(quantity_ordered), SUM(quantity_received) FROM ".TB_PREF."purch_order_details WHERE order_no = {$row['order_no']}";
222                 $res = db_query($sql, "Could not retrieve purchase order details");
223                 $row2 = db_fetch_row($res);
224                 if ($row2[0] == $row2[1])
225                 {
226                         $sql = "DELETE FROM ".TB_PREF."purch_order_details WHERE order_no = {$row['order_no']}";
227                         db_query($sql, "Could not delete purchase order details");
228                         $sql = "DELETE FROM ".TB_PREF."purch_orders WHERE order_no = {$row['order_no']}";
229                         db_query($sql, "Could not delete purchase order");
230                         delete_attachments_and_comments(ST_PURCHORDER, $row['order_no']);
231                 }
232         }
233         $sql = "SELECT id FROM ".TB_PREF."grn_batch WHERE delivery_date <= '$to'";
234         $result = db_query($sql, "Could not retrieve grn batch");
235         while ($row = db_fetch($result))
236         {
237                 $sql = "DELETE FROM ".TB_PREF."grn_items WHERE grn_batch_id = {$row['id']}";
238                 db_query($sql, "Could not delete grn items");
239                 $sql = "DELETE FROM ".TB_PREF."grn_batch WHERE id = {$row['id']}";
240                 db_query($sql, "Could not delete grn batch");
241                 delete_attachments_and_comments(25, $row['id']);
242         }
243         $sql = "SELECT trans_no, type FROM ".TB_PREF."debtor_trans WHERE tran_date <= '$to' AND 
244                 (ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount) = alloc";
245         $result = db_query($sql, "Could not retrieve debtor trans");
246         while ($row = db_fetch($result))
247         {
248                 if ($row['type'] == ST_SALESINVOICE)
249                 {
250                         $deliveries = get_sales_parent_numbers($row['type'], $row['trans_no']);
251                         foreach ($deliveries as $delivery)
252                         {
253                                 $sql = "DELETE FROM ".TB_PREF."debtor_trans_details WHERE debtor_trans_no = $delivery AND debtor_trans_type = ".ST_CUSTDELIVERY;
254                                 db_query($sql, "Could not delete debtor trans details");
255                                 $sql = "DELETE FROM ".TB_PREF."debtor_trans WHERE trans_no = $delivery AND type = ".ST_CUSTDELIVERY;
256                                 db_query($sql, "Could not delete debtor trans");
257                                 delete_attachments_and_comments(ST_CUSTDELIVERY, $delivery);
258                         }               
259                 }       
260                 $sql = "DELETE FROM ".TB_PREF."cust_allocations WHERE trans_no_from = {$row['trans_no']} AND trans_type_from = {$row['type']}";
261                 db_query($sql, "Could not delete cust allocations");
262                 $sql = "DELETE FROM ".TB_PREF."debtor_trans_details WHERE debtor_trans_no = {$row['trans_no']} AND debtor_trans_type = {$row['type']}";
263                 db_query($sql, "Could not delete debtor trans details");
264                 $sql = "DELETE FROM ".TB_PREF."debtor_trans WHERE trans_no = {$row['trans_no']} AND type = {$row['type']}";
265                 db_query($sql, "Could not delete debtor trans");
266                 delete_attachments_and_comments($row['type'], $row['trans_no']);
267         }
268         $sql = "SELECT trans_no, type FROM ".TB_PREF."supp_trans WHERE tran_date <= '$to' AND 
269                 ABS(ov_amount + ov_gst + ov_discount) = alloc";
270         $result = db_query($sql, "Could not retrieve supp trans");
271         while ($row = db_fetch($result))
272         {
273                 $sql = "DELETE FROM ".TB_PREF."supp_allocations WHERE trans_no_from = {$row['trans_no']} AND trans_type_from = {$row['type']}";
274                 db_query($sql, "Could not delete supp allocations");
275                 $sql = "DELETE FROM ".TB_PREF."supp_invoice_items WHERE supp_trans_no = {$row['trans_no']} AND supp_trans_type = {$row['type']}";
276                 db_query($sql, "Could not delete supp invoice items");
277                 $sql = "DELETE FROM ".TB_PREF."supp_trans WHERE trans_no = {$row['trans_no']} AND type = {$row['type']}";
278                 db_query($sql, "Could not delete supp trans");
279                 delete_attachments_and_comments($row['type'], $row['trans_no']);
280         }
281         $sql = "SELECT id FROM ".TB_PREF."workorders WHERE released_date <= '$to' AND closed=1";
282         $result = db_query($sql, "Could not retrieve supp trans");
283         while ($row = db_fetch($result))
284         {
285                 $sql = "SELECT issue_no FROM ".TB_PREF."wo_issues WHERE workorder_id = {$row['id']}"; 
286                 $res = db_query($sql, "Could not retrieve wo issues");
287                 while ($row2 = db_fetch_row($res))
288                 {
289                         $sql = "DELETE FROM ".TB_PREF."wo_issue_items WHERE issue_id = {$row2[0]}";
290                         db_query($sql, "Could not delete wo issue items");
291                 }       
292                 delete_attachments_and_comments(ST_MANUISSUE, $row['id']);
293                 $sql = "DELETE FROM ".TB_PREF."wo_issues WHERE workorder_id = {$row['id']}";
294                 db_query($sql, "Could not delete wo issues");
295                 $sql = "DELETE FROM ".TB_PREF."wo_manufacture WHERE workorder_id = {$row['id']}";
296                 db_query($sql, "Could not delete wo manufacture");
297                 $sql = "DELETE FROM ".TB_PREF."wo_requirements WHERE workorder_id = {$row['id']}";
298                 db_query($sql, "Could not delete wo requirements");
299                 $sql = "DELETE FROM ".TB_PREF."workorders WHERE id = {$row['id']}";
300                 db_query($sql, "Could not delete workorders");
301                 delete_attachments_and_comments(ST_WORKORDER, $row['id']);
302         }
303         $sql = "SELECT loc_code, stock_id, SUM(qty) AS qty, SUM(qty*standard_cost) AS std_cost FROM ".TB_PREF."stock_moves WHERE tran_date <= '$to' GROUP by 
304                 loc_code, stock_id";
305         $result = db_query($sql, "Could not retrieve supp trans");
306         while ($row = db_fetch($result))
307         {
308                 $sql = "DELETE FROM ".TB_PREF."stock_moves WHERE tran_date <= '$to' AND loc_code = '{$row['loc_code']}' AND stock_id = '{$row['stock_id']}'";
309                 db_query($sql, "Could not delete stock moves");
310                 $qty = $row['qty'];
311                 $std_cost = ($qty == 0 ? 0 : round2($row['std_cost'] / $qty, user_price_dec()));
312                 $sql = "INSERT INTO ".TB_PREF."stock_moves (stock_id, loc_code, tran_date, reference, qty, standard_cost) VALUES
313                         ('{$row['stock_id']}', '{$row['loc_code']}', '$to', '$ref', $qty, $std_cost)";   
314                 db_query($sql, "Could not insert stock move");
315         }               
316         $sql = "DELETE FROM ".TB_PREF."voided WHERE date_ <= '$to'";
317         db_query($sql, "Could not delete voided items");
318         $sql = "DELETE FROM ".TB_PREF."trans_tax_details WHERE tran_date <= '$to'";
319         db_query($sql, "Could not delete trans tax details");
320         $sql = "DELETE FROM ".TB_PREF."exchange_rates WHERE date_ <= '$to'";
321         db_query($sql, "Could not delete exchange rates");
322         $sql = "DELETE FROM ".TB_PREF."budget_trans WHERE tran_date <= '$to'";
323         db_query($sql, "Could not delete exchange rates");
324         
325         $sql = "SELECT account, SUM(amount) AS amount, person_type_id, person_id FROM "
326                 .TB_PREF."gl_trans WHERE tran_date <= '$to' GROUP by account, person_type_id, person_id";
327         $result = db_query($sql, "Could not retrieve gl trans");
328         $trans_no = get_next_trans_no(ST_JOURNAL);
329
330         $last_account='';
331         while ($row = db_fetch($result))
332         {
333                 if ($last_account != $row['account']) // deletes all subledgers postings, so do it once for account
334                 {
335                         $sql = "DELETE FROM ".TB_PREF."gl_trans WHERE tran_date <= '$to' AND account = '{$row['account']}'";
336                         db_query($sql, "Could not delete gl trans");
337                         $last_account = $row['account'];
338                 }
339                 if (is_account_balancesheet($row['account']) && $row['amount'])
340                 {
341                         $sql = "INSERT INTO ".TB_PREF."gl_trans (type, type_no, tran_date, account, memo_, amount, person_type_id, person_id) VALUES
342                                 (".ST_JOURNAL.", $trans_no, '$to', '{$row['account']}', '$ref', {$row['amount']}, "
343                                 .db_escape($row['person_type_id'], true).", ".db_escape($row['person_id'], true).")";
344                         db_query($sql, "Could not insert gl trans");
345                 }
346         }
347         
348         $sql = "SELECT bank_act, SUM(amount) AS amount FROM ".TB_PREF."bank_trans WHERE trans_date <= '$to' GROUP BY bank_act";
349         $result = db_query($sql, "Could not retrieve bank trans");
350         while ($row = db_fetch($result))
351         {
352                 $sql = "DELETE FROM ".TB_PREF."bank_trans WHERE trans_date <= '$to' AND bank_act = '{$row['bank_act']}'";
353                 db_query($sql, "Could not delete bank trans");
354                 $sql = "INSERT INTO ".TB_PREF."bank_trans (type, trans_no, trans_date, bank_act, ref, amount) VALUES
355                         (0, 0, '$to', '{$row['bank_act']}', '$ref', {$row['amount']})";
356                 db_query($sql, "Could not insert bank trans");
357         }       
358         
359         $sql = "DELETE FROM ".TB_PREF."audit_trail WHERE gl_date <= '$to'";
360         db_query($sql, "Could not delete audit trail");
361         
362         $sql = "SELECT type, id FROM ".TB_PREF."comments WHERE type != ".ST_SALESQUOTE." AND type != ".ST_SALESORDER." AND type != ".ST_PURCHORDER;
363         $result = db_query($sql, "Could not retrieve comments");
364         while ($row = db_fetch($result))
365         {
366                 $sql = "SELECT count(*) FROM ".TB_PREF."gl_trans WHERE type = {$row['type']} AND type_no = {$row['id']}";
367                 $res = db_query($sql, "Could not retrieve gl_trans");
368                 $row2 = db_fetch_row($res);
369                 if ($row2[0] == 0) // if no link, then delete comments
370                 {
371                         $sql = "DELETE FROM ".TB_PREF."comments WHERE type = {$row['type']} AND id = {$row['id']}";
372                         db_query($sql, "Could not delete comments");
373                 }
374         }       
375         $sql = "SELECT type, id FROM ".TB_PREF."refs WHERE type != ".ST_SALESQUOTE." AND type != ".ST_SALESORDER." AND type != ".ST_PURCHORDER;
376         $result = db_query($sql, "Could not retrieve refs");
377         while ($row = db_fetch($result))
378         {
379                 $sql = "SELECT count(*) FROM ".TB_PREF."gl_trans WHERE type = {$row['type']} AND type_no = {$row['id']}";
380                 $res = db_query($sql, "Could not retrieve gl_trans");
381                 $row2 = db_fetch_row($res);
382                 if ($row2[0] == 0) // if no link, then delete refs
383                 {
384                         $sql = "DELETE FROM ".TB_PREF."refs WHERE type = {$row['type']} AND id = {$row['id']}";
385                         db_query($sql, "Could not delete refs");
386                 }
387         }       
388                 
389         delete_fiscalyear($selected_id);
390         commit_transaction();   
391 }
392
393
394 ?>