-
Notifications
You must be signed in to change notification settings - Fork 1
/
FixedAssetList.php
executable file
·44 lines (40 loc) · 1.36 KB
/
FixedAssetList.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
<?php
include('includes/session.inc');
$title = _('Fixed Asset Properties List');
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $title .'</p>';
$sql="SELECT stockmaster.stockid,
assetmanager.serialno,
stockmaster.description,
stockcatproperties.label,
stockitemproperties.value
FROM assetmanager
LEFT JOIN stockmaster
ON assetmanager.stockid=stockmaster.stockid
LEFT JOIN stockcatproperties
ON stockmaster.categoryid=stockcatproperties.categoryid
LEFT JOIN stockitemproperties
ON stockcatproperties.stkcatpropid=stockitemproperties.stkcatpropid
WHERE stockmaster.stockid=stockitemproperties.stockid
ORDER BY assetmanager.serialno,stockmaster.stockid";
$result=DB_query($sql, $db);
echo '<table class="selection">';
echo '<tr>';
echo '<th>'._('Asset Type').'</th>';
echo '<th>'._('Asset Reference').'</th>';
echo '<th>'._('Description').'</th>';
echo '<th>'._('Depreciation %').'</th>';
echo '</tr>';
while ($myrow=DB_fetch_array($result)) {
if ($myrow['value']!='Straight Line') {
echo '<tr>';
echo '<td>'.$myrow['description'].'</td>
<td>'.$myrow['serialno'].'</td>
<td>'.$myrow['label'].'</td>
<td class="number">'.$myrow['value'].'%</td>';
echo '</tr>';
}
}
echo '</table>';
include('includes/footer.inc');
?>