-
Notifications
You must be signed in to change notification settings - Fork 3
/
GLAccounts.php
354 lines (276 loc) · 11.9 KB
/
GLAccounts.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
<?php
/* $Revision: 1.21 $ */
/* $Id$*/
include('includes/session.inc');
$title = _('Chart of Accounts Maintenance');
include('includes/header.inc');
if (isset($_POST['SelectedAccount'])){
$SelectedAccount = $_POST['SelectedAccount'];
} elseif (isset($_GET['SelectedAccount'])){
$SelectedAccount = $_GET['SelectedAccount'];
}
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/transactions.png" title="' . _('General Ledger Accounts') . '" alt="" />' . ' ' . $title . '</p>';
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
if (!is_long((integer)$_POST['AccountCode'])) {
$InputError = 1;
prnMsg(_('The account code must be an integer'),'warn');
} elseif (strlen($_POST['AccountName']) >50) {
$InputError = 1;
prnMsg( _('The account name must be fifty characters or less long'),'warn');
}
if (isset($SelectedAccount) AND $InputError !=1) {
$sql = "UPDATE chartmaster SET accountname='" . $_POST['AccountName'] . "',
group_='" . $_POST['Group'] . "'
WHERE accountcode ='" . $SelectedAccount . "'";
$ErrMsg = _('Could not update the account because');
$result = DB_query($sql,$db,$ErrMsg);
prnMsg (_('The general ledger account has been updated'),'success');
} elseif ($InputError !=1) {
/*SelectedAccount is null cos no item selected on first time round so must be adding a record must be submitting new entries */
$ErrMsg = _('Could not add the new account code');
$sql = "INSERT INTO chartmaster (accountcode,
accountname,
group_)
VALUES ('" . $_POST['AccountCode'] . "',
'" . $_POST['AccountName'] . "',
'" . $_POST['Group'] . "'
)";
$result = DB_query($sql,$db,$ErrMsg);
prnMsg(_('The new general ledger account has been added'),'success');
}
unset ($_POST['Group']);
unset ($_POST['AccountCode']);
unset ($_POST['AccountName']);
unset($SelectedAccount);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'ChartDetails'
$sql= "SELECT COUNT(*)
FROM chartdetails
WHERE chartdetails.accountcode ='" . $SelectedAccount . "'
AND chartdetails.actual<>0";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this account because chart details have been created using this account and at least one period has postings to it'),'warn');
echo '<br />' . _('There are') . ' ' . $myrow[0] . ' ' . _('chart details that require this account code');
} else {
// PREVENT DELETES IF DEPENDENT RECORDS IN 'GLTrans'
$sql= "SELECT COUNT(*)
FROM gltrans
WHERE gltrans.account ='" . $SelectedAccount . "'";
$ErrMsg = _('Could not test for existing transactions because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because transactions have been created using this account'),'warn');
echo '<br />' . _('There are') . ' ' . $myrow[0] . ' ' . _('transactions that require this account code');
} else {
//PREVENT DELETES IF Company default accounts set up to this account
$sql= "SELECT COUNT(*)
FROM companies
WHERE debtorsact='" . $SelectedAccount ."'
OR pytdiscountact='" . $SelectedAccount ."'
OR creditorsact='" . $SelectedAccount ."'
OR payrollact='" . $SelectedAccount ."'
OR grnact='" . $SelectedAccount ."'
OR exchangediffact='" . $SelectedAccount ."'
OR purchasesexchangediffact='" . $SelectedAccount ."'
OR retainedearnings='" . $SelectedAccount ."'";
$ErrMsg = _('Could not test for default company GL codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because it is used as one of the company default accounts'),'warn');
} else {
//PREVENT DELETES IF Company default accounts set up to this account
$sql= "SELECT COUNT(*)
FROM taxauthorities
WHERE taxglcode='" . $SelectedAccount ."'
OR purchtaxglaccount ='" . $SelectedAccount ."'";
$ErrMsg = _('Could not test for tax authority GL codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because it is used as one of the tax authority accounts'),'warn');
} else {
//PREVENT DELETES IF SALES POSTINGS USE THE GL ACCOUNT
$sql= "SELECT COUNT(*)
FROM salesglpostings
WHERE salesglcode='" . $SelectedAccount ."'
OR discountglcode='" . $SelectedAccount ."'";
$ErrMsg = _('Could not test for existing sales interface GL codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because it is used by one of the sales GL posting interface records'),'warn');
} else {
//PREVENT DELETES IF COGS POSTINGS USE THE GL ACCOUNT
$sql= "SELECT COUNT(*)
FROM cogsglpostings
WHERE glcode='" . $SelectedAccount ."'";
$ErrMsg = _('Could not test for existing cost of sales interface codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this account because it is used by one of the cost of sales GL posting interface records'),'warn');
} else {
//PREVENT DELETES IF STOCK POSTINGS USE THE GL ACCOUNT
$sql= "SELECT COUNT(*)
FROM stockcategory
WHERE stockact='" . $SelectedAccount ."'
OR adjglact='" . $SelectedAccount ."'
OR purchpricevaract='" . $SelectedAccount ."'
OR materialuseagevarac='" . $SelectedAccount ."'
OR wipact='" . $SelectedAccount ."'";
$Errmsg = _('Could not test for existing stock GL codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because it is used by one of the stock GL posting interface records'),'warn');
} else {
//PREVENT DELETES IF STOCK POSTINGS USE THE GL ACCOUNT
$sql= "SELECT COUNT(*)
FROM bankaccounts
WHERE accountcode='" . $SelectedAccount ."'";
$ErrMsg = _('Could not test for existing bank account GL codes because');
$result = DB_query($sql,$db,$ErrMsg);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this account because it is used by one the defined bank accounts'),'warn');
} else {
$sql = "DELETE FROM chartdetails
WHERE accountcode='" . $SelectedAccount ."'";
$result = DB_query($sql,$db);
$sql="DELETE FROM chartmaster
WHERE accountcode= '" . $SelectedAccount ."'";
$result = DB_query($sql,$db);
prnMsg( _('Account') . ' ' . $SelectedAccount . ' ' . _('has been deleted'),'succes');
}
}
}
}
}
}
}
}
}
if (!isset($_GET['delete'])) {
echo '<form method="post" name="GLAccounts" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedAccount)) {
//editing an existing account
$sql = "SELECT accountcode,
accountname,
group_
FROM chartmaster
WHERE accountcode='" . $SelectedAccount ."'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['AccountCode'] = $myrow['accountcode'];
$_POST['AccountName'] = $myrow['accountname'];
$_POST['Group'] = $myrow['group_'];
echo '<input type="hidden" name="SelectedAccount" value="' . $SelectedAccount . '" />';
echo '<input type="hidden" name="AccountCode" value="' . $_POST['AccountCode'] .'" />';
echo '<table class="selection">
<tr><td>' . _('Account Code') . ':</td>
<td>' . $_POST['AccountCode'] . '</td></tr>';
} else {
echo '<table class="selection">';
echo '<tr><td>' . _('Account Code') . ':</td>
<td><input type="text" name="AccountCode" size="21" class="number" maxlength="20" /></td></tr>';
}
if (!isset($_POST['AccountName'])) {$_POST['AccountName']='';}
echo '<tr><td>' . _('Account Name') . ':</td>
<td><input type="text" size="51" maxlength="50" name="AccountName" value="' . $_POST['AccountName'] . '" /></td>
</tr>';
$sql = "SELECT groupname FROM accountgroups ORDER BY sequenceintb";
$result = DB_query($sql, $db);
echo '<tr><td>' . _('Account Group') . ':</td><td><select name="Group">';
while ($myrow = DB_fetch_array($result)){
if (isset($_POST['Group']) and $myrow[0]==$_POST['Group']){
echo '<option selected="True" value="'.$myrow[0] . '">' . $myrow[0] . '</option>';
} else {
echo '<option value="'.$myrow[0] . '">' . $myrow[0] . '</option>';
}
}
if (!isset($_GET['SelectedAccount']) or $_GET['SelectedAccount']=='') {
echo '<script>defaultControl(document.GLAccounts.AccountCode);</script>';
} else {
echo '<script>defaultControl(document.GLAccounts.AccountName);</script>';
}
echo '</select></td></tr></table>';
echo '<br /><div class="centre"><button type="submit" name="submit">'. _('Enter Information') . '</button></div>';
echo '</form>';
} //end if record deleted no point displaying form to add record
if (!isset($SelectedAccount)) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedAccount will exist because it was sent with the new call. If its the first time the page has been displayed with no parameters
then none of the above are true and the list of ChartMaster will be displayed with
links to delete or edit each. These will call the same page again and allow update/input
or deletion of the records*/
$sql = "SELECT accountcode,
accountname,
group_,
CASE WHEN pandl=0 THEN '" . _('Balance Sheet') . "' ELSE '" . _('Profit/Loss') . "' END AS acttype
FROM chartmaster,
accountgroups
WHERE chartmaster.group_=accountgroups.groupname
ORDER BY chartmaster.accountcode";
$ErrMsg = _('The chart accounts could not be retrieved because');
$result = DB_query($sql,$db,$ErrMsg);
echo '<br /><table class="selection">';
echo '<tr>
<th>' . _('Account Code') . '</th>
<th>' . _('Account Name') . '</th>
<th>' . _('Account Group') . '</th>
<th>' . _('P/L or B/S') . '</th>
</tr>';
$k=0; //row colour counter
while ($myrow = DB_fetch_row($result)) {
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><a href="%s&SelectedAccount=%s">' . _('Edit') . '</td>
<td><a href="%s&SelectedAccount=%s&delete=1" onclick="return confirm("' . _('Are you sure you wish to delete this account? Additional checks will be performed in any event to ensure data integrity is not compromised.') . '");">' . _('Delete') . '</td>
</tr>',
$myrow[0],
$myrow[1],
$myrow[2],
$myrow[3],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow[0],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow[0]);
}
//END WHILE LIST LOOP
echo '</table>';
} //END IF selected ACCOUNT
//end of ifs and buts!
echo '<br />';
if (isset($SelectedAccount)) {
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">' . _('Show All Accounts') . '</a></div>';
}
echo '<br />';
include('includes/footer.inc');
?>