<?php  require('system/login.php');  ?>
<?php require_once('../Connections/BE2.php'); ?>
<?php
 
$currentPage =$_SERVER["PHP_SELF"]; // 'percents1.php' ;//

 
$maxRows_Rt2 = 25;
$pageNum_Rt2 = 0;
if (isset($_GET['pageNum_Rt2'])) {
  $pageNum_Rt2 = $_GET['pageNum_Rt2'];
}
$startRow_Rt2 = $pageNum_Rt2 * $maxRows_Rt2;

$colname_Rt2 = "-1";
if (isset($_GET['keyword'])) {
  $colname_Rt2 = $_GET['keyword'];
}

$download='N';
 
if(isset($_GET['file']) && ($_GET['file']=='Y')){  
 $download='Y';
}

mysql_select_db($database_BE2, $BE2);
 
$query_Rt1 = "SELECT distinct(rmoon) as mm FROM rep_mtmp where 1 order by rmoon desc" ;
$Rt1 = mysql_query($query_Rt1, $BE2) or die(mysql_error());
$row_Rt1 = mysql_fetch_assoc($Rt1);

$mm = $row_Rt1['mm'];
if (isset($_GET['mm'])) {
  $mm = $_GET['mm'];
}


mysql_select_db($database_BE2, $BE2);//完整內容	
/*
p_percent 推廣獎金
p_percent2 開發獎金
p_percent3 首次開店獎金
p_percent4 推廣雲點
p_percent5 開發雲點
p_percent6 開發商續推獎金
p_percent7 經銷獎金
p_percent8 分享獎金
p_percent9 推薦獎金
*/
$query_Rt2 = sprintf("SELECT a.*,b.company_name From rep_mtmp as a,company as b where a.coid=b.coid AND a.rmoon = '%s' ORDER BY coid",$mm);
$query_limit_Rt2 = sprintf("%s LIMIT %d, %d", $query_Rt2, $startRow_Rt2, $maxRows_Rt2);
if($download=='Y'){
  $Rt2 = mysql_query($query_Rt2, $BE2) or die(mysql_error());
} else{
  $Rt2 = mysql_query($query_limit_Rt2, $BE2) or die(mysql_error());
}
$row_Rt2 = mysql_fetch_assoc($Rt2);
// echo $query_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, "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);
if($download=='Y'){ 
   header('Content-type:application/vnd.ms-excel');  //宣告網頁格式
   header('Content-Disposition: attachment; filename='.$mm.'月報表-商家結算.xls');  //設定檔案名稱
}
 
?>
 

  <div class="row">
 <div class="col-md-12">
				
 <div class="panel panel-default">
        <div class="panel-heading">
							<h3 class="panel-title">月報表-商家結算</h3>

						</div>
                    
  <div style="overflow-x: scroll;">  
 <? if($download=='N'){ ?>     
  月份<select name="selmoon" id="selmoon" onchange="MM_jumpMenu('self',this,0)">
     <? 
	 
	  do{?>
         <option value="<?php printf("%s?act=moonreports&mm=%s", $currentPage, $row_Rt1['mm']); ?>" <? if($mm==$row_Rt1['mm']){ ?>selected="selected" <? }?>><?= $row_Rt1['mm'] ;?></option>
      <?php } while ($row_Rt1 = mysql_fetch_assoc($Rt1)); ?>
     </select>
     
    
<a href="<?= 'moonreports.php?mm='.$mm.'&file=Y'; ?>"><button type="button" class="btn blue" > EXCEL 明細下載</button></a>
  <? } ?>
<? 
/* 
  `rmoon` varchar(7) DEFAULT NULL COMMENT '月份',
  `coid` int(7) DEFAULT '0' COMMENT '商家名稱',
  `rsc1` int(7) DEFAULT '0' COMMENT '訂單數量',
  `rsc2` int(7) DEFAULT '0' COMMENT '商品淨銷售總額',
  `rsc3` int(7) DEFAULT '0' COMMENT '使用點數折抵金額',
  `rsc31` int(7) DEFAULT '0' COMMENT '物流金額',
  `rsc4` int(7) DEFAULT '0' COMMENT '實際結算金額',
  `rsc5` int(7) DEFAULT '0' COMMENT '平台抽成金額10',
  `rsc6` int(7) DEFAULT '0' COMMENT '交易手續費 2.8',
  `rsc7` int(7) DEFAULT '0' COMMENT '手續費5/筆',
  `rsc8` int(7) DEFAULT '0' COMMENT '營業稅5%',
  `rsc9` int(7) DEFAULT '0' COMMENT '淨結算金額',
  `rsc10` int(7) DEFAULT '0' COMMENT '銷售獎金',
  `rsc11` int(7) DEFAULT '0' COMMENT '經銷獎金',
  `rsc12` int(7) DEFAULT '0' COMMENT '加盟回饋金放',
  `rsc13` int(7) DEFAULT '0' COMMENT '點數發',
  `lastday` date DEFAULT NULL COMMENT '最後報表日'

 */ ?>
      

<table <?= ($download=='Y')?'border="1"':''; ?> cellspacing="1" class="table table-small-font table-bordered table-striped">
  <tr>
    <th width="76" height="22" nowrap>月份</th>
    <th width="76" nowrap>商家名稱</th>
    <th width="117" nowrap>總訂單數</th>
    <th width="132" nowrap>商品淨銷售總額</th>
    <th width="150" nowrap>使用點數折抵金額</th>
    <th width="164" nowrap>物流金額</th>
    <th width="76" nowrap>實際結算金額</th>
    <th width="95" nowrap>平台抽成金額10%</th>
    <th width="95" nowrap>交易手續費2.8%</th>
    <th width="76" nowrap>手續費5/筆</th>
    <th width="152" nowrap>營業稅5%</th>
    <th width="95" nowrap>淨結算金額</th>
    <th width="95" nowrap>銷售獎金</th>
    <th width="76" nowrap>經銷獎金</th>
    <th width="76" nowrap>加盟回饋金</th>
    </tr>

  <?php 
   if($totalRows_Rt2>0){
   $pay_ar=array("","信用卡線上刷卡","超商取貨付款","臨櫃匯款","ATM轉帳"); //dpay
   $pp1=array("",'推廣獎金','開發獎金','開發商首推獎金','商品未付餘額','開發商續推獎金','銷售獎金');
  $i=0;
    do { 
   $i++;
  ?>
    <tr onMouseOver="this.style.backgroundColor='#CCC';" onMouseOut=this.style.backgroundColor="#fff">
      <td height="47" align="center" nowrap="nowrap"><span style="color: #06F;">
        <?= $row_Rt2['rmoon']; ?>
      </span></td>
      <td height="47" align="center" nowrap="nowrap"><?= $row_Rt2['company_name'].'('.$row_Rt2['coid']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc1']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc2']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc3']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc31']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc4']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc5']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc6']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc7']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc8']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc9']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc10']; ?></td>
      <td align="center" nowrap="nowrap"><?= $row_Rt2['rsc11']; ?></td>
      <td align="center" nowrap="nowrap">&nbsp;</td>
      <? ?>
      </tr>

    <?php   } while ($row_Rt2 = mysql_fetch_assoc($Rt2));
      } //if $totalRows_Rt2
	
	 ?>
 <? if($download=='N'){?>
  <tr>
  <td  colspan="15"  >
 
      <table width="697" border="0" align="left" cellpadding="0" cellspacing="0">
                <tr>
                  <td width="34%">總筆數：<?php echo $totalRows_Rt2 ?>筆 </td>
                  <td width="66%"><div id="font_s">
                      <p>
                        <?php if ($pageNum_Rt2 > 0) { // Show if not first page ?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, max(0, $pageNum_Rt2 - 1), $queryString_Rt2); ?>"><img src="images/First.gif" alt="上一頁" title="上一頁" width="18" height="13" border="0" /></a>
                        <?php } // Show if not first page ?>
                        第
                        <select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('self',this,0)">
                          <? for($i=0;$i<=$totalPages_Rt2;$i++){?>
                          <option value="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, $i, $queryString_Rt2); ?>" <? if($pageNum_Rt2==$i){ ?>selected="selected" <? }?>><? echo $i+1 ;?></option>
                          <? }?>
                        </select>
                        頁
                        <?php
	    //分頁程式
if($totalPages_Rt2<9){
		 $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;
		   }  
		 }
		   
		for($i=$start;$i<=$end;$i++){
		if($i==$pageNum_Rt2){ echo "[".($i+1)."]";} else {?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $i), $queryString_Rt2); ?>"> <? echo $i+1 ;?></a>
                        <?	}   }  ?>
                        <?php if ($pageNum_Rt2 < $totalPages_Rt2) { // Show if not last page ?>
                        <a href="<?php printf("%s?pageNum_Rt2=%d%s", $currentPage, min($totalPages_Rt2, $pageNum_Rt2 + 1), $queryString_Rt2); ?>"><img src="images/Next.gif" alt="下一頁" title="下一頁" width="14" height="13" border="0" /></a>
                        <?php } // Show if not last page ?>
                    </p>
                  </div></td>
                </tr>
    </table>  
   
   </td>
  </tr>
  <? }?> 
</table>
    </div>
   </div>
  </div>
 </div>   
<?php
  mysql_free_result($Rt1);
  mysql_free_result($Rt2);
?>
