-
Notifications
You must be signed in to change notification settings - Fork 3
/
BankAccounts.php
442 lines (377 loc) · 15.2 KB
/
BankAccounts.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<?php
/* $Revision: 1.21 $ */
/* $Id$*/
include('includes/session.inc');
$title = _('Bank Accounts Maintenance');
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/money_add.png" title="' . _('Bank') . '" alt="" />' . ' ' . $title . '</p>';
echo '<div class="page_help_text">' . _('Update Bank Account details. Account Code is for SWIFT or BSB type Bank Codes. Set Default for Invoices to "Currency Default" of "Fallback Default" to print Account details on Invoices (only one account should be set to "Fall Back Default").') . '.</div><br />';
if (isset($_GET['SelectedBankAccount'])) {
$SelectedBankAccount=$_GET['SelectedBankAccount'];
} elseif (isset($_POST['SelectedBankAccount'])) {
$SelectedBankAccount=$_POST['SelectedBankAccount'];
}
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
if (isset($_POST['submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
$i=1;
$sql="SELECT count(accountcode)
FROM bankaccounts WHERE accountcode='".$_POST['AccountCode']."'";
$result=DB_query($sql, $db);
$myrow=DB_fetch_row($result);
if ($myrow[0]!=0 and !isset($SelectedBankAccount)) {
$InputError = 1;
prnMsg( _('The bank account code already exists in the database'),'error');
$Errors[$i] = 'AccountCode';
$i++;
}
if (strlen($_POST['BankAccountName']) >50) {
$InputError = 1;
prnMsg(_('The bank account name must be fifty characters or less long'),'error');
$Errors[$i] = 'AccountName';
$i++;
}
if ( trim($_POST['BankAccountName']) == '' ) {
$InputError = 1;
prnMsg(_('The bank account name may not be empty.'),'error');
$Errors[$i] = 'AccountName';
$i++;
}
if ( trim($_POST['BankAccountNumber']) == '' ) {
$InputError = 1;
prnMsg(_('The bank account number may not be empty.'),'error');
$Errors[$i] = 'AccountNumber';
$i++;
}
if (strlen($_POST['BankAccountNumber']) >50) {
$InputError = 1;
prnMsg(_('The bank account number must be fifty characters or less long'),'error');
$Errors[$i] = 'AccountNumber';
$i++;
}
if (strlen($_POST['BankAddress']) >50) {
$InputError = 1;
prnMsg(_('The bank address must be fifty characters or less long'),'error');
$Errors[$i] = 'BankAddress';
$i++;
}
if (isset($SelectedBankAccount) AND $InputError !=1) {
/*Check if there are already transactions against this account - cant allow change currency if there are*/
$sql = "SELECT banktransid FROM banktrans WHERE bankact='" . $SelectedBankAccount . "'";
$BankTransResult = DB_query($sql,$db);
if (DB_num_rows($BankTransResult)>0) {
$sql = "UPDATE bankaccounts SET bankaccountname='" . $_POST['BankAccountName'] . "',
bankaccountcode='" . $_POST['BankAccountCode'] . "',
bankaccountnumber='" . $_POST['BankAccountNumber'] . "',
bankaddress='" . $_POST['BankAddress'] . "',
invoice ='" . $_POST['DefAccount'] . "',
pettycash='" . $_POST['PettyCash'] . "'
WHERE accountcode = '" . $SelectedBankAccount . "'";
prnMsg(_('Note that it is not possible to change the currency of the account once there are transactions against it'),'warn');
echo '<br />';
} else {
$sql = "UPDATE bankaccounts SET bankaccountname='" . $_POST['BankAccountName'] . "',
bankaccountcode='" . $_POST['BankAccountCode'] . "',
bankaccountnumber='" . $_POST['BankAccountNumber'] . "',
bankaddress='" . $_POST['BankAddress'] . "',
currcode ='" . $_POST['CurrCode'] . "',
invoice ='" . $_POST['DefAccount'] . "',
pettycash='" . $_POST['PettyCash'] . "'
WHERE accountcode = '" . $SelectedBankAccount . "'";
}
$msg = _('The bank account details have been updated');
} elseif ($InputError !=1) {
/*Selectedbank account is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new bank account form */
$sql = "INSERT INTO bankaccounts (accountcode,
bankaccountname,
bankaccountcode,
bankaccountnumber,
bankaddress,
currcode,
invoice,
pettycash
) VALUES ('" . $_POST['AccountCode'] . "',
'" . $_POST['BankAccountName'] . "',
'" . $_POST['BankAccountCode'] . "',
'" . $_POST['BankAccountNumber'] . "',
'" . $_POST['BankAddress'] . "',
'" . $_POST['CurrCode'] . "',
'" . $_POST['DefAccount'] . "',
'" . $_POST['PettyCash'] . "')";
$msg = _('The new bank account has been entered');
}
//run the SQL from either of the above possibilites
if( $InputError !=1 ) {
$ErrMsg = _('The bank account could not be inserted or modified because');
$DbgMsg = _('The SQL used to insert/modify the bank account details was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
prnMsg($msg,'success');
echo '<br />';
unset($_POST['AccountCode']);
unset($_POST['BankAccountName']);
unset($_POST['BankAccountCode']);
unset($_POST['BankAccountNumber']);
unset($_POST['BankAddress']);
unset($_POST['CurrCode']);
unset($_POST['DefAccount']);
unset($SelectedBankAccount);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$CancelDelete = 0;
// PREVENT DELETES IF DEPENDENT RECORDS IN 'BankTrans'
$sql= "SELECT COUNT(bankact) AS accounts FROM banktrans WHERE banktrans.bankact='" . $SelectedBankAccount . "'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_array($result);
if ($myrow['accounts']>0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this bank account because transactions have been created using this account'),'warn');
echo '<br /> ' . _('There are') . ' ' . $myrow['accounts'] . ' ' . _('transactions with this bank account code');
}
if (!$CancelDelete) {
$sql="DELETE FROM bankaccounts WHERE accountcode='" . $SelectedBankAccount . "'";
$result = DB_query($sql,$db);
prnMsg(_('Bank account deleted'),'success');
} //end if Delete bank account
unset($_GET['delete']);
unset($SelectedBankAccount);
}
/* Always show the list of accounts */
if (!isset($SelectedBankAccount)) {
$sql = "SELECT bankaccounts.accountcode,
bankaccounts.bankaccountcode,
chartmaster.accountname,
bankaccountname,
bankaccountnumber,
bankaddress,
currcode,
invoice,
pettycash
FROM bankaccounts
INNER JOIN chartmaster
ON bankaccounts.accountcode = chartmaster.accountcode";
$ErrMsg = _('The bank accounts set up could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve the bank account details was') . '<br />' . $sql;
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
echo '<table class="selection">
<tr>
<th>' . _('GL Account Code') . '</th>
<th>' . _('Bank Account Name') . '</th>
<th>' . _('Bank Account Code') . '</th>
<th>' . _('Bank Account Number') . '</th>
<th>' . _('Bank Address') . '</th>
<th>' . _('Currency') . '</th>
<th>' . _('Default for Invoices') . '</th>
<th>' . _('Petty Cash') . '</th>
</tr>';
$k=0; //row colour counter
while ($myrow = DB_fetch_array($result)) {
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="OddTableRows">';
$k++;
}
if ($myrow['invoice']==0) {
$DefaultBankAccount=_('No');
} elseif ($myrow['invoice']==1) {
$DefaultBankAccount=_('Fall Back Default');
} elseif ($myrow['invoice']==2) {
$DefaultBankAccount=_('Currency Default');
}
if ($myrow['pettycash']==0) {
$PettyCash=_('No');
} else {
$PettyCash=_('Yes');
}
printf('<td>%s<br /><font>%s</font></td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%s?SelectedBankAccount=%s">' . _('Edit') . '</td>
<td><a href="%s?SelectedBankAccount=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this bank account?') . '\');">' . _('Delete') . '</td>
</tr>',
$myrow['accountcode'],
$myrow['accountname'],
$myrow['bankaccountname'],
$myrow['bankaccountcode'],
$myrow['bankaccountnumber'],
$myrow['bankaddress'],
$myrow['currcode'],
$DefaultBankAccount,
$PettyCash,
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'),
$myrow['accountcode'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'),
$myrow['accountcode']);
}
//END WHILE LIST LOOP
echo '</table><br />';
}
if (isset($SelectedBankAccount)) {
echo '<br />';
echo '<div class="centre"><p><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">' . _('Show All Bank Accounts Defined') . '</a></p></div>';
echo '<br />';
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedBankAccount) AND !isset($_GET['delete'])) {
//editing an existing bank account - not deleting
$sql = "SELECT accountcode,
bankaccountname,
bankaccountcode,
bankaccountnumber,
bankaddress,
currcode,
invoice
FROM bankaccounts
WHERE bankaccounts.accountcode='" . $SelectedBankAccount . "'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['AccountCode'] = $myrow['accountcode'];
$_POST['BankAccountName'] = $myrow['bankaccountname'];
$_POST['BankAccountCode'] = $myrow['bankaccountcode'];
$_POST['BankAccountNumber'] = $myrow['bankaccountnumber'];
$_POST['BankAddress'] = $myrow['bankaddress'];
$_POST['CurrCode'] = $myrow['currcode'];
$_POST['DefAccount'] = $myrow['invoice'];
echo '<input type="hidden" name="SelectedBankAccount" value="' . $SelectedBankAccount . '" />';
echo '<input type="hidden" name="AccountCode" value="' . $_POST['AccountCode'] . '" />';
echo '<table class="selection">
<tr>
<td>' . _('Bank Account GL Code') . ':</td>
<td>' . $_POST['AccountCode'] . '</td>
</tr>';
} else { //end of if $Selectedbank account only do the else when a new record is being entered
echo '<table class="selection">
<tr>
<td>' . _('Bank Account GL Code') . ':</td>
<td><select tabindex="1" ' . (in_array('AccountCode',$Errors) ? 'class="selecterror"' : '' ) .' name="AccountCode">';
$sql = "SELECT accountcode,
accountname
FROM chartmaster
LEFT JOIN accountgroups
ON chartmaster.group_ = accountgroups.groupname
WHERE accountgroups.pandl = 0
ORDER BY accountcode";
$result = DB_query($sql,$db);
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['AccountCode']) and $myrow['accountcode']==$_POST['AccountCode']) {
echo '<option selected="selected" value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . '</option>';
} else {
echo '<option value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . '</option>';
}
} //end while loop
echo '</select></td></tr>';
}
// Check if details exist, if not set some defaults
if (!isset($_POST['BankAccountName'])) {
$_POST['BankAccountName']='';
}
if (!isset($_POST['BankAccountNumber'])) {
$_POST['BankAccountNumber']='';
}
if (!isset($_POST['BankAccountCode'])) {
$_POST['BankAccountCode']='';
}
if (!isset($_POST['BankAddress'])) {
$_POST['BankAddress']='';
}
echo '<tr>
<td>' . _('Bank Account Name') . ': </td>
<td><input tabindex="2" ' . (in_array('AccountName',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="BankAccountName" value="' . $_POST['BankAccountName'] . '" size="40" maxlength="50" /></td>
</tr>
<tr>
<td>' . _('Bank Account Code') . ': </td>
<td><input tabindex="3" ' . (in_array('AccountCode',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="BankAccountCode" value="' . $_POST['BankAccountCode'] . '" size="40" maxlength="50" /></td>
</tr>
<tr>
<td>' . _('Bank Account Number') . ': </td>
<td><input tabindex="3" ' . (in_array('AccountNumber',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="BankAccountNumber" value="' . $_POST['BankAccountNumber'] . '" size="40" maxlength="50" /></td>
</tr>
<tr>
<td>' . _('Bank Address') . ': </td>
<td><input tabindex="4" ' . (in_array('BankAddress',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" name="BankAddress" value="' . $_POST['BankAddress'] . '" size="40" maxlength="50" /></td>
</tr>
<tr>
<td>' . _('Currency Of Account') . ': </td>
<td><select tabindex="5" name="CurrCode">';
if (!isset($_POST['CurrCode']) or $_POST['CurrCode']==''){
$_POST['CurrCode'] = $_SESSION['CompanyRecord']['currencydefault'];
}
$result = DB_query("SELECT currabrev,
currency
FROM currencies",$db);
while ($myrow = DB_fetch_array($result)) {
if ($myrow['currabrev']==$_POST['CurrCode']) {
echo '<option selected="selected" value="'.$myrow['currabrev'] . '">' . $myrow['currabrev'] . '</option>';
} else {
echo '<option value="'.$myrow['currabrev'] . '">' . $myrow['currabrev'] . '</option>';
}
} //end while loop
echo '</select></td>';
echo '<tr>
<td>' . _('Default for Invoices') . ': </td>
<td><select tabindex="6" name="DefAccount">';
if (!isset($_POST['DefAccount']) OR $_POST['DefAccount']==''){
$_POST['DefAccount'] = $_SESSION['CompanyRecord']['currencydefault'];
}
if (isset($SelectedBankAccount)) {
$result = DB_query("SELECT invoice FROM bankaccounts where accountcode =" . $SelectedBankAccount ,$db);
while ($myrow = DB_fetch_array($result)) {
if ($myrow['invoice']== 1) {
echo '<option selected="selected" value="1">'._('Fall Back Default').'</option>
<option value="2">'._('Currency Default') . '</option>
<option value="0">'._('No').'</option>';
} elseif ($myrow['invoice']== 2) {
echo '<option value="0">'._('No').'</option>
<option selected="selected" value="2">'._('Currency Default') . '</option>
<option value="1">'._('Fall Back Default').'</option>';
} else {
echo '<option selected="selected" value="0">'._('No').'</option>
<option value="2">'._('Currency Default') . '</option>
<option value="1">'._('Fall Back Default').'</option>';
}
}//end while loop
} else {
echo '<option value="1">'._('Fall Back Default').'</option>
<option value="2">'._('Currency Default') . '</option>
<option value="0">'._('No').'</option>';
}
echo '</select></td>';
echo '</tr>';
echo '<tr><td>' . _('Petty Cash Account') . ': </td><td><select tabindex="6" name="PettyCash">';
if (!isset($_POST['PettyCash']) OR $_POST['PettyCash']==''){
$_POST['PettyCash'] = 0;
}
if (isset($SelectedBankAccount)) {
$result = DB_query("SELECT pettycash FROM bankaccounts where accountcode ='" . $SelectedBankAccount . "'" ,$db);
while ($myrow = DB_fetch_array($result)) {
if ($myrow['pettycash']== 1) {
echo '<option selected value=1>'._('Yes').'</option><option value=0>'._('No').'</option>';
} else {
echo '<option selected value=0>'._('No').'</option><option value=1>'._('Yes').'</option>';
}
}//end while loop
} else {
echo '<option value=1>'._('Yes').'</option><option selected value=0>'._('No').'</option>';
}
echo '</select></td>';
echo '</tr>';
echo '</table><br />
<div class="centre"><button tabindex="7" type="Submit" name="submit">'. _('Enter Information') .'</button></div><br />';
echo '</form>';
include('includes/footer.inc');
?>