-
Notifications
You must be signed in to change notification settings - Fork 3
/
FixedAssetCategories.php
333 lines (269 loc) · 12.8 KB
/
FixedAssetCategories.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
<?php
/* $Id$*/
include('includes/session.inc');
$title = _('Fixed Asset Category Maintenance');
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/money_add.png" title="' . _('Fixed Asset Categories') . '" alt="" />' . ' ' . $title . '</p>';
if (isset($_GET['SelectedCategory'])){
$SelectedCategory = strtoupper($_GET['SelectedCategory']);
} else if (isset($_POST['SelectedCategory'])){
$SelectedCategory = strtoupper($_POST['SelectedCategory']);
}
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
$_POST['CategoryID'] = strtoupper($_POST['CategoryID']);
if (strlen($_POST['CategoryID']) > 6) {
$InputError = 1;
prnMsg(_('The Fixed Asset Category code must be six characters or less long'),'error');
} elseif (strlen($_POST['CategoryID'])==0) {
$InputError = 1;
prnMsg(_('The Fixed Asset Category code must be at least 1 character but less than six characters long'),'error');
} elseif (strlen($_POST['CategoryDescription']) >20) {
$InputError = 1;
prnMsg(_('The Fixed Asset Category description must be twenty characters or less long'),'error');
}
if ($_POST['CostAct'] == $_SESSION['CompanyRecord']['debtorsact']
OR $_POST['CostAct'] == $_SESSION['CompanyRecord']['creditorsact']
OR $_POST['AccumDepnAct'] == $_SESSION['CompanyRecord']['debtorsact']
OR $_POST['AccumDepnAct'] == $_SESSION['CompanyRecord']['creditorsact']
OR $_POST['CostAct'] == $_SESSION['CompanyRecord']['grnact']
OR $_POST['AccumDepnAct'] == $_SESSION['CompanyRecord']['grnact']){
prnMsg(_('The accounts selected to post cost or accumulated depreciation to cannot be either of the debtors control account, creditors control account or GRN suspense accounts'),'error');
$InputError =1;
}
/*Make an array of the defined bank accounts */
$SQL = "SELECT bankaccounts.accountcode
FROM bankaccounts,
chartmaster
WHERE bankaccounts.accountcode=chartmaster.accountcode";
$result = DB_query($SQL,$db);
$BankAccounts = array();
$i=0;
while ($Act = DB_fetch_row($result)){
$BankAccounts[$i]= $Act[0];
$i++;
}
if (in_array($_POST['CostAct'], $BankAccounts)) {
prnMsg( _('The asset cost account selected is a bank account - bank accounts are protected from having any other postings made to them. Select another balance sheet account for the asset cost'),'error');
$InputError =1;
}
if (in_array($_POST['AccumDepnAct'], $BankAccounts)) {
prnMsg( _('The accumulated depreciation account selected is a bank account - bank accounts are protected from having any other postings made to them. Select another balance sheet account for the asset accumulated depreciation'),'error');
$InputError =1;
}
if (isset($SelectedCategory) AND $InputError !=1) {
/*SelectedCategory 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 fixedassetcategories SET
categorydescription = '" . $_POST['CategoryDescription'] . "',
costact = '" . $_POST['CostAct'] . "',
depnact = '" . $_POST['DepnAct'] . "',
disposalact = '" . $_POST['DisposalAct'] . "',
accumdepnact = '" . $_POST['AccumDepnAct'] . "'
WHERE categoryid = '".$SelectedCategory . "'";
$ErrMsg = _('Could not update the fixed asset category') . $_POST['CategoryDescription'] . _('because');
$result = DB_query($sql,$db,$ErrMsg);
prnMsg(_('Updated the fixed asset category record for') . ' ' . $_POST['CategoryDescription'],'success');
} elseif ($InputError !=1) {
$sql = "INSERT INTO fixedassetcategories (categoryid,
categorydescription,
costact,
depnact,
disposalact,
accumdepnact)
VALUES (
'" . $_POST['CategoryID'] . "',
'" . $_POST['CategoryDescription'] . "',
'" . $_POST['CostAct'] . "',
'" . $_POST['DepnAct'] . "',
'" . $_POST['DisposalAct'] . "',
'" . $_POST['AccumDepnAct'] . "')";
$ErrMsg = _('Could not insert the new fixed asset category') . $_POST['CategoryDescription'] . _('because');
$result = DB_query($sql,$db,$ErrMsg);
prnMsg(_('A new fixed asset category record has been added for') . ' ' . $_POST['CategoryDescription'],'success');
}
//run the SQL from either of the above possibilites
unset($_POST['CategoryID']);
unset($_POST['CategoryDescription']);
unset($_POST['CostAct']);
unset($_POST['DepnAct']);
unset($_POST['DisposalAct']);
unset($_POST['AccumDepnAct']);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'fixedassets'
$sql= "SELECT COUNT(*) FROM fixedassets WHERE fixedassets.assetcategoryid='" . $SelectedCategory . "'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this fixed asset category because fixed assets have been created using this category') .
'<br /> ' . _('There are') . ' ' . $myrow[0] . ' ' . _('fixed assets referring to this category code'),'warn');
} else {
$sql="DELETE FROM fixedassetcategories WHERE categoryid='" . $SelectedCategory . "'";
$result = DB_query($sql,$db);
prnMsg(_('The fixed asset category') . ' ' . $SelectedCategory . ' ' . _('has been deleted'),'success');
unset ($SelectedCategory);
} //end if stock category used in debtor transactions
}
if (!isset($SelectedCategory) or isset($_POST['submit'])) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedCategory 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 stock categorys 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 categoryid,
categorydescription,
costact,
depnact,
disposalact,
accumdepnact
FROM fixedassetcategories";
$result = DB_query($sql,$db);
echo '<br /><table class="selection">';
echo '<tr><th>' . _('Cat Code') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('Cost GL') . '</th>
<th>' . _('P & L Depn GL') . '</th>
<th>' . _('Disposal GL') . '</th>
<th>' . _('Accum Depn GL') . '</th></tr>';
if ( DB_num_rows($result) > 0 ) {
$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=1;
}
printf('<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td><a href="%sSelectedCategory=%s">' . _('Edit') . '</a></td>
<td><a href="%sSelectedCategory=%s&delete=yes" onclick="return confirm(\'' . _('Are you sure you wish to delete this fixed asset category? Additional checks will be performed before actual deletion to ensure data integrity is not compromised.') . '\');">' . _('Delete') . '</a></td>
</tr>',
$myrow['categoryid'],
$myrow['categorydescription'],
$myrow['costact'],
$myrow['depnact'],
$myrow['disposalact'],
$myrow['accumdepnact'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow['categoryid'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?',
$myrow['categoryid']);
}
//END WHILE LIST LOOP
} // End DB_num_rows() check.
else {
echo '<tr><td style="text-align:center;" colspan="0">' . _('No Fixed Asset Categories Found') . '</td></tr>';
}
echo '</table>';
}
//end of ifs and buts!
if (isset($SelectedCategory)) {
echo '<br /><div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">' ._('Show All Fixed Asset Categories') . '</a></div><br />';
}
echo '<form name="CategoryForm" method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedCategory) and !isset($_POST['submit'])) {
//editing an existing fixed asset category
$sql = "SELECT categoryid,
categorydescription,
costact,
depnact,
disposalact,
accumdepnact
FROM fixedassetcategories
WHERE categoryid='" . $SelectedCategory . "'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['CategoryID'] = $myrow['categoryid'];
$_POST['CategoryDescription'] = $myrow['categorydescription'];
$_POST['CostAct'] = $myrow['costact'];
$_POST['DepnAct'] = $myrow['depnact'];
$_POST['DisposalAct'] = $myrow['disposalact'];
$_POST['AccumDepnAct'] = $myrow['accumdepnact'];
echo '<input type="hidden" name="SelectedCategory" value="' . $SelectedCategory . '" />';
echo '<input type="hidden" name="CategoryID" value="' . $_POST['CategoryID'] . '" />';
echo '<table class="selection"><tr><td>' . _('Category Code') . ':</td><td>' . $_POST['CategoryID'] . '</td></tr>';
} else { //end of if $SelectedCategory only do the else when a new record is being entered
if (!isset($_POST['CategoryID'])) {
$_POST['CategoryID'] = '';
}
echo '<br /><table class="selection"><tr><td>' . _('Category Code') . ':</td>
<td><input type="text" name="CategoryID" size="7" maxlength="6" value="' . $_POST['CategoryID'] . '" /></td></tr>';
}
//SQL to poulate account selection boxes
$sql = "SELECT accountcode,
accountname
FROM chartmaster,
accountgroups
WHERE chartmaster.group_=accountgroups.groupname and
accountgroups.pandl=0
ORDER BY accountcode";
$BSAccountsResult = DB_query($sql,$db);
$sql = "SELECT accountcode,
accountname
FROM chartmaster,
accountgroups
WHERE chartmaster.group_=accountgroups.groupname and
accountgroups.pandl!=0
ORDER BY accountcode";
$PnLAccountsResult = DB_query($sql,$db);
if (!isset($_POST['CategoryDescription'])) {
$_POST['CategoryDescription'] = '';
}
echo '<tr><td>' . _('Category Description') . ':</td>
<td><input type="text" name="CategoryDescription" size="22" maxlength="20" value="' . $_POST['CategoryDescription'] . '" /></td></tr>';
echo '<tr><td>' . _('Fixed Asset Cost GL Code');
echo ':</td><td><select name="CostAct">';
while ($myrow = DB_fetch_array($BSAccountsResult)){
if (isset($_POST['CostAct']) and $myrow['accountcode']==$_POST['CostAct']) {
echo '<option selected="True" value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')</option>';
} else {
echo '<option value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')</option>';
}
} //end while loop
echo '</select></td></tr>';
echo '<tr><td>' . _('Profit and Loss Depreciation GL Code') . ':</td>
<td><select name="DepnAct">';
while ($myrow = DB_fetch_array($PnLAccountsResult)) {
if (isset($_POST['DepnAct']) and $myrow['accountcode']==$_POST['DepnAct']) {
echo '<option selected="True" value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')</option>';
} else {
echo '<option value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')</option>';
}
} //end while loop
echo '</select></td></tr>';
DB_data_seek($PnLAccountsResult,0);
echo '<tr><td>' . _('Profit or Loss on Disposal GL Code:') . '</td><td><select name="DisposalAct">';
while ($myrow = DB_fetch_array($PnLAccountsResult)) {
if (isset($_POST['DisposalAct']) and $myrow['accountcode']==$_POST['DisposalAct']) {
echo '<option selected="True" value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')' . '</option>';
} else {
echo '<option value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')' . '</option>';
}
} //end while loop
echo '</select></td></tr>';
DB_data_seek($BSAccountsResult,0);
echo '<tr><td>' . _('Balance Sheet Accumulated Depreciation GL Code') . ':</td><td><select name="AccumDepnAct">';
while ($myrow = DB_fetch_array($BSAccountsResult)) {
if (isset($_POST['AccumDepnAct']) and $myrow['accountcode']==$_POST['AccumDepnAct']) {
echo '<option selected="True" value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')' . '</option>';
} else {
echo '<option value="'.$myrow['accountcode'] . '">' . $myrow['accountname'] . ' ('.$myrow['accountcode'].')' . '</option>';
}
} //end while loop
echo '</select></td></tr></table><br />';
echo '<div class="centre"><button type="submit" name="submit">' . _('Enter Information') . '</button></div>';
echo '</form><br />';
include('includes/footer.inc');
?>