<? 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->getListOfEndHistory() ; $info = $obj->getInfoOfRoomName(); $vnum = $obj->virtualNum ; ?> <script language="javascript"> $(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 no = $(this).attr("no"); location.href = "/admin/popup/billEndSend.php?key=" + no + "&no=" + <?=$_GET["no"]?> + "&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jAdd").click2(function(){ location.href = "/admin/popup/roomView.php?rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jSend").click2(function(){ var endSendPopup = window.open("/admin/popup/billEndSend.php?no="+<?=$_GET["no"]?>, '_blank' , "width=800,height=650,top=100,left=200,location=no,menubar=no,resizable=yes,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); } }); }); $(".jExcel").click2(function(){ location.href="/admin/popup/excelDownBillEnd.php?no="+<?=$_GET["no"]?> ; }); $(".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=AdminOperate.delBillEnd", 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="width:auto;"><?=$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="20%">입주기간</th> <th width="10%">퇴실자</th> <th width="12%">보증금</th> <th width="10%">예치금</th> <th width="10%">차감액</th> <th width="10%">잔액</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]["entering_due_date"]."~".$list[$i]["leaving_due_date"]?> </td> <td class="center"> <?=$list[$i]["contractor_name"]?> </td> <td class="center"> <?=$list[$i]["deposit"]?> </td> <td class="center"> <?=$list[$i]["Rbalance"]?> </td> <td class="center"> <?=$list[$i]["subtraction_total"]?> </td> <td class="center"> <?=$list[$i]["Ebalance"]?> </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" ?>