f9b68c5dc2e7e7aac5fe819489caa68cdc746615.svn-base 9.09 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminRent.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminOperate.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> 
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftRentManage.php" ?>
<?
	$obj = new AdminOperate($_REQUEST, "") ;
	$list = $obj->getListOfRoomForPayment();
	
	$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");
			location.href = "/admin/rentManage/billRoomList.php?no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL);
		});


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


		$(".jAddUserExcel").click2(function(){
			alert("준비중입니다.");
			return false;
			window.open('/admin/popup/addUserExcelUpload.php','',"width=700,height=800,scrollbars=yes");		
		});


		$(".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);
		});
		
	}) ;



	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_building" class="wm" value="<?=$_REQUEST['search_building']?>" />
                </label>
                
                <label>
                    <span># 호실</span>
					<input type="text" id="search_text" name="search_room" class="wm" value="<?=$_REQUEST['search_room']?>" />
                </label>
                
               
                
                <br>
                
                <style>
                	.dateRangeWrap { background-color:white; display:inline-block; border: 1px solid #ddd; padding:2px; margin:3px 0 3px; }
                	.dateRangeWrap > .dateRange, .dateRangeWrap > .dateRangeSeparator { display:inline-block; }
                </style>
              
                <label>
                    <span># 월세납입일</span>

						<input type="text" value="<?=$_REQUEST['rent_date_former']?>" name="rent_date_former"  class="jRsvDate"  />
						~
						<input type="text" value="<?=$_REQUEST['rent_date_latter']?>" name="rent_date_latter"  class="jRsvDate"  />

                </label>
                
                <label>
                    <span># 공과금납입일</span>

				<input type="text" value="<?=$_REQUEST['bill_date_former']?>" name="bill_date_former"  class="jRsvDate"  />
					~
						<input type="text" value="<?=$_REQUEST['bill_date_latter']?>" name="bill_date_latter"  class="jRsvDate"  />
		
                </label>
                
                <label>
                    <span># 퇴실예정일</span>

					<input type="text" name="leaving_due_date_former" value="<?=$_REQUEST['leaving_due_date_former']?>" class="jRsvDate"  />
						~
						<input type="text" name="leaving_due_date_latter" value="<?=$_REQUEST['leaving_due_date_latter']?>" class="jRsvDate"  />

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

        </fieldset>
        <table class="datacList">
            <thead>
                <tr>
                    <th class="no" width="5%">No</th>
                    <th width="5%"><input type="checkbox" id="jCheckAll"></th>
                    <th width="15%">건물명</th>
                    <th width="10%">호실</th>
                    <th width="10%">지난달 월세</th>
                    <th width="10%">월 납입일</th>
                    <th width="10%">지난달 공과금</th>
                    <th width="10%">공과금 납입일</th>
                    <th width="15%">퇴실예정일</th>
                    <th width="15%">-</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="jNo" value="<?=$list[$i]["no"] ?>" >
                    </td>
                    <!--//건물이름-->
					<td class="center">		
						<?=$list[$i]["Bname"]?>
                    </td>
                    
                    <!--//호실 -->
                    <td class="center">
                    	<?=$list[$i]["Rname"]?>
                    </td>
                    <!--//지난달 월세 -->

                    <td class="center">
                    	<?
                    	if($list[$i]["rent_paid"]==NULL) echo "";
                    	else if($list[$i]["rent_paid"]==0) echo "연체";
                    	else if($list[$i]["rent_paid"]==1) echo "납입";
                    	else echo "청구중";
                    
                    	?>
                    </td>
                    <!--//월 납입일 -->
                    
                    <td class="center">
                    	<?=$list[$i]["monthly_rent_date"]?>
                    </td>
                    
                    <!--//지난달 공과금 -->
                    <td class="center">
                    	
                    </td>
                    <!--//공과금 납입일 -->
                    
                    <td class="center">
                    	<?=$list[$i]["billing_date"]?>
                    </td>
                    
                    <!--//퇴실예정일 -->
                    <td class="center">
                    	<?=$list[$i]["leaving_due_date"]?>
                    </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" ?>