-
Notifications
You must be signed in to change notification settings - Fork 1
/
AccountGroups.php.orig
executable file
·383 lines (311 loc) · 12.7 KB
/
AccountGroups.php.orig
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
<?php
/* $Revision: 1.3 $ */
$PageSecurity = 10;
include('includes/session.inc');
$title = _('Account Groups');
include('includes/header.inc');
include('includes/SQL_CommonFunctions.inc');
function CheckForRecursiveGroup ($ParentGroupName, $GroupName, $db) {
/* returns true ie 1 if the group contains the parent group as a child group
ie the parent group results in a recursive group structure otherwise false ie 0 */
$ErrMsg = _('An error occurred in retrieving the account groups of the parent account group during the check for recursion');
$DbgMsg = _('The SQL that was used to retrieve the account groups of the parent account group and that failed in the process was');
do {
$sql = "SELECT parentgroupname FROM accountgroups WHERE groupname='" . $GroupName ."'";
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
$myrow = DB_fetch_row($result);
if ($ParentGroupName == $myrow[0]){
return true;
}
$GroupName = $myrow[0];
} while ($myrow[0]!='');
return false;
} //end of function CheckForRecursiveGroupName
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(groupname)
FROM accountgroups WHERE groupname='".$_POST['GroupName']."'";
$result=DB_query($sql, $db);
$myrow=DB_fetch_row($result);
if ($myrow[0]!=0 and $_POST['SelectedAccountGroup']=='') {
$InputError = 1;
prnMsg( _('The account group name already exists in the database'),'error');
$Errors[$i] = 'GroupName';
$i++;
}
if (ContainsIllegalCharacters($_POST['GroupName'])) {
$InputError = 1;
prnMsg( _('The account group name cannot contain the character') . " '&' " . _('or the character') ." '",'error');
$Errors[$i] = 'GroupName';
$i++;
}
if (strlen($_POST['GroupName'])==0){
$InputError = 1;
prnMsg( _('The account group name must be at least one character long'),'error');
$Errors[$i] = 'GroupName';
$i++;
}
if ($_POST['ParentGroupName'] !=''){
if (CheckForRecursiveGroup($_POST['GroupName'],$_POST['ParentGroupName'],$db)) {
$InputError =1;
prnMsg(_('The parent account group selected appears to result in a recursive account structure - select an alternative parent account group or make this group a top level account group'),'error');
$Errors[$i] = 'ParentGroupName';
$i++;
} else {
$sql = "SELECT pandl,
sequenceintb,
sectioninaccounts
FROM accountgroups
WHERE groupname='" . $_POST['ParentGroupName'] . "'";
$result = DB_query($sql,$db);
$ParentGroupRow = DB_fetch_array($result);
$_POST['SequenceInTB'] = $ParentGroupRow['sequenceintb'];
$_POST['PandL'] = $ParentGroupRow['pandl'];
$_POST['SectionInAccounts']= $ParentGroupRow['sectioninaccounts'];
}
}
if (!is_long((int) $_POST['SectionInAccounts'])) {
$InputError = 1;
prnMsg( _('The section in accounts must be an integer'),'error');
$Errors[$i] = 'SectionInAccounts';
$i++;
}
if (!is_long((int) $_POST['SequenceInTB'])) {
$InputError = 1;
prnMsg( _('The sequence in the trial balance must be an integer'),'error');
$Errors[$i] = 'SequenceInTB';
$i++;
}
if (!is_numeric($_POST['SequenceInTB']) or $_POST['SequenceInTB'] > 10000) {
$InputError = 1;
prnMsg( _('The sequence in the TB must be numeric and less than') . ' 10,000','error');
$Errors[$i] = 'SequenceInTB';
$i++;
}
if ($_POST['SelectedAccountGroup']!='' AND $InputError !=1) {
/*SelectedAccountGroup could also exist if submit had not been clicked this code would not run in this case cos submit is false of course see the delete code below*/
$sql = "UPDATE accountgroups
SET groupname='" . $_POST['GroupName'] . "',
sectioninaccounts=" . $_POST['SectionInAccounts'] . ",
pandl=" . $_POST['PandL'] . ",
sequenceintb=" . $_POST['SequenceInTB'] . ",
parentgroupname='" . $_POST['ParentGroupName'] . "'
WHERE groupname = '" . $_POST['SelectedAccountGroup'] . "'";
$msg = _('Record Updated');
} elseif ($InputError !=1) {
/*Selected group is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new account group form */
$sql = "INSERT INTO accountgroups (
groupname,
sectioninaccounts,
sequenceintb,
pandl,
parentgroupname)
VALUES (
'" . $_POST['GroupName'] . "',
" . $_POST['SectionInAccounts'] . ",
" . $_POST['SequenceInTB'] . ",
" . $_POST['PandL'] . ",
'" . $_POST['ParentGroupName'] . "'
)";
$msg = _('Record inserted');
}
if ($InputError!=1){
//run the SQL from either of the above possibilites
$result = DB_query($sql,$db);
prnMsg($msg,'success');
unset ($_POST['SelectedAccountGroup']);
unset ($_POST['GroupName']);
unset ($_POST['SequenceInTB']);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'ChartMaster'
$sql= "SELECT COUNT(*) FROM chartmaster WHERE chartmaster.group_='" . $_GET['SelectedAccountGroup'] . "'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg( _('Cannot delete this account group because general ledger accounts have been created using this group'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('general ledger accounts that refer to this account group') . '</FONT>';
} else {
$sql = "SELECT COUNT(groupname) FROM accountgroups WHERE parentgroupname = '" . $_GET['SelectedAccountGroup'] . "'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg( _('Cannot delete this account group because it is a parent account group of other account group(s)'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('account groups that have this group as its/there parent account group') . '</FONT>';
} else {
$sql="DELETE FROM accountgroups WHERE groupname='" . $_GET['SelectedAccountGroup'] . "'";
$result = DB_query($sql,$db);
prnMsg( $_GET['SelectedAccountGroup'] . ' ' . _('group has been deleted') . '!','success');
}
} //end if account group used in GL accounts
}
if (!isset($_GET['SelectedAccountGroup']) OR !isset($_POST['SelectedAccountGroup'])) {
/* An account group could be posted when one has been edited and is being updated or GOT when selected for modification
SelectedAccountGroup will exist because it was sent with the page in a GET .
If its the first time the page has been displayed with no parameters
then none of the above are true and the list of account groups 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 groupname,
sectionname,
sequenceintb,
pandl,
parentgroupname
FROM accountgroups
LEFT JOIN accountsection ON sectionid = sectioninaccounts
ORDER BY sequenceintb";
$ErrMsg = _('Could not get account groups because');
$result = DB_query($sql,$db,$ErrMsg);
echo "<center><table>
<tr>
<th>" . _('Group Name') . "</th>
<th>" . _('Section') . "</th>
<th>" . _('Sequence In TB') . "</th>
<th>" . _('Profit and Loss') . "</th>
<th>" . _('Parent Group') . "</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++;
}
switch ($myrow[3]) {
case -1:
$PandLText=_('Yes');
break;
case 1:
$PandLText=_('Yes');
break;
case 0:
$PandLText=_('No');
break;
} //end of switch statment
echo '<TD>' . $myrow[0] . '</TD>
<TD>' . $myrow[1] . '</TD>
<TD>' . $myrow[2] . '</TD>
<TD>' . $PandLText . '</TD>
<TD>' . $myrow[4] . '</TD>';
echo '<TD><A HREF="' . $_SERVER['PHP_SELF'] . '?' . SID . '&SelectedAccountGroup=' . $myrow[0] . '">' . _('Edit') . '</A></TD>';
echo '<TD><A HREF="' . $_SERVER['PHP_SELF'] . '?' . SID . '&SelectedAccountGroup=' . $myrow[0] . '&delete=1">' . _('Delete') .'</A></TD>';
} //END WHILE LIST LOOP
echo '</table></CENTER><p>';
} //end of ifs and buts!
if (isset($_POST['SelectedAccountGroup']) OR isset($_GET['SelectedAccountGroup'])) {
echo '<CENTER><A HREF=' . $_SERVER['PHP_SELF'] . '?' . SID .'>' . _('Review Account Groups') . '</a></Center>';
}
echo '<P>';
if (! isset($_GET['delete'])) {
echo "<FORM METHOD='post' name='AccountGroups' action=" . $_SERVER['PHP_SELF'] . '?' . SID . ' name="AccountGroups">';
if (isset($_GET['SelectedAccountGroup'])) {
//editing an existing account group
$sql = "SELECT groupname,
sectioninaccounts,
sequenceintb,
pandl,
parentgroupname
FROM accountgroups
WHERE groupname='" . $_GET['SelectedAccountGroup'] ."'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['GroupName'] = $myrow['groupname'];
$_POST['SectionInAccounts'] = $myrow['sectioninaccounts'];
$_POST['SequenceInTB'] = $myrow['sequenceintb'];
$_POST['PandL'] = $myrow['pandl'];
$_POST['ParentGroupName'] = $myrow['parentgroupname'];
echo "<INPUT TYPE=HIDDEN NAME='SelectedAccountGroup' VALUE='" . $_GET['SelectedAccountGroup'] . "'>";
echo "<INPUT TYPE=HIDDEN NAME='GroupName' VALUE='" . $_POST['GroupName'] . "'>";
echo "<CENTER><TABLE>
<TR><TD>" . _('Account Group') . ':' . '</TD>';
echo '<TD>' . $_POST['GroupName'] . '</TD></TR>';
} else { //end of if $_POST['SelectedAccountGroup'] only do the else when a new record is being entered
if (!isset($_POST['SelectedAccountGroup'])){
$_POST['SelectedAccountGroup']='';
}
if (!isset($_POST['GroupName'])){
$_POST['GroupName']='';
}
if (!isset($_POST['SectionInAccounts'])){
$_POST['SectionInAccounts']='';
}
if (!isset($_POST['SequenceInTB'])){
$_POST['SequenceInTB']='';
}
if (!isset($_POST['PandL'])){
$_POST['PandL']='';
}
echo "<INPUT TYPE=HIDDEN NAME='SelectedAccountGroup' VALUE='" . $_POST['SelectedAccountGroup'] . "'>";
echo '<CENTER><TABLE><TR><TD>' . _('Account Group Name') . ':' . '</TD><TD><input tabindex="1" ' .
(in_array('GroupName',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" name="GroupName" SIZE=30 MAXLENGTH=30 value="'
. $_POST['GroupName'] . '"></TD></TR>';
}
echo '<TR><TD>' . _('Parent Group') . ':' . '</TD>
<TD><SELECT tabindex="2" ' . (in_array('ParentGroupName',$Errors) ? 'class="selecterror"' : '' ) .
' name="ParentGroupName">';
$sql = 'SELECT groupname FROM accountgroups';
$groupresult = DB_query($sql, $db);
if (!isset($_POST['ParentGroupName'])){
echo "<OPTION SELECTED VALUE=''>" ._('Top Level Group');
} else {
echo "<OPTION VALUE=''>" ._('Top Level Group');
}
while ( $grouprow = DB_fetch_array($groupresult) ) {
if (isset($_POST['ParentGroupName']) and $_POST['ParentGroupName']==$grouprow['groupname']) {
echo "<OPTION SELECTED VALUE='".$grouprow['groupname']."'>" .$grouprow['groupname'];
} else {
echo "<OPTION VALUE='".$grouprow['groupname']."'>" .$grouprow['groupname'];
}
}
echo '</SELECT>';
echo '</TD></TR>';
echo '<TR><TD>' . _('Section In Accounts') . ':' . '</TD>
<TD><SELECT tabindex="3" ' . (in_array('SectionInAccounts',$Errors) ? 'class="selecterror"' : '' ) .
' name=SectionInAccounts>';
$sql = 'SELECT sectionid, sectionname FROM accountsection ORDER BY sectionid';
$secresult = DB_query($sql, $db);
while( $secrow = DB_fetch_array($secresult) ) {
if ($_POST['SectionInAccounts']==$secrow['sectionid']) {
echo "<OPTION SELECTED VALUE=".$secrow['sectionid'].">".$secrow['sectionname'].' ('.$secrow['sectionid'].')';
} else {
echo "<OPTION VALUE=".$secrow['sectionid'].">".$secrow['sectionname'].' ('.$secrow['sectionid'].')';
}
}
echo '</SELECT>';
echo '</TD></TR>';
echo '<TR><TD>' . _('Profit and Loss') . ':' . '</TD>
<TD><SELECT tabindex="4" name=PandL>';
if ($_POST['PandL']!=0 ) {
echo '<OPTION SELECTED VALUE=1>' . _('Yes');
} else {
echo '<OPTION VALUE=1>' . _('Yes');
}
if ($_POST['PandL']==0) {
echo '<OPTION SELECTED VALUE=0>' . _('No');
} else {
echo '<OPTION VALUE=0>' . _('No');
}
echo '</SELECT></TD></TR>';
echo '<TR><TD>' . _('Sequence In TB') . ':' . '</TD>';
echo '<TD><INPUT tabindex="5" ' . (in_array('SequenceInTB',$Errors) ? 'class="inputerror"' : '' ) .
' TYPE=Text MAXLENGTH=4 name=SequenceInTB onKeyPress="return restrictToNumbers(this, event)"
VALUE=' . $_POST['SequenceInTB'] . '></TD></TR>';
echo '</TABLE>';
echo '<CENTER><input tabindex="6" type=Submit name=submit value=' . _('Enter Information') . '>';
echo "<script>defaultControl(document.AccountGroups.GroupName);</script>";
echo '</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.inc');
?>