<?php require_once('../Connections/BE2.php'); ?>
<?php
include "../config.data.php" ;
 
$currentPage = "orderlist.html";//$_SERVER["PHP_SELF"];  
$maxRows_Rt2 = 10;
$pageNum_Rt2 = 0;
if (isset($_GET['pageNum_Rt2'])) {
  $pageNum_Rt2 = $_GET['pageNum_Rt2'];
}
$startRow_Rt2 = $pageNum_Rt2 * $maxRows_Rt2;


mysql_select_db($database_BE2, $BE2);

$query_Rt2 = sprintf("SELECT a.*,b.scode,b.mem_name,b.mem_mobile,c.*,d.billcode from order_datam as a,member as b,order_express as c,order_bill as d where a.duser=b.mem_auto AND a.dcode=c.dcode AND a.dcode=d.dcode AND a.duser='%s' ORDER BY did DESC",$_SESSION['login_memid']);

// echo  $query_Rt2;

$query_limit_Rt2 = sprintf("%s LIMIT %d, %d", $query_Rt2, $startRow_Rt2, $maxRows_Rt2);
$Rt2 = mysql_query($query_limit_Rt2, $BE2) or die(mysql_error());
$row_Rt2 = mysql_fetch_assoc($Rt2);

if (isset($_GET['totalRows_Rt2'])) {
  $totalRows_Rt2 = $_GET['totalRows_Rt2'];
} else {
  $all_Rt2 = mysql_query($query_Rt2);
  $totalRows_Rt2 = mysql_num_rows($all_Rt2);
}
$totalPages_Rt2 = ceil($totalRows_Rt2/$maxRows_Rt2)-1;

$queryString_Rt2 = "";
if (!empty($_SERVER['QUERY_STRING'])) {
  $params = explode("&", $_SERVER['QUERY_STRING']);
  $newParams = array();
  foreach ($params as $param) {
    if (stristr($param, "pageNum_Rt2") == false && 
	    stristr($param, "menu") == false && 
        stristr($param, "totalRows_Rt2") == false) {
      array_push($newParams, $param);
    }
  }
  if (count($newParams) != 0) {
    $queryString_Rt2 = "&" . htmlentities(implode("&", $newParams));
  }
}
$queryString_Rt2 = sprintf("&totalRows_Rt2=%d%s", $totalRows_Rt2, $queryString_Rt2);
 
?>	
		<!-- start: Content -->
		<div class="main ">
		
			<div class="row">
				<div class="col-lg-12">
					<h3 class="page-header"><i class="fa fa-indent"></i>訂購清單</h3>
					<ol class="breadcrumb">
						<li><i class="fa fa-home"></i><a href="index.html">首頁</a></li>
						<li><i class="fa fa-list-alt"></i><a href="#">訂單管理</a></li>
						<li><i class="fa fa-indent"></i>訂購清單</li>				
					</ol>
				</div>
			</div>



			<div class="row">	
				<div class="col-md-12">
					<div class="panel panel-default">
						<div class="panel-heading">
							<h2><i class="fa fa-list red"></i><span class="break"></span><strong>列出所有訂購清單清單</strong></h2>
						</div>


						<div class="panel-body">

					<h3 class="panel-title">&nbsp;</h3>
					            <div class="clearfix"></div>  
                    
                     <div style="overflow:scroll;">
				 <table class="table table-striped table-bordered bootstrap-datatable datatable" style="min-width:800px;">
 
						<thead>
							<tr class="replace-inputs">
								<th width="17" class="center">#</th>
								<th width="76">訂單編號</th>
								<th width="76">訂購日期</th>
								<th width="76" nowrap="nowrap">商品金額</th>
								<th width="38" nowrap="nowrap">運費</th>
								<th width="76" nowrap="nowrap">付款狀態</th>
								<th width="76" nowrap="nowrap">付款日期</th>
								<th width="76">物流狀態</th>
								<th width="76">物流公司</th>
								<th width="38" nowrap="nowrap">物流</th>
								<th width="76">出貨日期</th>
                                <th width="76">發票</th>
							</tr>
						</thead>
						<tbody>
                           <?php  
							if($totalRows_Rt2>0){
							$i=0;	
						 do { $i++;?>
							<tr>
								<td class="center"><?= $i ?></td>
								<td><a href="showdcode.html?decode=<?= $row_Rt2['dcode'];?>" target="_self"><?= $row_Rt2['dcode'];?></a></td>
								<td><?= $row_Rt2['ddate'] ?></td>
								<td><?= $row_Rt2['dmoney'] ?></td>
								<td><?= $row_Rt2['dexpess'] ?></td>
								<td><?=($row_Rt2['dflag']=='Y')?"已付款":"未付款"; ?></td>
								<td><?= $row_Rt2['dpaydate'] ?></td>
								<td><?= $pcar_ar[$row_Rt2['pcar']]; ?></td>
								<td><?= $row_Rt2['ocar'] ?></td>
								<td><?= $dcar_ar[$row_Rt2['dcar']]; ?></td>
								<td><?= $row_Rt2['odate'] ?></td>
                                <td><?
								  if(strlen($row_Rt2['billcode'])==10){ 
								     echo '<a href="https://www.giveme.com.tw/invoice.do?action=invoicePrint&uncode=42656789&code='.$row_Rt2['billcode'].'" target="_blank">'.$row_Rt2['billcode'].'</a>';
									  } ?></td>
							</tr>
						
                        <?php } while ($row_Rt2 = mysql_fetch_assoc($Rt2));
							}
						 	?></tbody>
 
					</table>
							      
                   <ul class="pagination">
                    <?  /* 
                     if( $totalPages_Rt2 >0){	 
						    //分頁程式
if($totalPages_Rt2<5){
		 $start=0;
		 $end=$totalPages_Rt2;
		}else{  
	    $start=$pageNum_Rt2-5;
		$end=$pageNum_Rt2+5;
        if ($start<0){
		 $start=0;
		 $end=10; } 
		 else { $end=$start+10 ;}
		 if ($end>$totalPages_Rt2){ 
		   $start = $end-$totalPages_Rt2-5;
		   $end=$totalPages_Rt2;
		   }
		 if ($end-$start>10){ 
		   $start = $end-10;
		   }  
		 } ?> 
                     <?php if ($pageNum_Rt2 > 0) { // Show if not first page ?>
                     <li><a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, max(0, $pageNum_Rt2 - 1), $queryString_Rt2); ?>">上一頁</a></li><?php } // Show if not first page ?>
                    	<?	   
		for($i=$start;$i<=$end;$i++){
		if($i==$pageNum_Rt2){ echo '<li class="active"><a href="#">'.($i+1).'</a></li>';} else {?>
            <li><a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $i), $queryString_Rt2); ?>"><? echo $i+1 ;?></a></li>
                 
                        <?	}   }  ?>

                      <?php if ($pageNum_Rt2 < $totalPages_Rt2) { // Show if not last page ?>
            <li><a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $pageNum_Rt2 + 1), $queryString_Rt2); ?>">下一頁</a></li>
                        <?php }  
						             }  
									 
								*/	 ?>
								
						  </ul>

                   </div>



					  </div>
					</div>
				</div><!--/col-->
			
			</div><!--/row-->

    
		</div>
		 
		<!-- end: Content -->
 