You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

152 lines
3.8 KiB

<?php
/**
* 開放權限:業務部(助理)專員
*/
include "header.php";
$data = array();
$sql = "";
$db_query = "select department_id, role_id from account where accountid = '$user_id'";
$res = mysqli_query($link, $db_query);
if ($row = mysqli_fetch_assoc($res)) {
if ($row["department_id"] == "321") {
if ($row["role_id"] == "1" || $row["role_id"] == "4") {
$sql = "select * from wipproduction order by id";
}
}
}
mysqli_free_result($res);
if (empty($sql)) {
$sql_cmd = sql_myself($user_id);
$sql = "select * from wipproduction $sql_cmd order by id";
}
$data = mysqli_query($link, $sql);
?>
<!-- <a href="create.php"><h2>新增</h2></a> -->
<?php if ($user_auth&2) { ?>
<p>
<a href="wipproduction-create.php?function_name=wipproduction&<?php echo $token_link; ?>" class="btn btn-info btn-sm">
<span class="glyphicon glyphicon-plus"></span>
</a>
</p>
<?php
}
if($data):
if($_SERVER["REQUEST_METHOD"] == "POST"){
if(empty($_POST["name"]) && empty($_POST["email"]) && empty($_POST["website"])){
echo "<p class='error'>Please fill up the required field!</p>";
} else {
header("Location:wipproduction-index.php");
}
}
?>
<style>
table {
table-layout:fixed;
width: 100%;
}
td {
word-wrap:break-word;
}
img {
width:125px;
}
.width_style_1 {
width:125px;
}
table{
width:100%;
}
#table_index_filter{
float:right;
}
#table_index_paginate{
float:right;
}
label {
display: inline-flex;
margin-bottom: .5rem;
margin-top: .5rem;
}
</style>
<div style="overflow-x:auto;">
<table id="table_index" class="table table-striped table-bordered" style="width:100%">
<thead>
<tr>
<th>項次</th>
<th>用戶帳號</th>
<th>電梯編號</th>
<th>時間</th>
<th>階段</th>
<th>區域</th>
<th>建檔人</th>
<th>建檔時間</th>
<?php if ($user_auth&2) { ?>
<th>修改</th>
<!--<th>刪除</th>-->
<?php } ?>
</tr>
</thead>
<tbody>
<?php foreach($data as $data) : ?>
<tr>
<td><?php echo $data['id']; ?></td>
<td><?php echo $data['accountid']; ?></td>
<td><?php echo $data['facilityno']; ?></td>
<td><?php echo substr($data['issue_time'],0,10); ?></td>
<td><?php echo $data['process']; ?></td>
<td><?php echo $data['region']; ?></td>
<td><?php echo $data['creater']; ?></td>
<td><?php echo $data['create_at']; ?></td>
<?php if ($user_auth&2) { ?>
<td>
<p>
<a href="wipproduction-edit.php?id=<?php echo $data['id']; ?>&function_name=wipproduction&<?php echo $token_link; ?>" class="btn btn-info btn-sm">
<span class="glyphicon glyphicon-pencil"></span>
</a>
</p>
</td>
<!--<td>
<p>
<a href="wipproduction-delete.php?id=<?php echo $data['id']; ?>&<?php echo $token_link; ?>" class="btn btn-info btn-sm" onClick="return confirm('Are you sure you want to delete?')">
<span class="glyphicon glyphicon-remove"></span>
</a>
</p>
</td>-->
<?php } ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php
else:
echo "<h2>There is no record!</h2>";
endif;
#代表結束連線
mysqli_close($link);
include "footer.php";
?>