<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminRent.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminOperate.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/popupHeader.php" ?> <? $obj = new AdminOperate($_REQUEST, "") ; $list = $obj->getListOfRentHistory() ; $info = $obj->getInfoOfRoomName(); //$list = array(array()); $vnum = $obj->virtualNum ; $no = $_REQUEST["no"] ; ?> <script language="javascript"> var no = "<?=$no?>" ; $(document).ready(function(){ //=====프레입웤 변수들==================================================================================// var FORM_TARGET_CLS_NM = "#Contents" ; // 폼을 동적 wrap 할 타겟 ID이름 var FORM_NAME = "alf" ; // 폼이름 var FORM_METHOD = "post" ; // 폼 메쏘드 var FORM_USE_FILE = true ; // 파일폼 사용 여부 var FORM_ACTION = "/action_front.php" ; var NEXT_CMD = "" ; // 다은 수행 할 cmd //=====================================================================================================// var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ; $(".jSubmit").click2(function(){ }); $(".jClose").click2(function(){ window.close(); }); $(".jView").click2(function(){ var key = $(this).attr("no"); // location.href = "/admin/popup/billMonthSend.php?key=" + no + "&no=" + no +"&rurl=" + jQuery.rich.bin2hex(document.URL); //window.open("/admin/popup/billMonthSend.php?key=" + key + "&no=" + no, 'monthSendPopup' , "width=600,height=600,top=100,left=200,location=no,menubar=no,scrollbars=no,status=no,titlebar=no,toolbar=no"); location.href = "/admin/popup/billMonthSend.php?key=" + key + "&no="+ <?=$_GET["no"]?> +"&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jSend").click2(function(){ var monthSendPopup = window.open("/admin/popup/billMonthSend.php?no="+<?=$_GET["no"]?>, 'monthSendPopup' , "width=600,height=600,top=100,left=200,location=no,menubar=no,scrollbars=no,status=no,titlebar=no,toolbar=no"); }); $(".jPayStatus1").click2(function(){ //납입 var data = $(this).attr("no") $.ajax({ url : "/action_front.php?cmd=AdminOperate.setPayStatus", async : false, cache : false, dataType : "json", data : { "no" : data, "status": 1, "type" : "월세" }, success : function(data){ alert(data.returnMessage); location.reload(); }, error:function(request,status,error){ alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); } }); }); $(".jPayStatus0").click2(function(){ //연체 var data = $(this).attr("no") $.ajax({ url : "/action_front.php?cmd=AdminOperate.setPayStatus", async : false, cache : false, dataType : "json", data : { "no" : data, "status": 0, "type" : "월세" }, success : function(data){ alert(data.returnMessage); location.reload(); }, error:function(request,status,error){ alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error); } }); }); $(".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); } }); $(".jExcel").click2(function(){ location.href="/admin/popup/excelDownBillMonth.php?no="+<?=$_GET["no"]?> ; }); $("#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=AdminOperate.delBillMonth", async : false, cache : false, dataType : "json", data : { "no" : noArr }, success : function(data){ alert("삭제되었습니다"); location.reload(); } }); } </script> <div id="Contents" class="notice" style="width:1000px;"> <h1> 월세 <input type="hidden" name="no" value="<?=$_REQUEST[no]?>" /> <input type="button" class="button medium gray btngroupright jExcel" value="엑셀 다운로드" /> </h1> <div class="btngroupleft" style="margin-top:10px"><?=$info["name"]?> 호</div> <div class="btngroupright" style="width:auto;"> <input type="button" class="button medium gray jDelMulti" value="삭제" /> <input type="button" class="button medium gray jSend" value="발송" /> </div> <div class="data"> <table class="datacList"> <thead> <tr> <th class="no" width="5%">No</th> <th width="3%"><input type="checkbox" id="jCheckAll"></th> <th width="8%">년/월</th> <th width="8%">입주자</th> <th width="8%">월세임금일</th> <th width="8%">월세</th> <th width="8%">기본관리비</th> <th width="8%">케이블</th> <th width="8%">인터넷</th> <th width="12%">렌트1/렌트2/기타</th> <th width="8%">상태</th> <th width="12%">납입여부</th> <th width="8%">-</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]["b_year"]."/".$list[$i]["b_month"]?> </td> <td class="center"> <?=$list[$i]["contractor_name"]?> </td> <td class="center"> <?=$list[$i]["monthly_rent_date"]?> </td> <td class="center"> <?=$list[$i]["monthly_rent"]?> </td> <td class="center"> <?=$list[$i]["maintenance_fee"]?> </td> <td class="center"> <?=$list[$i]["cable"]?> </td> <td class="center"> <?=$list[$i]["internet"]?> </td> <td class="center"> <?=$list[$i]["rent_1"]."/".$list[$i]["rent_2"]."/".$list[$i]["etc"]?> </td> <td class="center"> <? if($list[$i]["is_paid"]==0) echo "연체"; else if($list[$i]["is_paid"]==1) echo "납입"; else echo "청구중"; ?> </td> <td class="center"> <input type="button" class="button searchsmall white jPayStatus1" value="납입" no="<?=$list[$i]["no"]?>" /> <input type="button" class="button searchsmall white jPayStatus0" value="연체" no="<?=$list[$i]["no"]?>" /> </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="12">No Data</td> </tr> <?}?> </tbody> </table> <!-- Pagination --> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?> <!--//Pagination --> <div class="btngroupright"> <span class="button bigrounded blue jClose">닫기</span> </div> </div> </div> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>