shopPointStatsView.php 4.47 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminStats.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> 
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftStatsManage.php" ?>
<?
	$obj = new AdminStats($_REQUEST, "") ;
	$list = $obj->getShopPointStatsData();
	
	$year = ($_REQUEST["year"] == "") ? date('Y', time()) : $_REQUEST["year"]; 
	
?>
<script>

	$(document).ready(function(){

		//=====프레입웤 변수들==================================================================================//
		var FORM_TARGET_CLS_NM		= "DIV#Contents"	;		// 폼을 동적 wrap 할 타겟 ID이름
		var FORM_NAME				= "nf"		;		// 폼이름
		var FORM_METHOD				= "GET"		;		// 폼 메쏘드
		var FORM_USE_FILE			= false		;		// 파일폼 사용 여부
		var FORM_ACTION				= document.URL ; 

		var NEXT_CMD				= ""			;		// 다은 수행 할 cmd
		//=====================================================================================================//

		var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;
		
		// 페이징
		$(".jPage").click2(function(){
			jForm.ci() ;
			jForm.mi("page",$(this).attr("page")) ;			
			jForm.submit() ;
		}) ;
		

		$(".jAutoSearch").change(function(){
			jForm.ci() ;
			jForm.submit() ;
		});
		
		
		$(".jSearch").click2(function(){
			jForm.ci() ;
			jForm.submit() ;
		});


		$(".jViewGroup").click2(function(){
			var no = $(this).attr("no");
			location.href = "/admin/statsManage/shopPointStatsForGroupView.php?year=<?=$year ?>&no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL);
		});

		$(".jViewUser").click2(function(){
			var no = $(this).attr("no");
			location.href = "/admin/statsManage/shopPointStatsForUserView.php?year=<?=$year ?>&no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL);
		});

	}) ;




</script>


<div id="Contents"  class="notice">
    
    <h1>상점 별 마이포인트 통계</h1>
    
    <div class="data" style="padding-top:30px;" >
    
        <fieldset class="search">
            
            <div class="jSearchArea" >
            	<label>
                    <span># 연도</span>
					<select name="year">
						<?for($i=2015; $i<=(date('Y', time())); $i++){ ?>
						<option value="<?=$i ?>" <?= ($i == $year) ? "SELECTED" : "" ?> ><?=$i ?></option>
						<?} ?>
					</select>
                </label>

				<input type="button" class="button bigrounded blue jSearch" style="margin-left:30px;" value="검색" />
				
            </div>

        </fieldset>
        
        <div style="width:100%; overflow:scroll; height:600px;">
        <table class="datacList" style="table-layout: fixed">
            <thead>
                <tr>
                    <th class="no" style="width:100px;">그룹명</th>
                    <th style="width:100px;">담당자명</th>
                    <?for($i=1; $i<=12; $i++){ ?>
                    <th style="width:72px;"><?=$year . "년 " . $i . "월" ?></th>
                    <?} ?>
                    <th style="width:200px;">-</th>
                </tr>
            </thead>
            <tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 -->
                <? for($i=0; $i<sizeof($list); $i++){ ?>
                <tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>">
                    <td class="no center">
                    	<?=$list[$i]["shop_name"]?>
                    </td>
                    <td class="center">
                    	<?=$list[$i]["manager_name"]?>
                    </td>
                    <?for($j=1; $j<=12; $j++){ ?>
                    <td class="center">
                        <?=number_format($list[$i]["list"][$j]) ?>
                    </td>
                    <?} ?>
                    <td class="center">
                        <input type="button" class="button searchsmall white jViewGroup" value="그룹별" no="<?=$list[$i]["shop_fk"]?>" />
                        <input type="button" class="button searchsmall white jViewUser" value="개인별" no="<?=$list[$i]["shop_fk"]?>" />
                    </td>
                </tr>
                <? } ?>
                <?if(sizeof($list) == 0){?>
                <tr class="last">
                    <td class="no center" colspan="3">No Data</td>
                </tr>
                <?}?>
            </tbody>
        </table>  
        </div>
        
        
    </div>

        
</div>

<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>