-
Notifications
You must be signed in to change notification settings - Fork 120
/
FixedAssetCategories.php
350 lines (288 loc) · 14.3 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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
include('includes/session.php');
$Title = _('Fixed Asset Category Maintenance');
$ViewTopic = 'FixedAssets';
$BookMark = 'AssetCategories';
include('includes/header.php');
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 = mb_strtoupper($_GET['SelectedCategory']);
} else if (isset($_POST['SelectedCategory'])){
$SelectedCategory = mb_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'] = mb_strtoupper($_POST['CategoryID']);
if (mb_strlen($_POST['CategoryID']) > 6) {
$InputError = 1;
prnMsg(_('The Fixed Asset Category code must be six characters or less long'),'error');
} elseif (mb_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 (mb_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 INNER JOIN chartmaster
ON bankaccounts.accountcode=chartmaster.accountcode";
$Result = DB_query($SQL);
$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,$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,$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);
$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);
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);
echo '<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>';
while ($MyRow = DB_fetch_array($Result)) {
printf('<tr class="striped_row">
<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
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>';
}
echo '<form id="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);
$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 '<fieldset>
<legend>', _('Amend Category Details'), '</legend>
<field>
<label for="CategoryID">' . _('Category Code') . ':</label>
<fieldtext>' . $_POST['CategoryID'] . '</fieldtext>
</field>';
} else { //end of if $SelectedCategory only do the else when a new record is being entered
if (!isset($_POST['CategoryID'])) {
$_POST['CategoryID'] = '';
}
echo '<fieldset>
<legend>', _('Create Category Details'), '</legend>
<field>
<label for="CategoryID">' . _('Category Code') . ':</label>
<input type="text" name="CategoryID" required="required" title="" data-type="no-illegal-chars" size="7" maxlength="6" value="' . $_POST['CategoryID'] . '" />
<fieldhelp>' . _('Enter the asset category code. Up to 6 alpha-numeric characters are allowed') . '</fieldhelp>
</field>';
}
//SQL to poulate account selection boxes
$SQL = "SELECT accountcode,
accountname
FROM chartmaster INNER JOIN accountgroups
ON chartmaster.group_=accountgroups.groupname
WHERE accountgroups.pandl=0
ORDER BY accountcode";
$BSAccountsResult = DB_query($SQL);
$SQL = "SELECT accountcode,
accountname
FROM chartmaster INNER JOIN accountgroups
ON chartmaster.group_=accountgroups.groupname
WHERE accountgroups.pandl!=0
ORDER BY accountcode";
$PnLAccountsResult = DB_query($SQL);
if (!isset($_POST['CategoryDescription'])) {
$_POST['CategoryDescription'] = '';
}
echo '<field>
<label for="CategoryDescription">' . _('Category Description') . ':</label>
<input type="text" name="CategoryDescription" required="required" title="" size="22" maxlength="20" value="' . $_POST['CategoryDescription'] . '" />
<fieldhelp>' . _('Enter the asset category description up to 20 characters') . '</fieldhelp>
</field>
<field>
<label for="CostAct">' . _('Fixed Asset Cost GL Code') . ':</label>
<select name="CostAct" required="required" title="" >';
while ($MyRow = DB_fetch_array($BSAccountsResult)){
if (isset($_POST['CostAct']) and $MyRow['accountcode']==$_POST['CostAct']) {
echo '<option selected="selected" value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')</option>';
} else {
echo '<option value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')</option>';
}
} //end while loop
echo '</select>
<fieldhelp>' . _('Select the general ledger account where the cost of assets of this category should be posted to. Only balance sheet accounts can be selected') . '</fieldhelp>
</field>';
echo '<field>
<label for="DepnAct">' . _('Profit and Loss Depreciation GL Code') . ':</label>
<select name="DepnAct" required="required" title="" >';
while ($MyRow = DB_fetch_array($PnLAccountsResult)) {
if (isset($_POST['DepnAct']) and $MyRow['accountcode']==$_POST['DepnAct']) {
echo '<option selected="selected" value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')</option>';
} else {
echo '<option value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')</option>';
}
} //end while loop
echo '</select>
<fieldhelp>' . _('Select the general ledger account where the depreciation of assets of this category should be posted to. Only profit and loss accounts can be selected') . '</fieldhelp>
</field>';
DB_data_seek($PnLAccountsResult,0);
echo '<field>
<label for="DisposalAct">' . _('Profit or Loss on Disposal GL Code') . ':</label>
<select name="DisposalAct" required="required" title="" >';
while ($MyRow = DB_fetch_array($PnLAccountsResult)) {
if (isset($_POST['DisposalAct']) and $MyRow['accountcode']==$_POST['DisposalAct']) {
echo '<option selected="selected" value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')' . '</option>';
} else {
echo '<option value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')' . '</option>';
}
} //end while loop
echo '</select>
<fieldhelp>' . _('Select the general ledger account where the profit or loss on disposal on assets of this category should be posted to. Only profit and loss accounts can be selected') . '</fieldhelp>
</field>';
DB_data_seek($BSAccountsResult,0);
echo '<field>
<label for="AccumDepnAct">' . _('Balance Sheet Accumulated Depreciation GL Code') . ':</label>
<select name="AccumDepnAct" required="required" title="" >';
while ($MyRow = DB_fetch_array($BSAccountsResult)) {
if (isset($_POST['AccumDepnAct']) and $MyRow['accountcode']==$_POST['AccumDepnAct']) {
echo '<option selected="selected" value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')' . '</option>';
} else {
echo '<option value="'.$MyRow['accountcode'] . '">' . htmlspecialchars($MyRow['accountname'],ENT_QUOTES,'UTF-8',false) . ' ('.$MyRow['accountcode'].')' . '</option>';
}
} //end while loop
echo '</select>
<fieldhelp>' . _('Select the general ledger account where the accumulated depreciation on assets of this category should be posted to. Only balance sheet accounts can be selected') . '</fieldhelp>
</field>';
echo '</fieldset>';
echo '<div class="centre">
<input type="submit" name="submit" value="' . _('Enter Information') . '" />
</div>
</form>';
include('includes/footer.php');
?>