-
Notifications
You must be signed in to change notification settings - Fork 1
/
BankMatching.php
executable file
·338 lines (298 loc) · 12.2 KB
/
BankMatching.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<?php
/* $Id$*/
include('includes/session.inc');
$title = _('Bank Account Matching');
include('includes/header.inc');
if ((isset($_GET['Type']) and $_GET['Type']=='Receipts') or
(isset($_POST['Type']) and $_POST['Type']=='Receipts')){
$Type = 'Receipts';
$TypeName =_('Receipts');
echo '<p class="page_title_text">
<img src="'.$rootpath.'/css/'.$theme.'/images/money_add.png" title="' . _('Bank Matching') . '" alt="" />' . ' ' . _('Bank Account Matching - Receipts') . '
</p>';
} elseif ((isset($_GET['Type']) and $_GET['Type']=='Payments') or
(isset($_POST['Type']) and $_POST['Type']=='Payments')) {
$Type = 'Payments';
$TypeName =_('Payments');
echo '<p class="page_title_text">
<img src="'.$rootpath.'/css/'.$theme.'/images/money_delete.png" title="' . _('Bank Matching') . '" alt="" />' . ' ' . _('Bank Account Matching - Payments') . '
</p>';
} else {
prnMsg(_('This page must be called with a bank transaction type') . '. ' . _('It should not be called directly'),'error');
include ('includes/footer.inc');
exit;
}
if (isset($_GET['Account'])) {
$_POST['BankAccount']=$_GET['Account'];
$_POST['ShowTransactions']=true;
$_POST['Ostg_or_All']='Ostg';
$_POST['First20_or_All']='All';
}
if (isset($_POST['Update']) and $_POST['RowCounter']>1){
for ($Counter=1;$Counter <= $_POST['RowCounter']; $Counter++){
if (isset($_POST['Clear_' . $Counter]) and $_POST['Clear_' . $Counter]==True){
/*Get amount to be cleared */
$sql = "SELECT amount,
exrate
FROM banktrans
WHERE banktransid='" . $_POST['BankTrans_' . $Counter]."'";
$ErrMsg = _('Could not retrieve transaction information');
$result = DB_query($sql,$db,$ErrMsg);
$myrow=DB_fetch_array($result);
$AmountCleared = round($myrow[0] / $myrow[1],2);
/*Update the banktrans recoord to match it off */
$sql = "UPDATE banktrans SET amountcleared= '". $AmountCleared . "'
WHERE banktransid='" . $_POST['BankTrans_' . $Counter] . "'";
$ErrMsg = _('Could not match off this payment because');
$result = DB_query($sql,$db,$ErrMsg);
} elseif ((isset($_POST['AmtClear_' . $Counter]) and filter_currency_input($_POST['AmtClear_' . $Counter])<0 and $Type=='Payments')
or ($Type=='Receipts' and isset($_POST['AmtClear_' . $Counter]) and filter_currency_input($_POST['AmtClear_' . $Counter])>0)) {
/*if the amount entered was numeric and negative for a payment or positive for a receipt */
$sql = "UPDATE banktrans SET amountcleared=" . filter_currency_input($_POST['AmtClear_' . $Counter]) . "
WHERE banktransid='" . $_POST['BankTrans_' . $Counter]."'";
$ErrMsg = _('Could not update the amount matched off this bank transaction because');
$result = DB_query($sql,$db,$ErrMsg);
} elseif (isset($_POST['Unclear_' . $Counter]) and $_POST['Unclear_' . $Counter]==True){
$sql = "UPDATE banktrans SET amountcleared = 0
WHERE banktransid='" . $_POST['BankTrans_' . $Counter]."'";
$ErrMsg = _('Could not unclear this bank transaction because');
$result = DB_query($sql,$db,$ErrMsg);
}
}
/*Show the updated position with the same criteria as previously entered*/
$_POST['ShowTransactions'] = True;
}
echo '<div class="page_help_text">' . _('Use this screen to match webERP Receipts and Payments to your Bank Statement. Check your bank statement and click the check-box when you find the matching transaction.') . '</div><br />';
echo '<form action="'. htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<input type="hidden" name="Type" value="' . $Type . '" />';
echo '<table class="selection">
<tr>
<td align="left">' . _('Bank Account') . ':</td>
<td colspan="3"><select tabindex="1" name="BankAccount">';
$sql = "SELECT accountcode, bankaccountname FROM bankaccounts";
$resultBankActs = DB_query($sql,$db);
while ($myrow=DB_fetch_array($resultBankActs)){
if (isset($_POST['BankAccount']) and $myrow['accountcode']==$_POST['BankAccount']){
echo '<option selected="selected" value="' . $myrow['accountcode'] . '">' . $myrow['bankaccountname'] . '</option>';
} else {
echo '<option value="' . $myrow['accountcode'] . '">' . $myrow['bankaccountname'] . '</option>';
}
}
echo '</select></td>
</tr>';
if (!isset($_POST['BeforeDate']) or !Is_Date($_POST['BeforeDate'])){
$_POST['BeforeDate'] = Date($_SESSION['DefaultDateFormat']);
}
if (!isset($_POST['AfterDate']) or !Is_Date($_POST['AfterDate'])){
$_POST['AfterDate'] = Date($_SESSION['DefaultDateFormat'], Mktime(0,0,0,Date('m')-3,Date('d'),Date('y')));
}
// Change to allow input of FROM DATE and then TO DATE, instead of previous back-to-front method, add datepicker
echo '<tr>
<td>' . _('Show') . ' ' . $TypeName . ' ' . _('from') . ':</td>
<td><input tabindex="3" type="text" name="AfterDate" class="date" alt="'.$_SESSION['DefaultDateFormat'].'" size="12" maxlength="10" onChange="isDate(this, this.value, '."'".$_SESSION['DefaultDateFormat']."'".')" value="' . $_POST['AfterDate'] . '" /></td>
</tr>';
echo '<td>' . _('to') . ':</td>
<td><input tabindex="2" type="text" name="BeforeDate" class="date" alt="'.$_SESSION['DefaultDateFormat'].'" size="12" maxlength="10" onChange="isDate(this, this.value, '."'".$_SESSION['DefaultDateFormat']."'".')" value="' . $_POST['BeforeDate'] . '" /></td>
</tr>';
echo '<tr>
<td colspan="3">' . _('Choose outstanding') . ' ' . $TypeName . ' ' . _('only or all') . ' ' . $TypeName . ' ' . _('in the date range') . ':</td>
<td><select tabindex="4" name="Ostg_or_All">';
if ($_POST['Ostg_or_All']=='All'){
echo '<option selected="selected" value="All">' . _('Show all') . ' ' . $TypeName . ' ' . _('in the date range') . '</option>';
echo '<option value="Ostdg">' . _('Show unmatched') . ' ' . $TypeName . ' ' . _('only') . '</option>';
} else {
echo '<option value="All">' . _('Show all') . ' ' . $TypeName . ' ' . _('in the date range') . '</option>';
echo '<option selected="selected" value="Ostdg">' . _('Show unmatched') . ' ' . $TypeName . ' ' . _('only') . '</option>';
}
echo '</select></td>
</tr>';
echo '<tr>
<td colspan="3">' . _('Choose to display only the first 20 matching') . ' ' . $TypeName . ' ' . _('or all') . ' ' . $TypeName . ' ' . _('meeting the criteria') . ':</td>
<td><select tabindex="5" name="First20_or_All">';
if ($_POST['First20_or_All']=='All'){
echo '<option selected="selected" value="All">' . _('Show all') . ' ' . $TypeName . ' ' . _('in the date range') . '</option>';
echo '<option value="First20">' . _('Show only the first 20') . ' ' . $TypeName . '</option>';
} else {
echo '<option value="All">' . _('Show all') . ' ' . $TypeName . ' ' . _('in the date range') . '</option>';
echo '<option selected="selected" value="First20">' . _('Show only the first 20') . ' ' . $TypeName . '</option>';
}
echo '</select></td>
</tr>';
echo '</table>
<br />
<div class="centre">
<button tabindex="6" type="submit" name="ShowTransactions">' . _('Show selected') . ' ' . $TypeName . '</button>
<p>
<a href="' . $rootpath . '/BankReconciliation.php">' . _('Show reconciliation') . '</a>
</p>
</div>';
$InputError=0;
if (!Is_Date($_POST['BeforeDate'])){
$InputError =1;
prnMsg(_('The date entered for the field to show') . ' ' . $TypeName . ' ' . _('before') . ', ' .
_('is not entered in a recognised date format') . '. ' . _('Entry is expected in the format') . ' ' .
$_SESSION['DefaultDateFormat'],'error');
}
if (!Is_Date($_POST['AfterDate'])){
$InputError =1;
prnMsg( _('The date entered for the field to show') . ' ' . $Type . ' ' . _('after') . ', ' .
_('is not entered in a recognised date format') . '. ' . _('Entry is expected in the format') . ' ' .
$_SESSION['DefaultDateFormat'],'error');
}
if ($InputError !=1
AND isset($_POST['BankAccount'])
AND $_POST['BankAccount']!=''
AND isset($_POST['ShowTransactions'])){
$SQLBeforeDate = FormatDateForSQL($_POST['BeforeDate']);
$SQLAfterDate = FormatDateForSQL($_POST['AfterDate']);
if ($_POST['Ostg_or_All']=='All'){
if ($Type=='Payments'){
$sql = "SELECT banktransid,
ref,
chequeno,
amountcleared,
transdate,
amount/exrate as amt,
banktranstype,
currcode
FROM banktrans
WHERE amount < 0
AND transdate >= '". $SQLAfterDate . "'
AND transdate <= '" . $SQLBeforeDate . "'
AND bankact='" . $_POST['BankAccount'] . "'
ORDER BY transdate";
} else { /* Type must == Receipts */
$sql = "SELECT banktransid,
ref,
chequeno,
amountcleared,
transdate,
amount/exrate as amt,
banktranstype,
currcode
FROM banktrans
WHERE amount > 0
AND transdate >= '". $SQLAfterDate . "'
AND transdate <= '" . $SQLBeforeDate . "'
AND bankact='" . $_POST['BankAccount'] . "'
ORDER BY transdate";
}
} else { /*it must be only the outstanding bank trans required */
if ($Type=='Payments'){
$sql = "SELECT banktransid,
ref,
chequeno,
amountcleared,
transdate,
amount/exrate as amt,
banktranstype,
currcode
FROM banktrans
WHERE amount < 0
AND transdate >= '". $SQLAfterDate . "'
AND transdate <= '" . $SQLBeforeDate . "'
AND bankact=" . $_POST['BankAccount'] . "
AND ABS(amountcleared - (amount / exrate)) > 0.009
ORDER BY transdate";
} else { /* Type must == Receipts */
$sql = "SELECT banktransid,
ref,
chequeno,
amountcleared,
transdate,
amount/exrate as amt,
banktranstype,
currcode
FROM banktrans
WHERE amount > 0
AND transdate >= '". $SQLAfterDate . "'
AND transdate <= '" . $SQLBeforeDate . "'
AND bankact='" . $_POST['BankAccount'] . "'
AND ABS(amountcleared - (amount / exrate)) > 0.009
ORDER BY transdate";
}
}
if ($_POST['First20_or_All']!='All'){
$sql = $sql . " LIMIT 20";
}
$ErrMsg = _('The payments with the selected criteria could not be retrieved because');
$PaymentsResult = DB_query($sql, $db, $ErrMsg);
echo '<table cellpadding="2" class="selection">
<tr>
<th>'. _('Cheque No') . '</th>
<th>' . _('Ref') . '</th>
<th>' . $TypeName . '</th>
<th>' . _('Date') . '</th>
<th>' . _('Amount') . '</th>
<th>' . _('Outstanding') . '</th>
<th colspan="3">' . _('Clear') . ' / ' . _('Unclear') . '</th>
</tr>';
$k = 0; //row colour counter
$i = 1; //no of rows counter
while ($myrow=DB_fetch_array($PaymentsResult)) {
$DisplayTranDate = ConvertSQLDate($myrow['transdate']);
$Outstanding = $myrow['amt']- $myrow['amountcleared'];
if (ABS($Outstanding)<0.009){ /*the payment is cleared dont show the check box*/
printf('<tr bgcolor="#CCCEEE">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td colspan="2">%s</td>
<td><input type="checkbox" name="Unclear_%s" /><input type="hidden" name="BankTrans_%s" value="%s" /></td>
</tr>',
$myrow['chequeno'],
$myrow['ref'],
$myrow['banktranstype'],
$DisplayTranDate,
locale_money_format($myrow['amt'],$myrow['currcode']),
locale_money_format($Outstanding,$myrow['currcode']),
_('Unclear'),
$i,
$i,
$myrow['banktransid']);
} else{
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k=1;
}
printf('<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td><input type="checkbox" name="Clear_%s" /><input type="hidden" name="BankTrans_%s" value="%s" /></td>
<td colspan="2"><input type="text" maxlength="15" size="15" class="number" name="AmtClear_%s" /></td>
</tr>',
$myrow['chequeno'],
$myrow['ref'],
$myrow['banktranstype'],
$DisplayTranDate,
locale_money_format($myrow['amt'],$myrow['currcode']),
locale_money_format($Outstanding,$myrow['currcode']),
$i,
$i,
$myrow['banktransid'],
$i
);
}
$i++;
}
//end of while loop
echo '</table>
<br />
<div class="centre">
<input type="hidden" name="RowCounter" value="' . $i . '" />
<button type="submit" name="Update">' . _('Update Matching') . '</button>
</div><br />';
}
echo '</form>';
include('includes/footer.inc');
?>