-
Notifications
You must be signed in to change notification settings - Fork 0
/
report1.php
194 lines (159 loc) · 7.68 KB
/
report1.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
<?php include("inc_connect.php");?>
<?php if($_SESSION["LOGIN_OK"]!=true) { alert("คุณไม่มีสิทธิในการใช้งานเมนูนี้","main.php"); } ?>
<?php
$_POST["sdate"] = ($_REQUEST["sdate"]!="")?$_REQUEST["sdate"]:date("Y-m-d");
$_POST["edate"] = ($_REQUEST["edate"]!="")?$_REQUEST["edate"]:date("Y-m-d");
?>
<!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-usd"></i> รายงานการขาย</span></h4>
<form name="f" action="?" method="post" class="form-inline text-center">
ระหว่างวันที่ <input type="date" name="sdate" id="sdate" value="<?php print $_POST["sdate"]?>" class="form-control">
ถึงวันที่ <input type="date" name="edate" id="edate" value="<?php print $_POST["edate"]?>" class="form-control">
<button type="submit" class="btn btn-primary">ค้นหา</button>
</form>
<br/>
<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="right"><strong>รวมเงิน</strong></td>
<td align="right"><strong>ค่าขนส่ง</strong></td>
<td align="right"><strong>ส่วนลด</strong></td>
<td align="right"><strong>รวมเงินทั้งสิ้น</strong></td>
<td align="left"><strong>หมายเหตุ</strong></td>
<td><strong>เมนู</strong></td>
</tr>
</thead>
<tbody>
<?php
$SQL = "select * from tb_sale where lastupdate between '".$_POST["sdate"]." 00:00:00' and '".$_POST["edate"]." 23:59:59' order by lastupdate desc ";
$result = mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
$i = 0;
while($tmp = mysqli_fetch_array($result)) {
$i++;
$SQL = "select * from tb_customer where cus_id='".$tmp["cus_id"]."'";
$result1 = mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
$tmp1 = mysqli_fetch_array($result1);
?>
<tr align="center">
<td><?php print $i?></td>
<td align="center"><?php print show_datetime($tmp["lastupdate"])?> น.</td>
<td align="left"><?php print $tmp1["name"]?> <?php if($tmp1["phone"]!="") { ?>(<?php print $tmp1["phone"]?>)<?php } ?></td>
<td align="right"><?php print number_format($tmp["total"],2)?></td>
<td align="right"><?php print number_format($tmp["delivery"],2)?></td>
<td align="right"><?php print number_format($tmp["discount"],2)?></td>
<td align="right"><?php print number_format($tmp["grand"],2)?></td>
<td align="left"><?php print $tmp["note"]?></td>
<td nowrap>
<a href="sale-print.php?sale_id=<?php print $tmp["sale_id"]?>" class="btn btn-default btn-xs" role="button" target="_blank"><i class="glyphicon glyphicon-print"></i></a>
</td>
</tr>
<?php
$total+= $tmp["total"];
$delivery+= $tmp["delivery"];
$discount+= $tmp["discount"];
$grand+= $tmp["grand"];
} ?>
</tbody>
<tfoot>
<tr align="center">
<td colspan="3"><strong>รวม</strong></td>
<td align="right"><strong><?php print number_format($total,2)?></strong></td>
<td align="right"><strong><?php print number_format($delivery,2)?></strong></td>
<td align="right"><strong><?php print number_format($discount,2)?></strong></td>
<td align="right"><strong><?php print number_format($grand,2)?></strong></td>
<td>หมายเหตุ</td>
<td>เมนู</td>
</tr>
</tfoot>
</table>
<a type="button" class="btn btn-default btn-lg" href="print1.php?sdate=<?php print $_POST["sdate"]?>&edate=<?php print $_POST["edate"]?>" target="_blank"><i class="glyphicon glyphicon-print"></i></a>
<a type="button" class="btn btn-default btn-sm" href="print1.php?sdate=<?php print $_POST["sdate"]?>&edate=<?php print $_POST["edate"]?>&type=excel"><img src="images/excel-icon.png"></a>
<a type="button" class="btn btn-default btn-sm" href="print1.php?sdate=<?php print $_POST["sdate"]?>&edate=<?php print $_POST["edate"]?>&type=word"><img src="images/word-icon.png"></a>
</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,
searching: false
});
});
*/
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>