forked from ashrulpuo/e-peralatan
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathperincian.php
More file actions
193 lines (168 loc) · 6.11 KB
/
perincian.php
File metadata and controls
193 lines (168 loc) · 6.11 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
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
<!doctype html>
<html lang="en">
<?php
include "header.php";?>
<?php
$permohonanID = '';
if(isset($_GET['permohonanID'])){
$permohonanID = $_GET['permohonanID'];
}
?>
<?php
$result = mysql_query("SELECT * FROM permohonan WHERE id_permohonan = '".$permohonanID."'") or die(mysql_error());
if(mysql_num_rows($result) == 1)
{
$row = mysql_fetch_array( $result );
$result_peralatan1 = mysql_query("SELECT * FROM peralatan WHERE no_aset = '".$row['peralatan1']."'") or die(mysql_error());
$row1 = mysql_fetch_array( $result_peralatan1 );
$result_peralatan2 = mysql_query("SELECT * FROM peralatan WHERE no_aset = '".$row['peralatan2']."'") or die(mysql_error());
$row2 = mysql_fetch_array( $result_peralatan2 );
$result_peralatan3 = mysql_query("SELECT * FROM peralatan WHERE no_aset = '".$row['peralatan3']."'") or die(mysql_error());
$row3 = mysql_fetch_array( $result_peralatan3 );
}
else
{
echo "<script>alert('Nombor rujukan tiada dalam sistem'); window.location = './semak.php';</script>";
}
?>
<body>
<div class="container">
<div class="col-lg-12">
<div class="card">
<div class="card-body shadow">
<center><img src="img/6.png" class="img-fluid header" alt="Responsive image"></center>
<?php include "navbar2.php"; ?>
<div class="row justify-content-md-center">
<div class="col col-lg-8" id="printableArea">
<h4>
Maklumat Pemohon
</h4>
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">No. Permohonan</th>
<td><?php echo $_GET['permohonanID'] ?></td>
</tr>
<tr>
<th scope="row">Nama</th>
<td><?php echo $row['nama_pemohon'] ?></td>
</tr>
<tr>
<th scope="row">Jawatan</th>
<td><?php echo $row['jawatan'] ?></td>
</tr>
<tr>
<th scope="row">Bahagian</th>
<td><?php echo $row['nama_unit'] ?></td>
</tr>
<tr>
<th scope="row">Tujuan</th>
<td><?php echo $row['tujuan'] ?></td>
</tr>
<tr>
<th scope="row">Tempat Digunakan</th>
<td><?php echo $row['tempat_digunakan'] ?></td>
</tr>
<tr>
<th scope="row">Tarikh Pinjam</th>
<td><?php echo $row['tarikh_pinjam'] ?></td>
</tr>
<tr>
<th scope="row">Tarikh Dijangka Pulang</th>
<td><?php echo $row['tarikh_dijangkapulang'] ?></td>
</tr>
<tr>
<th scope="row">Status</th>
<td>
<?php
if($row['status'] == '0')
{
echo "Sedang Dalam Proses";
}
else if($row['status'] == '1')
{
echo "Diluluskan";
}
else
{
echo "Tidak Diluluskan";
}
?> </td>
</tr>
</tbody>
</table>
<br>
<h4>
Maklumat Peralatan
</h4>
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Peralatan 1</th>
<td>
<strong><?php echo $row1['peralatan'] ?></strong><br>
Model : <?php echo $row1['model'] ?><br>
No. Aset : <?php echo $row1['no_aset'] ?>
</td>
</tr>
<tr>
<th scope="row">Peralatan 2</th>
<td>
<strong><?php echo $row2['peralatan'] ?></strong><br>
Model : <?php echo $row2['model'] ?><br>
No. Aset : <?php echo $row2['no_aset'] ?>
</td>
</tr>
<tr>
<th scope="row">Peralatan 3</th>
<td>
<strong><?php echo $row3['peralatan'] ?></strong><br>
Model : <?php echo $row3['model'] ?><br>
No. Aset : <?php echo $row3['no_aset'] ?>
</td>
</tr>
</tr>
</tbody>
</table>
<center>
<?php
if($row['status'] == '0')
{
echo '
<a href="lulus.php?permohonanID='.$_GET['permohonanID'].'" class="btn btn-success btn-sm" role="button">Diluluskan</a>
<a href="tidak_lulus.php?permohonanID='.$_GET['permohonanID'].'" class="btn btn-danger btn-sm" role="button">Tidak Diluluskan</a>
<a href="ubah_peralatan.php?permohonanID='.$_GET['permohonanID'].'" class="btn btn-secondary btn-sm" role="button">Ubah Peralatan</a>
<a href="javascript:history.go(-1)" class="btn btn-dark btn-sm" role="button">Kembali <<</a>';
}
else
{
echo '
<a href="nama pengeluar.php?permohonanID='.$_GET['permohonanID'].'" class="btn btn-secondary btn-sm" role="button">Nama Pengeluar</a>
<a href="kewpa.php?permohonanID='.$_GET['permohonanID'].'"<input type="button" onclick="printDiv("printableArea")" value="Cetak Maklumat Ini!" class="btn btn-primary btn-sm" role="button">Cetak Maklumat Ini</a>
<a href="javascript:history.go(-1)" class="btn btn-dark btn-sm" role="button">Kembali <<</a>';
}
?>
</center>
</div>
</div>
<?php include "footer.php";?>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script>
function printDiv(divName) {
var printContents = document.getElementById(divName).innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
}
</script>
</body>
</html>