-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetDescription.php
More file actions
99 lines (75 loc) · 3.26 KB
/
AssetDescription.php
File metadata and controls
99 lines (75 loc) · 3.26 KB
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
<?php
include("connection.php");
include("sessionlock.php");
?>
<html lang="en">
<head>
<title>|home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<!-- navbar-fixed-top for fixed top -->
<nav class="navbar navbar-inverse ">
<div class="container-fluid" style = "background-color: #005200">
<ul class="nav navbar-nav" style ="color: white">
<li><a href="index.php">Dashboard</a></li>
<li><a href="ViewAssets.php">Assets</a></li>
<li><a href="HomeTask.php">Task</a></li>
<li><a href="ViewUser.php">User</a></li>
<li><a href="ViewReport.php">Report</a></li>
<li><a href="#">settings</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><?php echo " ".$fullname."";?>
?></a></li>
<li><a href="logout.php"> Log out</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="col-md-12">
<marquee> <h4>tanesco assets management system</h4></marquee>
</div>
<div class="col-md-4">
<h5>Quik links</h5>
<h5>
<div class="list-group">
<a href="AddUser.html" class="list-group-item">Add user</a>
<a href="AddAsset.html" class="list-group-item">Add asset</a>
<a href="#" class="list-group-item">Assign task</a>
<a href="#" class="list-group-item">Recommendation</a>
<a href="#" class="list-group-item">Report</a>
</div></h5>
</div>
<div class="col-sm-8">
<h3>Assets description</h3>
<p>Classification
Assets may be classified into Current and Non-Current. The distinction is made on the basis of time period in which the economic benefits from the asset will flow to the entity.
Current Assets are ones that an entity expects to use within one-year time from the reporting date.
Non Current Assets are those whose benefits are expected to last more than one year from the reporting date.
Types and Examples
Following are the most common types of Assets and their Classification along with the economic benefits derived from those assets.
Asset Classification Economic Benefit
Machine Non-current Used for the production of goods for sale to customer.
Office Building Non-current Provides space to employees for administering company affairs.
Vehicle Non-current Used in the transportation of company products and also for commuting.
Inventory Current Cash is generated from the sale of inventory.
Cash Current Cash!
Receivables Current Will eventually result in inflow of cash.
- See more at: http://accounting-simplified.com/elements-of-financial-statements.html#sthash.4hmWciPr.dpuf
</p>
</div>
</div>
<div class="col-md-12">
</div>
<div class="col-md-12" style = "background-color: #005200; color: white">
<center> <p>Tanesco | ICT | FTP | 2015 </p></center>
</div>
</div>
</body>
</html>