-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.php
201 lines (159 loc) · 7.59 KB
/
product.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
<?php include("inc_connect.php");?>
<?php if($_SESSION["LOGIN_OK"]!=true || $_SESSION["LOGIN_LEVEL"]!=1) { alert("คุณไม่มีสิทธิในการใช้งานเมนูนี้","main.php"); } ?>
<?php
if($_GET["pro_id"]!="" && $_GET["action"]=="del") {
$SQL = "select * from tb_product where pro_id='".$_GET["pro_id"]."'";
$result = mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
$tmp = mysqli_fetch_array($result);
if($tmp["picture"]!="") {
@unlink("images-upload/".$tmp["picture"]);
}
$SQL = "delete from tb_product where pro_id='".$_GET["pro_id"]."' ";
mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
// alert("ลบข้อมูลเสร็จเรียบร้อยแล้ว","product.php");
} elseif($_GET["pro_id"]!="" && $_GET["action"]!="") {
$SQL = "update tb_product set confirm='".(($_GET["action"]==1)?"0":"1")."' where pro_id='".$_GET["pro_id"]."' ";
mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
// alert("เปลี่ยนสถานะเสร็จเรียบร้อยแล้ว","product.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ระบบซื้อขายสินค้า">
<meta name="author" content="zues.com">
<meta name="keywords" content="ระบบซื้อขายสินค้า">
<title>ระบบซื้อขายสินค้า</title>
<link rel="shortcut icon" href="images/zues.jpg">
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="dist/css/offcanvas.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="assets/js/ie-emulation-modes-warning.js"></script>
<link href="vendor/datatables-plugins/dataTables.bootstrap.css" rel="stylesheet">
<link href="vendor/datatables-responsive/dataTables.responsive.css" rel="stylesheet">
<link href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php include("inc_menu.php"); ?>
<div class="container">
<?php include("inc_user.php"); ?>
<div class="col-xs-12">
<h4><span class="label label-primary"><i class="glyphicon glyphicon-barcode"></i> ข้อมูลสินค้า</span>
<a href="product-form.php?pro_id=0" class="btn btn-success btn-xs" role="button"><i class="glyphicon glyphicon-star"></i> สร้างสินค้าใหม่</a>
</h4>
<table class="table table-bordered" id="data-tb">
<thead>
<tr align="center">
<td>#</td>
<td align="center"><strong>รหัส/รูปสินค้า</strong></td>
<td align="left"><strong>ชื่อสินค้า</strong></td>
<td align="left"><strong>รายละเอียด</strong></td>
<td align="right"><strong>ราคาต้นทุน</strong></td>
<td align="right"><strong>ราคาขาย</strong></td>
<td align="right"><strong>จำนวนคงเหลือ</strong></td>
<td><strong>เมนู</strong></td>
</tr>
</thead>
<tbody>
<?php
$SQL = "select * from tb_product order by code ";
$result = mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
$i = 0;
while($tmp = mysqli_fetch_array($result)) {
$i++;
?>
<tr align="center" <?php print ($tmp["confirm"]==0)?"style='background-color: #d7d7d7'":""?>>
<td><?php print $i?></td>
<td align="center"><?php print $tmp["code"]?><?php if($tmp["picture"]!="") { ?><br/><img src="images-upload/<?php print $tmp["picture"]?>" width="75"><?php } ?></td>
<td align="left"><?php print $tmp["name"]?></td>
<td align="left"><?php print $tmp["detail"]?></td>
<td align="right"><?php print $tmp["cost"]?></td>
<td align="right"><?php print $tmp["price"]?></td>
<td align="right"><?php print $tmp["qty"]?></td>
<td nowrap>
<a href="product-form.php?pro_id=<?php print $tmp["pro_id"]?>" class="btn btn-default btn-xs" role="button"><i class="glyphicon glyphicon-pencil"></i></a>
<a href="?pro_id=<?php print $tmp["pro_id"]?>&action=del" class="btn btn-warning btn-xs" onclick="return del();" role="button"><i class="glyphicon glyphicon-trash"></i></a>
<a href="?pro_id=<?php print $tmp["pro_id"]?>&action=<?php print $tmp["confirm"]?>" class="btn btn-<?php print ($tmp["confirm"]==1)?"success":"danger"?> btn-xs" onclick="return active(<?php print $tmp["confirm"]?>);" role="button"><i class="glyphicon glyphicon-<?php print ($tmp["confirm"]==1)?"ok":"remove"?>"></i></a>
</td>
</tr>
<?php } ?>
</tbody>
<tfoot>
<tr align="center">
<td>#</td>
<td>รหัส/รูปสินค้า</td>
<td>ชื่อสินค้า</td>
<td>รายละเอียด</td>
<td>ราคาต้นทุน</td>
<td>ราคาขาย</td>
<td>จำนวนคงเหลือ</td>
<td>เมนู</td>
</tr>
</tfoot>
</table>
</div>
<?php include("inc_footer.php"); ?>
</div><!--/.container-->
<?php include("inc_footerpage.php"); ?>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
<!-- DataTables JavaScript -->
<script src="vendor/datatables/js/jquery.dataTables.min.js"></script>
<script src="vendor/datatables-plugins/dataTables.bootstrap.min.js"></script>
<script src="vendor/datatables-responsive/dataTables.responsive.js"></script>
<script>
$(document).ready(function() {
var table = $('#data-tb').DataTable(
{
width : "100%",
autoWidth : true,
"dom": '<"pull-left"f><"pull-right"l>tip'
});
});
$('#data-tb').on('search.dt', function() {
var value = $('.dataTables_filter input').val();
});
function del() {
if(confirm("คุณต้องการลบรายการนี้หรือไม่?")) {
return true;
} else {
return false;
}
}
function active(s) {
if(s==1) {
if(confirm("คุณต้องการระงับการใช้งานหรือไม่?")) {
return true;
} else {
return false;
}
} else {
if(confirm("คุณต้องการให้ใช้งานหรือไม่?")) {
return true;
} else {
return false;
}
}
}
</script>
</body>
</html>