-
Notifications
You must be signed in to change notification settings - Fork 1
/
insert_feed.php
211 lines (190 loc) · 10.1 KB
/
insert_feed.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
<?php
include ('conn.php');
session_start();
if($_SESSION["Username"]=="") // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:login.php');
exit();
}
$username=$_SESSION["Username"];
include 'header.php';
?>
<div class="container">
<div class="jumbotron">
<?php
@include('conn.php');
$strSQL = "SELECT MAX(id_mat) FROM buymeterial";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
$result= $objReSult["MAX(id_mat)"];
$ina="";
for($a=0;$a<Strlen($result);$a++){
if($a>=2)$ina =$ina.intval($result[$a]) ;
}
$id= "BM-".sprintf("%04d", $ina+1);
}
?>
<!--<h1><font face ="JasmineUPC">โรงพยาบาลเจ้าพระยาอภัยภูเบศร</font></h1>-->
<br>
<p>ข้อมูลการสั่งซื้ออาหารทางสายยาง</p>
<div class="modal-body">
<form method="post" action="#" >
<table>
<tr><td><h4>รหัสการสั่งซื้ออาหารทางสายยาง </td><td><h4>: <?php echo $id ; ?>
<input type="hidden" name="idmat" value="<?php echo $id ; ?>"></h4></td></td>
<td width=150 align=center><h4>เจ้าหน้าที่ผู้สั่งซื้อ </td><td><h4> : <?php echo $_SESSION['fnname'] ; ?>
<input type="hidden" name="idname" value="<?php echo $username ; ?>"></h4></td>
<tr><td><h4>เลือกชื่อร้านค้าตัวแทนจำหน่าย </td><td><h4>:
<select id="dep" name="dep" required onchange="document.getElementById('selected_text').value=this.options[this.selectedIndex].text">
<option value="" disabled selected>-------กรุณาเลือกร้านค้า-------</option></h4>
<?
$strSQL = "SELECT * FROM restaurant where type='FYST02' ORDER BY res_name";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
if ($_POST["dep"] == $objReSult['res_id']) {
# code...
$sel = "selected";
}
else
{
$sel = "";
}
?>
<option value="<? echo $objReSult["res_name"];?>" <? echo $sel; ?> > <? echo $objReSult["res_name"];?></option>
<?
}
error_reporting(0);
date_default_timezone_set("Asia/Bangkok") ;
$strDate=date('d-m-Y');
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strDays= date("l",strtotime($strDate));
$strDayCut = Array("Monday"=>"วันจันทร์ที่","Tuesday"=>"วันอังคารที่","Wednesday"=>"วันพุธที่","Thursday"=>"วันพฤหัสบดีที่","Friday"=>"วันศุกร์ที่","Saturday"=>"วันเสาร์ที่","Sunday"=>"วันอาทิตย์ที่");
$strMonthCut = Array("","มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤษจิกายน","ธันวาคม");
$strMonthThai=$strMonthCut[$strMonth];
$strDaysThai = $strDayCut[$strDays];
$date=$strDaysThai." ".$strDay." ".$strMonthThai." ".$strYear;
?>
</select><font color="red"> *</font></table>
<table>
<tr>
<td width=240 align=left><h4>วันที่สั่งซื้ออาหารทางสายยาง : </td><td><h4><?php echo $date; ?>
<input type="hidden" name="date" value="<?php echo date('Y-m-d'); ?>"></h4></td></tr>
<tr><td><br></table><div class="modal-footer"><input type="submit" class="btn btn-success" name="submit" value="เพิ่มข้อมูล" > </td>
<td><a href="index.php"><button type="button" class="btn btn-danger" data-dismiss="modal" onclick="return confirm('ต้องการยกเลิกการเพิ่มข้อมูลนี้?')">ยกเลิก</button>
</a>
</form>
<?php
if(isset($_POST['submit'])){
$id=$_POST['idmat'];
$name=$_POST['idname'];
$dep=$_POST['dep'];
$_SESSION['deep2'] = $dep;
$date=date('Y-m-d', strtotime($_POST['date']));
@include('conn.php');
$insert = "INSERT INTO buymeterial VALUES ('$id','$name','$dep','$date','','2','0','0')";
$query = mysql_query($insert,$connect1);
echo( "<script> alert('เพิ่มข้อมูลสำเร็จ');
window.location='select_feed.php?id=$id';</script>");
if(!$insert){
echo( "<script> alert('ไม่สามารถเพิ่มข้อมูลได้ เกิดข้อผิดพลาดบางประการ');
window.location='insert_feed.php';</script>");
}
}
?>
</table>
</div>
</div>
</div>
<div class="jumbotron">
<?php
$perpage = 20;
if (isset($_GET['page']) && $_GET['page'] != 0) {
$page = $_GET['page'];
} else {
$page = 1;
}
$start = ($page - 1) * $perpage;
$strSQL = "SELECT * FROM buymeterial WHERE typebuy= '2' order by id_mat DESC LIMIT {$start},{$perpage}";
$objQuery = mysql_query($strSQL,$connect1) or die("Error Query [".$strSQL."]");
?>
<h4>ประวัติการสั่งซื้ออาหารทางสายยาง</h4><br>
<table class="table table-striped table-bordered">
<tr class="warning">
<th><div align="center">วันที่</div></th>
<th><div align="center">รหัสใบสั่งซื้อ</div></th>
<th><div align="center">ชื่อผู้สั่งซื้อ</div></th>
<th><div align="center">ชื่อตัวแทนจำหน่าย</div></th>
<th><div align="center">ราคารวม(บาท)</div></th>
<th><div align="center">แก้ไขข้อมูล</div></th>
<th><div align="center">พิมพ์</div></th>
<th><div align="center">ข้อมูล</div></th>
</tr>
<?php
while ($objReSult = mysql_fetch_array($objQuery)) {
$strDate=date('d-m-Y', strtotime($objReSult["date"]));
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
$date=$strDay." ".$strMonthThai." ".$strYear;
?>
<tr class ="info">
<td><div align = "center"><?php echo $date;?></div></td>
<td><div align = "center"><? echo $objReSult["id_mat"];?></div></td>
<td><div align = "center"><? echo $objReSult["user_name"];?></div></td>
<td><div align = "center"><? echo $objReSult["res_name"];?></div></td>
<td><div align = "right"><? echo number_format($objReSult["total_mat"],2);?></div></td>
<?php if ($objReSult["status"]==0): ?>
<td><div align = "center"><a href="select_feed.php?id=<? echo $objReSult['id_mat'];?>" onclick="return confirm('ต้องการแก้ไขข้อมูลนี้?')"><b><font color="blue"><img src='img/edit.png' width=25></font></b></a></div></td>
<td><div align = "center"><a href="success_feed.php?id=<? echo $objReSult['id_mat'];?>"><b><font color="blue"><img src='img/print.png' width=25></font></b></a></div></td>
<?php elseif($objReSult["status"]==2): ?>
<td ><div align = "center" class="text-success">รับสินค้าแล้ว</div></td>
<td><div align = "center"><a href="success_feed.php?id=<? echo $objReSult['id_mat'];?>"><b><font color="blue"><img src='img/print.png' width=25></font></b></a></div></td>
<?php else: ?>
<td colspan=2><div align = "center"><img src='img/close.png' width=25></div></td>
<?php endif; ?>
<td><div align = "center"><a data-toggle="modal" data-target="#myModal" OnClick="setModal('<?php echo $objReSult["id_mat"]; ?>')" href="#myModal" ><img src='img/sssss.png' width=25></a></div></td>
</tr>
<?php
} ?>
</table>
<?php
$sql2 = "SELECT * FROM buymeterial";
$query2 = mysql_query($sql2, $connect1);
$total_record = mysql_num_rows($query2);
$total_page = ceil($total_record / $perpage);
?>
<nav align="center" aria-label="Page navigation example">
<ul class="pagination">
<li class="page-item"><a class="page-link" href="insert_feed.php?page=<?php echo ($page-1); ?>" aria-label="Previous"><span aria-hidden="true"><<</span></a></li>
<?php for($i=1;$i<=$total_page;$i++){ ?>
<li><a href="insert_feed.php?page=<?php echo $i; ?>"><?php echo $i; ?></a></li>
<?php } ?>
<li class="page-item"><a class="page-link" href="insert_feed.php?page=<?php echo ($page+1); ?>" aria-label="Next"><span aria-hidden="true">>></span></a></li>
</ul>
</nav>
</div>
</div>
<script type="text/javascript">
function setModal(id){
$('#test').load('detailfeed.php?id='+id);
}
</script>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" >
<div class="modal-dialog" role="document">
<div class="modal-content" style="width:100%;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div id="test"></div>
<div class="text-right" style="margin-right:30px;">
<button type="button" class="btn btn-danger" data-dismiss="modal" aria-label="Close">ปิด</button>
</div>
<br>
</div>
</div>
</div>