-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreports-generator.php
158 lines (151 loc) · 7.05 KB
/
reports-generator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<meta content='text/html;charset=utf-8' http-equiv='content-type'>
<title>Reports</title>
<?php include_once 'html_comp/navbar.php'; ?>
<?php include_once 'html_comp/left_panel.php'; ?>
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-6">
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Asset</th>
<th>As pdf</th>
<th>As Excel</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Asset</th>
<th>As pdf</th>
<th>As Excel</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Acquisitions</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Acquisitions worth Vouchers details</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>AMC/insurance</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Physical Verification</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Market Valuation</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Write-off / Acquisition</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Write off/ Adjustment</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Sales & Discard</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Fixed Asset Register</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Fixed Asset Schedules as per the book</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Form 3CD txtract</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Depreciation Calculation</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Income Tax Act</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Depreciation Comparison Report</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>AMC/Insurance/ Warranty</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
<tr>
<td>Expiry Report</td>
<td><a href="#">pdf</a></td>
<td><a href="#">excel</a></td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-2">
<?php include_once 'html_comp/right_panel.php'; ?>
</div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" style="width:370px; height:auto">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="myModalLabel"><font size="5" >Add Employee</font></h4>
</div>
<div class="modal-body">
<div class="inline-form">
<div class="row">
<div class="col-md-6">
<input type="text" class="form-control" style="width: 100%" id="firstname" placeholder="First name" onkeyup="nospaces(this)"/>
</div>
<div class="col-md-6">
<input type="text" class="form-control" style="width: 100%" id="lastname" placeholder="Last name" onkeyup="nospaces(this)"/>
</div>
</div>
</div><br/>
<input type="text" class="form-control" style="width: 100%" id="email" placeholder="Email" onkeyup="nospaces(this)"/>
<span id="status_email"></span>
<br/>
<input type="submit" class="btn btn-primary btn-lg" id = "request" value = "Sign up" onclick="validateSignupFormOnSubmit()">
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$('#example').DataTable();
});
</script>
</body>
</html>