[0004212] Work Order Entry: fixed error when voided WO refence is reused.
[fa-stable.git] / gl / bank_account_reconcile.php
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 $page_security = 'SA_RECONCILE';
13 $path_to_root = "..";
14 include($path_to_root . "/includes/db_pager.inc");
15 include_once($path_to_root . "/includes/session.inc");
16
17 include_once($path_to_root . "/includes/date_functions.inc");
18 include_once($path_to_root . "/includes/ui.inc");
19 include_once($path_to_root . "/includes/data_checks.inc");
20
21 include_once($path_to_root . "/gl/includes/gl_db.inc");
22 include_once($path_to_root . "/includes/banking.inc");
23
24 $js = "";
25 if ($SysPrefs->use_popup_windows)
26         $js .= get_js_open_window(800, 500);
27 if (user_use_date_picker())
28         $js .= get_js_date_picker();
29
30 add_js_file('reconcile.js');
31
32 page(_($help_context = "Reconcile Bank Account"), false, false, "", $js);
33
34 check_db_has_bank_accounts(_("There are no bank accounts defined in the system."));
35
36 function check_date() {
37         if (!is_date(get_post('reconcile_date'))) {
38                 display_error(_("Invalid reconcile date format"));
39                 set_focus('reconcile_date');
40                 return false;
41         }
42         return true;
43 }
44 //
45 //      This function can be used directly in table pager 
46 //      if we would like to change page layout.
47 //
48 function rec_checkbox($row)
49 {
50         $name = "rec_" .$row['id'];
51         $hidden = 'last['.$row['id'].']';
52         $value = $row['reconciled'] != '';
53
54 // save also in hidden field for testing during 'Reconcile'
55         return checkbox(null, $name, $value, true, _('Reconcile this transaction'))
56                 . hidden($hidden, $value, false);
57 }
58
59 function systype_name($dummy, $type)
60 {
61         global $systypes_array;
62         
63         return $systypes_array[$type];
64 }
65
66 function trans_view($trans)
67 {
68         return get_trans_view_str($trans["type"], $trans["trans_no"]);
69 }
70
71 function gl_view($row)
72 {
73         return get_gl_view_str($row["type"], $row["trans_no"]);
74 }
75
76 function fmt_debit($row)
77 {
78         $value = $row["amount"];
79         return $value>=0 ? price_format($value) : '';
80 }
81
82 function fmt_credit($row)
83 {
84         $value = -$row["amount"];
85         return $value>0 ? price_format($value) : '';
86 }
87
88 function fmt_person($trans)
89 {
90         return get_counterparty_name($trans["type"], $trans["trans_no"]);
91 }
92
93 function fmt_memo($row)
94 {
95         $value = $row["memo_"];
96         return $value;
97 }
98
99 function update_data()
100 {
101         global $Ajax;
102         
103         unset($_POST["beg_balance"]);
104         unset($_POST["end_balance"]);
105         $Ajax->activate('summary');
106 }
107 //---------------------------------------------------------------------------------------------
108 // Update db record if respective checkbox value has changed.
109 //
110 function change_tpl_flag($reconcile_id)
111 {
112         global  $Ajax;
113
114         if (!check_date() 
115                 && check_value("rec_".$reconcile_id)) // temporary fix
116                 return false;
117
118         if (get_post('bank_date')=='')  // new reconciliation
119                 $Ajax->activate('bank_date');
120
121         $_POST['bank_date'] = date2sql(get_post('reconcile_date'));
122         $reconcile_value = check_value("rec_".$reconcile_id) 
123                                                 ? ("'".$_POST['bank_date'] ."'") : 'NULL';
124         
125         update_reconciled_values($reconcile_id, $reconcile_value, $_POST['reconcile_date'],
126                 input_num('end_balance'), $_POST['bank_account']);
127                 
128         $Ajax->activate('reconciled');
129         $Ajax->activate('difference');
130         return true;
131 }
132
133 function set_tpl_flag($reconcile_id)
134 {
135         global  $Ajax;
136
137         if (check_value("rec_".$reconcile_id))
138                 return;
139
140         if (get_post('bank_date')=='')  // new reconciliation
141                 $Ajax->activate('bank_date');
142
143         $_POST['bank_date'] = date2sql(get_post('reconcile_date'));
144         $reconcile_value =  ("'".$_POST['bank_date'] ."'");
145         
146         update_reconciled_values($reconcile_id, $reconcile_value, $_POST['reconcile_date'],
147                 input_num('end_balance'), $_POST['bank_account']);
148                 
149         $Ajax->activate('reconciled');
150         $Ajax->activate('difference');
151 }
152
153 if (!isset($_POST['reconcile_date'])) { // init page
154         $_POST['reconcile_date'] = new_doc_date();
155 //      $_POST['bank_date'] = date2sql(Today());
156 }
157
158 if (list_updated('bank_account')) {
159     $Ajax->activate('bank_date');
160         update_data();
161 }
162 if (list_updated('bank_date')) {
163         $_POST['reconcile_date'] = 
164                 get_post('bank_date')=='' ? Today() : sql2date($_POST['bank_date']);
165         update_data();
166 }
167 if (get_post('_reconcile_date_changed')) {
168         $_POST['bank_date'] = check_date() ? date2sql(get_post('reconcile_date')) : '';
169     $Ajax->activate('bank_date');
170         update_data();
171 }
172
173 $id = find_submit('_rec_');
174 if ($id != -1) 
175         change_tpl_flag($id);
176
177
178 if (isset($_POST['Reconcile'])) {
179         set_focus('bank_date');
180         foreach($_POST['last'] as $id => $value)
181                 if ($value != check_value('rec_'.$id))
182                         if(!change_tpl_flag($id)) break;
183
184     $Ajax->activate('_page_body');
185 }
186
187 if (isset($_POST['ReconcileAll'])) {
188         set_focus('bank_date');
189         foreach($_POST['last'] as $id => $value)
190                 set_tpl_flag($id);
191
192     $Ajax->activate('_page_body');
193 }
194
195 //------------------------------------------------------------------------------------------------
196 start_form();
197 start_table(TABLESTYLE_NOBORDER);
198 start_row();
199 bank_accounts_list_cells(_("Account:"), 'bank_account', null, true);
200
201 bank_reconciliation_list_cells(_("Bank Statement:"), get_post('bank_account'),
202         'bank_date', null, true, _("New"));
203 end_row();
204 end_table();
205
206 $result = get_max_reconciled(get_post('reconcile_date'), $_POST['bank_account']);
207
208 if ($row = db_fetch($result)) {
209         $_POST["reconciled"] = price_format($row["end_balance"]-$row["beg_balance"]);
210         $total = $row["total"];
211         if (!isset($_POST["beg_balance"])) { // new selected account/statement
212                 $_POST["last_date"] = sql2date($row["last_date"]);
213                 $_POST["beg_balance"] = price_format($row["beg_balance"]);
214                 $_POST["end_balance"] = price_format($row["end_balance"]);
215                 if (get_post('bank_date')) {
216                         // if it is the last updated bank statement retrieve ending balance
217
218                         $row = get_ending_reconciled($_POST['bank_account'], $_POST['bank_date']);
219                         if($row) {
220                                 $_POST["end_balance"] = price_format($row["ending_reconcile_balance"]);
221                         }
222                 }
223         } 
224 }
225
226 echo "<hr>";
227
228 div_start('summary');
229
230 start_table(TABLESTYLE);
231 $th = array(_("Reconcile Date"), _("Beginning<br>Balance"), 
232         _("Ending<br>Balance"), _("Account<br>Total"),_("Reconciled<br>Amount"), _("Difference"));
233 table_header($th);
234 start_row();
235
236 date_cells("", "reconcile_date", _('Date of bank statement to reconcile'), 
237         get_post('bank_date')=='', 0, 0, 0, null, true);
238
239 amount_cells_ex("", "beg_balance", 15);
240
241 amount_cells_ex("", "end_balance", 15);
242
243 $reconciled = input_num('reconciled');
244 $difference = input_num("end_balance") - input_num("beg_balance") - $reconciled;
245
246 amount_cell($total);
247 amount_cell($reconciled, false, '', "reconciled");
248 amount_cell($difference, false, '', "difference");
249
250 end_row();
251 end_table();
252 div_end();
253 echo "<hr>";
254 //------------------------------------------------------------------------------------------------
255
256 if (!isset($_POST['bank_account']))
257     $_POST['bank_account'] = "";
258
259 $sql = get_sql_for_bank_account_reconcile(get_post('bank_account'), get_post('reconcile_date'));
260
261 $act = get_bank_account($_POST["bank_account"]);
262 display_heading($act['bank_account_name']." - ".$act['bank_curr_code']);
263
264         $cols =
265         array(
266                 _("Type") => array('fun'=>'systype_name', 'ord'=>''),
267                 _("#") => array('fun'=>'trans_view', 'ord'=>''),
268                 _("Reference"), 
269                 _("Date") => 'date',
270                 _("Debit") => array('align'=>'right', 'fun'=>'fmt_debit'), 
271                 _("Credit") => array('align'=>'right','insert'=>true, 'fun'=>'fmt_credit'), 
272             _("Person/Item") => array('fun'=>'fmt_person'), 
273                 _("Memo") => array('fun'=>'fmt_memo'),
274                 array('insert'=>true, 'fun'=>'gl_view'),
275                 "X"=>array('insert'=>true, 'fun'=>'rec_checkbox')
276            );
277         $table =& new_db_pager('trans_tbl', $sql, $cols);
278
279         $table->width = "80%";
280         display_db_pager($table);
281
282 br(1);
283 echo '<center>';
284 submit('Reconcile', _("Reconcile"), true, '', null);
285 submit('ReconcileAll', _("Reconcile All"), true, '');
286 echo '</center>';
287 end_form();
288
289 //------------------------------------------------------------------------------------------------
290
291 end_page();
292