|
|
|
ขอคำแนะนำครับ ถ้าต้องการซ่อนวันที่ (ที่ซ้ำกัน) ไม่ให้แสดงหน้ารายงาน ต้องเขียน Code หรือ script อย่างไรครับ |
|
|
|
|
|
|
|
รูปรายงานที่แสดง ที่มีวันทีเรียงกัน
รูปที่อยากให้ซ่อนวันที่ (ที่ซ้ำกัน) ครับ
Code php
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>Untitled Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script type="text/javascript" src="jQueryui/jQuery.js"></script>
<script type="text/javascript" src="jQueryui/jQuery-ui.js"></script>
<script type="text/javascript">
// กำหนดสี billing Status
var search = 'Reservation';
$(document).ready(function () {
$("div:contains('"+search+"')").each(function () {
var regex = new RegExp(search,'gi');
$(this).html($(this).text().replace(regex, "<span class='red'>"+search+"</span>"));
});
});
</script>
<style type="text/css">
table#gridview {
clear:both;
}
table#gridview td {
padding:3px 0px;
}
table#gridview tr.head {
background:#B18904;
font-family:Arial, Helvetica, sans-serif;
text-align:center;
}
table#gridview tr.head td {
padding:3px 0px;
}
.bb2 {
font-size: 14px;
}
text-indent:0.5in;
#gridviewsss {
color: #FFF;
}
body {
background-color: #D3D3D3;
}
body,td,th {
color: #909090;
}
thead > tr{background:#;}
th, td{font-family:font-family:Arial, Helvetica, sans-serif}
thead th{color:#fff;font-size:14px;}
tr{height:44px;}
tbody > tr:nth-child(even) {background: #f3f3f3}
tbody > tr:nth-child(odd) {background: #fff}
tr.tr2 {background:#FFB7B7 !important}
tr.tr3 {background:#ABEBC6 !important}
tbody > tr:hover, tr.tr2:hover, tr.tr3:hover{background:#fff5e6 !important}
tbody td{font-size:13px;color:#000}
tbody td > div{text-align:center}
.text-center{text-align:center}
.hide{display: none;visibility: hidden;}
</style>
<style type="text/css">
@charset "utf-8";
.red{
color: red;
}
p.ex {
color:green;
background: none;
}
mark.red {
color:green;
background: none;
}
mark.blue {
color:gray;
background: none;
}
p.ex { color:green; background: none}
div.Canceled > p.ex { color:#333333 !important;}
</style>
<body>
<?php
include('config.php');?>
<form action="highlight.php" method="post" name="adminForm" id="adminForm">
<table class="display" width="893" height="38" border="0" align="center" cellpadding="1" cellspacing="1" id="headtop">
<thead> <tr>
<td width="248" height="36">Date :
<input type="text" id= "datepicker" name="date_start" value="<?=$_POST['date_start'];?>"
size="10" style="width:150px;" onchange="document.adminForm.submit();" /></td>
<td width="638">Until: <span class="ff2">
<input type="text" id= "datepicker2" name="date_stop" value="<?=$_POST['date_stop'];?>"
size="10" style="width:150px;" onchange="document.adminForm.submit();" />
</span></td>
</tr>
</thead></table>
</form>
<br/>
<table class="display" width="1009" height="84" border="0" align="center" cellpadding="1" cellspacing="1" id="gridview">
<thead> <tr bgcolor="#000066">
<th width="129" height="39">Date</th>
<th width="102">Fleet</th>
<th width="124">Guest Name</th>
<th width="132">Destination</th>
<th width="75">Amount</th>
<th width="69">Status</th>
<th width="39">Level</th>
<th width="44">Level2</th>
<th width="55">Remark</th>
<th width="130">schedule</th>
<th width="56"> </th>
</tr>
</thead>
<?php
$sql_show = "SELECT * FROM customer";
if($_POST['date_start'])
{
$date_start = $_POST['date_start'];
$date_stop = $_POST['date_stop'];
$sql_show .=" where (reservation_date between '".$_POST['date_start']."' and '".$_POST['date_stop']."')
ORDER BY reservation_date, fleet ASC";
}
$result_show = mysql_query($sql_show) or die(mysql_error());
while($rs = mysql_fetch_array($result_show))
{
$id = $rs["id"];
$remark = $rs["remark"];
$edit_class = (trim($remark) == '') ? '' : ' hide';
$level = $rs['level'];
$level2 = $rs["level2"];
$tr_class = '';
if ($level == '2') {
$tr_class = ' class="tr2"';
}
else if ($level2 == '3') {
$tr_class = ' class="tr3"';
}
echo '<tr'.$tr_class.'>';
?>
<td height="42"><?php echo $rs["reservation_date"];?></td>
<td><?php echo $rs["fleet"];?></td>
<td><?php echo $rs["destination"];?></td>
<td><?php echo $rs["guest_name"];?></td>
<td><?php echo $rs["amount"];?></td>
<td><strong><div class="<?php echo $rs["status"];?>"><p class="ex"><?php echo $rs["status"];?></p></div></strong></td>
<td><?php echo $level;?></td>
<td><?php echo $level2;?></td>
<td><?php echo $remark;?></td>
<td>
<?php
if($rs["schedule1"] == "" or $rs["schedule2"] == ""){ // ถ้า schedule1 หรือ schedule2 ไม่มีค่า
echo $rs["schedule1"].$rs["schedule2"];
}else{
echo $rs["schedule1"]."<hr>".$rs["schedule2"];
}
?>
</td>
<td bgcolor="#999999">
<div class="text-center<?php echo $edit_class;?>">
<a href="edit.php?edit_id=<?php echo $id;?>">EDIT</a>
</div>
</td>
</tr>
<?php
}
?>
</table>
</body>
</html>
<script type="text/javascript">
$(function(){
$("#datepicker").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_start'];?>')
});
</script>
<script type="text/javascript">
$(function(){
$("#datepicker2").datepicker({ dateFormat: "yy-mm-dd" }).val('<?=$_POST['date_stop'];?>')
});
</script>
<link href="jQueryui/jQuery-ui.css" rel="stylesheet" type="text/css"/>
ขอบคุณครับ
Tag : PHP
|
ประวัติการแก้ไข 2016-07-04 18:34:53
|
|
|
|
|
Date :
2016-07-04 18:33:44 |
By :
panya@ots |
View :
1580 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
//เพิ่มเติม
$chk_date = false;
while($rs = mysql_fetch_array($result_show)) {
//เพิ่มเติม
$reservation_date = $rs["reservation_date"];
$date = ($chk_date <> $reservation_date ? $reservation_date : '';
//เช็คเงื่อนไขอื่นๆ เหมือนเดิม
echo '<td height="42">'.$date.'</td>';
// เดิมๆ
echo '</tr>';
$chk_date = $reservation_date;
}
|
|
|
|
|
Date :
2016-07-05 08:18:16 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
ลองเพิ่มตรงบรรทัดตามนี้ครับ
155 $tmp = "";
182 if ($tmp == $rs["reservation_date"])
{
$rs["reservation_date"] = "";
}
$tmp = $rs["reservation_date"];
|
|
|
|
|
Date :
2016-07-05 08:24:58 |
By :
mee079 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ แต่วันที่ ที่เหมือนกันซ่อนแค่แถวเดียวครับ ไม่ได้ทั้งหมด ตามรูปครับ
|
ประวัติการแก้ไข 2016-07-05 16:23:07
|
|
|
|
Date :
2016-07-05 16:21:29 |
By :
panya@ots |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุรมากครับ คุณ fossil
วันที่เหมือนกันซ่อนหมดตามต้องการแล้วครับ แต่มันออกมาเยื้องกัน ตามรูปครับ อาจเป็นผมเพิ่ม code วางไม่ถูกที่ ช่วยกรุณาช่วยตรวจดูหน่อยครับ ขอบคุณอีกครั้งครับ
code ที่วางเพิ่มครับ
ORDER BY reservation_date, fleet ASC";
}
$result_show = mysql_query($sql_show) or die(mysql_error());
$chk_date = false;
while($rs = mysql_fetch_array($result_show))
{
$reservation_date = $rs["reservation_date"];
$date = ($chk_date <> $reservation_date ? $reservation_date : '');
$id = $rs["id"];
$remark = $rs["remark"];
$edit_class = (trim($remark) == '') ? '' : ' hide';
$level = $rs['level'];
$level2 = $rs["level2"];
$tr_class = '';
if ($level == '2') {
$tr_class = ' class="tr2"';
}
else if ($level2 == '3') {
$tr_class = ' class="tr3"';
}
echo '<tr'.$tr_class.'>';
?>
<td><?php echo '<td height="42">'.$date.'</td>';?></td>
<td><?php echo $rs["fleet"];?></td>
<td><?php echo $rs["destination"];?></td>
<td><?php echo $rs["guest_name"];?></td>
<td><?php echo $rs["amount"];?></td>
<td><strong><div class="<?php echo $rs["status"];?>"><p class="ex"><?php echo $rs["status"];?></p></div></strong></td>
<td><?php echo $level;?></td>
<td><?php echo $level2;?></td>
<td><?php echo $remark;?></td>
<td>
<?php
if($rs["schedule1"] == "" or $rs["schedule2"] == ""){ // ถ้า schedule1 หรือ schedule2 ไม่มีค่า
echo $rs["schedule1"].$rs["schedule2"];
}else{
echo $rs["schedule1"]."<hr>".$rs["schedule2"];
}
?>
</td>
<td bgcolor="#999999">
<div class="text-center<?php echo $edit_class;?>">
<a href="edit.php?edit_id=<?php echo $id;?>">EDIT</a>
</div>
</td>
</tr>
<?php
echo '</tr>';
$chk_date = $reservation_date;
}
?>
</table>
|
|
|
|
|
Date :
2016-07-05 16:37:16 |
By :
panya@ots |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากครับ ผมจัด <td> <tr> ใหม่ครับ
|
|
|
|
|
Date :
2016-07-05 18:04:32 |
By :
panya@ots |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|