companyList.php 6.08 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminUser.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> 
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftCompanyManage.php" ?>
<?
	$obj = new AdminUser($_REQUEST) ;
	
	//$list = $obj->getListOfUser() ;
	$productCode=$_REQUEST["productCode"];
	$productType=$_REQUEST["productCode"];
	$vnum = $obj->virtualNum ;
?>
<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() ;
		});

		$(".jView").click2(function(){
			var no = $(this).attr("no");
			var type='<?=$productType?>';
			location.href = "/admin/companyManage/companyView.php?no=" + no + "&productType=" + type +"&rurl=" + jQuery.rich.bin2hex(document.URL);
		});


		$(".jAddUserExcel").click2(function(){
			var s=$("#search_text").val();
			location.href = "/admin/excel/userListExcel.php?search_text="+s;
		});




		// 회원 탈퇴
		$(".jDelUser").click2(function(){
		
			var no = $(this).attr("no");

			var noArr = new Array(no);

			if(confirm("정말 삭제하시겠습니까?"))
			{
				deleteUser(noArr);
			}
		}) ;


		// 단체 삭제
		$(".jDelUserMulti").click2(function(){
			

			var noArr = new Array();
			var noCount = $(".jUserNo:checked").length;

			if(noCount == 0)
			{
				alert("삭제할 관리자를 하나 이상 선택해주세요.");
				return false;
			}


			if(confirm("정말 삭제하시겠습니까?"))
			{
				for(var i = 0; i < noCount; i++ )
				{
					noArr[i] = $(".jUserNo:checked:eq(" + i + ")").val();
				}

				deleteUser(noArr);
			}
			
		});

		$(".jBtnMS").click2(function(){
			var no = $(this).attr("no");
			var member_type = $(this).attr("member_type");

			$.ajax({
				url : "/action_front.php?cmd=AdminUser.processRequestMemberShipUser",
				async : false,
				cache : false,
				dataType : "json",
				data : {
					"no"	: no
					, "member_type"	: member_type
				},
				success : function(data){
					alert(data.returnMessage);
					location.reload();
				}
			});
		});


		$("#jCheckAll").change(function(){
			if($(this).is(":checked"))
				$(".jUserNo").prop("checked", true);
			else
				$(".jUserNo").prop("checked", false);
		});
		
	}) ;



	function deleteUser(noArr)
	{
		$.ajax({
			url : "/action_front.php?cmd=AdminUser.deleteUser",
			async : false,
			cache : false,
			dataType : "json",
			data : {
				"no"	: noArr
			},
			success : function(data){
				alert("삭제되었습니다");
				location.reload();
			}
		});
	}



</script>


<div id="Contents"  class="notice">
    
    <h1>
		<?
			switch($productCode){
				case "WB":
					echo "윙바디";
					break;
				case "AX":
					echo "가변축";
					break;
			}
		?>
	</h1>
    <h2>
		업체 관리 > 
		<?
			switch($productCode){
				case "WB":
					$productCode="윙바디";
					break;
				case "AX":
					$productCode="가변축";
					break;
			}
		?>
		<span><?echo $productCode;?></span>
	</h2>
    <div class="data" >

		<div class="btngroupright">
			<input type="button" class="button smallrounded blue jView" no="" value="등록" />
			<input type="button" class="button smallrounded blue jDelMulti" value="삭제" />
		</div>

        <table class="datacList">
            <thead>
                <tr>
                    <th class="no" width="5%">No</th>
                    <th width="2%"><input type="checkbox" id="jCheckAll"></th>
                    <th width="20%">업체명</th>
                    <th width="10%">지역</th>
                    <th width="20%">상세 주소</th>
                    <th width="10%">전화번호</th>
                    <th width="10%">-</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">
                        <?=$vnum--?>
                    </td>
					<td class="center">
                        <input type="checkbox" class="jUserNo" value="<?=$list[$i]["no"] ?>" >
                    </td>
					<td class="center">
                       
                    </td>
                    <td class="center">
                        <input type="button" class="button searchsmall white jView" value="상세보기" no="<?=$list[$i]["no"]?>" />
                    </td>
                  
                </tr>
                <? } ?>
                <?if(sizeof($list) == 0){?>
                <tr class="last">
                    <td class="no center" colspan="11">No Data</td>
                </tr>
                <?}?>
            </tbody>
        </table>  
        
        <!-- Pagination -->
        <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?>
        <!--//Pagination -->
        
    </div>

	<div id="jDialogArea" style="display:none;">
		<table class="datav" style="width:100%;">
			<tr>
				<th style="height:25px; width:70px;">포인트</th>
				<td>
					<input type="input" id="jAddHeartPoint" value="" style="width:100%;"/>
				</td>
			</tr>
		</table>
	</div>
        
</div>

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