-
Notifications
You must be signed in to change notification settings - Fork 22
/
gen_pay_slip.php
262 lines (215 loc) · 6.38 KB
/
gen_pay_slip.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
<?php
include_once 'header_h.php';
include_once 'roles.php';
?>
<form action="cal_sal.php" method="post">
<section class="content">
<div class="container-fluid">
<div class="block-header">
<h2>SALARY SLIP</h2>
</div>
<!-- Input -->
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card" id="printthis">
<div class="body">
<?php
include_once 'config/config.php';
$slid=$_SESSION['sal_id'];
$q="SELECT * FROM employee WHERE Employee_id='$slid'";
$status=mysqli_query($connection_obj,$q);
if($status)
{
$data=mysqli_fetch_assoc($status);
}
$bid=$data['Branch_id'];
$q1="SELECT * FROM branch WHERE Branch_id='$bid'";
$s1=mysqli_query($connection_obj,$q1);
if($s1)
{
$data1=mysqli_fetch_assoc($s1);
}
$q2="SELECT * FROM payroll_details WHERE Employee_id='$slid'";
$s2=mysqli_query($connection_obj,$q2);
if($s2)
{
$data2=mysqli_fetch_assoc($s2);
}
?>
<button class='btn btn-info btn-circle-lg waves-effect waves-circle' waves-floattype='button'>
<i class='material-icons' onclick="printDiv()">print</i>
</button>
<script type="text/javascript">
function myfunc()
{
window.print();
}
</script>
<h3>
<center>
<div class="row clearfix">
<div style="border: 2px solid black;height:750px;width:1000px;">
<div style="border: 1px solid black;height:140px;width:998px;margin-right:400px;">
<?php
echo "<center><h1><b><font color='#5C7EB5'>";
echo $data1['Name']."<br>";
echo "</font></b></h1><small>";
echo $data1['Branch_Address']."<br>";
echo "Salary Slip</small></center>";
?>
</div>
<div class="row clearfix">
<div style="border-radius:10px;border: 2px solid #2196F3;height:70px;width:300px;margin-right:650px;margin-top: 20px">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px;">
<center>Name</center>
</div>
<?php echo "<center>".$data['Employee_name']."</center><br>"; ?>
</div>
</div>
<br><br>
<div style="border-radius:10px;border: 2px solid #2196F3;height:70px;width:300px;margin-left:1px;margin-top: -122px">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px; ">
<center>Employee Id</center>
</div>
<?php echo "<center>".$data['Employee_id']."</center><br>"; ?>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:70px;width:300px;margin-left:650px;margin-top: -7%">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px; ">
<center>Employer</center>
</div>
<?php
$eid=$data['Designation_id'];
$x="select * from designation where Designation_id=$eid";
$x1=mysqli_query($connection_obj,$x);
if($x1)
{
$x3=mysqli_fetch_assoc($x1);
}
echo "<center>".$x3['Super_id_name']."</center><br>"; ?>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:270px;width:300px;margin-right:650px;margin-top: 3%">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px;">
<center>Payments</center>
</div>
<?php
echo "<font size=4><b>";
echo "<table border='0'>";
echo "<tr><th style='width: 191px'>Description</th>
<th>Amount</th>
</tr>";
echo "</b></table>";
echo "</font>";
echo "<font size=3>";
echo "<table border='0'>";
echo "<tr><td style='width: 191px'>Basic salary</td>
<td>".$data['Basic_salary']."</td>
</tr>";
echo "<tr><td>Bonus</td>
<td>".$data2['Bonus']."</td>
</tr>";
$tot=$data['Basic_salary']+$data2['Bonus'];
echo "<tr style='height: 150px'></tr>";
echo "<tr><td>Total</td>
<td>".$tot."</td>
</tr>";
echo "</table>";
echo "</font>";
?>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:270px;width:300px;margin-right:10px;margin-top:-27%">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px;">
<center>Deduction</center>
</div>
<?php
echo "<font size=4><b>";
echo "<table border='0'>";
echo "<tr><th style='width: 191px'>Description</th>
<th>Amount</th>
</tr>";
echo "</b></table>";
echo "</font>";
echo "<font size=3>";
echo "<table border='0'>";
echo "<tr><td style='width: 191px'>Total Amount</td>
<td>".$tot."</td>
</tr>";
echo "<tr><td>Cutoff</td>
<td>".$_SESSION['cutoff']."</td>
</tr>";
$tot1=$tot-$_SESSION['cutoff'];
echo "<tr style='height: 150px'></tr>";
echo "<tr><td>Total</td>
<td>".$tot1."</td>
</tr>";
echo "</table>";
echo "</font>";
?>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:270px;width:300px;margin-left:64%;margin-top:-27%">
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 30px;width:298px;">
<center>Taxes</center>
</div>
<?php
echo "<font size=4><b>";
echo "<table border='0'>";
echo "<tr><th style='width: 191px'>Description</th>
<th>Amount</th>
</tr>";
echo "</b></table>";
echo "</font>";
echo "<font size=3>";
echo "<table border='0'>";
echo "<tr><td style='width: 191px'>Amount</td>
<td>".$tot1."</td>
</tr>";
echo "<tr><td>PT</td>
<td>".$data['PT']."</td>
</tr>";
$tot2=$tot1-$data['PT'];
echo "<tr style='height: 150px'></tr>";
echo "<tr><td>Total</td>
<td>".$tot2."</td>
</tr>";
echo "</table>";
echo "</font>";
?>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:79px;width:945px;margin-left:1px;margin-top: 2%">
<center>
<?php echo $data['Bank_account_number']; ?>
</center>
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 77px;width:100px;margin-right: 100%;margin-top: -3%">
<center>Bank Account Number</center>
</div>
</div>
<div style="border-radius:10px;border: 2px solid #2196F3;height:70px;width:945px;margin-left:1px;margin-top: 2%">
<center>
<?php echo $tot2; ?>
</center>
<div style="border-radius:5px 9px 5px 5px;background:#5C7EB5;height: 68px;width:100px;margin-right: 100%;margin-top: -3%">
<center>Net Salary</center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div></div>
</section>
</center>
</h3>
</form>
<script type="text/javascript">
function printDiv(printthis) {
var printContents = document.getElementById('printthis').innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
}
</script>
<?php
include_once 'footer_h.php';
?>