chargeList.php 7.99 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminRent.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> 
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftRentManage.php" ?>
<?
	$obj = new AdminRent($_REQUEST, "") ;
	
	$list = $obj->getListOfRequestCharge() ;
	//$list = array();

	$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 }) ;
		var dates = $('.jRsvDate').datepicker({
			showMonthAfterYear:true,
			inline: true,
			changeMonth: true,
			changeYear: true,   
			dateFormat : 'yy-mm-dd',
			dayNamesMin:['일', '월', '화', '수', '목', '금', ' 토'],
			monthNames:['1월','2월','3월','4월','5월','6월','7 월','8월','9월','10월','11월','12월'],
			monthNamesShort:['1월','2월','3월','4월','5월','6월','7월','8월','9월','10월','11월','12월'],
			showButtonPanel: true, currentText: '오늘 ' , closeText: '닫기',   
			onSelect: function(selectedDate) {
		}
	});
		
		// 페이징
		$(".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 chargeSendPopup = window.open("/admin/popup/chargeSend.php?no="+no, '_blank' , "width=600,height=530,top=100,left=200,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no");
		});


		$(".jAdd").click2(function(){
			location.href = "/admin/rentManage/buildingView.php?rurl=" + jQuery.rich.bin2hex(document.URL);
		});


		$(".jExcel").click2(function(){
			var s=$("#search_text").val();
			var r=$("#request_date").val();
			var h=$("#handled_date").val();
			location.href="/admin/rentManage/excelDownChargeList.php?search_text=" + s + "&request_date=" + r + "&handled_date=" + h ;					
		});

		$(".jDel").click2(function(){
		
			var no = $(this).attr("no");
			var noArr = new Array(no);

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


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

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

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


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

				deleteAction(noArr);
			}
			
		});


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

		$(".jSend").click2(function(){
			var chargeSendPopup = window.open("/admin/popup/chargeSend.php", '_blank' , "width=600,height=530,top=100,left=200,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no");
		});
		
	}) ;



	function deleteAction(noArr)
	{
		$.ajax({
			url : "/action_front.php?cmd=AdminRent.delBuilding",
			async : false,
			cache : false,
			dataType : "json",
			data : {
				"no"	: noArr
			},
			success : function(data){
				location.reload();
			}
		});
	}



</script>


<div id="Contents"  class="notice">
    
    <h1>비용청구관리</h1>
    
    <div class="data">
    
        <fieldset class="search" style="margin-top:30px;">
            
            <div class="jSearchArea" >
                <label>
                    <span># 건물명, 호수, 처리내용</span>
					<input type="text" id="search_text" name="search_text" class="wm" value="<?=$_REQUEST["search_text"]?>" />
                </label>
                
                <label>
                    <span># 신청일</span>
					<?php 
					$formattedDate = date('Y-m-d', strtotime($_REQUEST["request_date"]));
					if($formattedDate == "1970-01-01") $formattedDate = "";
					?>
					<input type="text" name="request_date" id="request_date" value="<?=$formattedDate?>" class="jRsvDate"  />
                </label>
                
                <label>
                    <span># 처리일</span>
					<?php 
					$formattedDate = date('Y-m-d', strtotime($_REQUEST["handled_date"]));
					if($formattedDate == "1970-01-01") $formattedDate = "";
					?>
					<input type="text" name="handled_date" id="handled_date" value="<?=$formattedDate?>" class="jRsvDate"  />
                </label>
                
                <input type="button" class="button bigrounded blue jSearch" style="margin-left:30px;" value="검색" />
            </div>

        </fieldset>

		<div class="btngroupright">
			<input type="button" class="button mideum gray jExcel" value="엑셀 다운로드" />
			<input type="button" class="button mideum gray jSend" value="발송" />
		</div>
        <table class="datacList">
            <thead>
                <tr>
                    <th class="no" width="5%">No</th>
                    <th width="15%">건물명</th>
                    <th width="10%">호실</th>
                    <th width="24%">처리내용</th>
                    <th width="12%">신청일</th>
                    <th width="12%">처리일</th>
                    <th width="12%">금액</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">
                    <?=$list[$i]["building_name"]?>
                    </td>
                    <td class="center">
                    <?=$list[$i]["room_name"]?>
                    </td>
                    <td class="center" style="word-break:break-all">
                    <?=$list[$i]["info"] ?>
                    </td>
                    <td class="center">
                    <?php 
					$formattedDate = date('Y-m-d', strtotime($list[$i]["request_date"]));
					if($formattedDate == "1970-01-01") $formattedDate = "";
					?>
					<?=$formattedDate?>
                    </td>
                    <td class="center">
                   <?php 
					$formattedDate = date('Y-m-d', strtotime($list[$i]["handled_date"]));
					if($formattedDate == "1970-01-01") $formattedDate = "";
					?>
					<?=$formattedDate?>
                    </td>
                    <td class="center">
                    <?=$list[$i]["charge"]?>
                    </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>

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