<? 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->getListOfBillHistory() ; $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 }) ; $(".jClose").click2(function(){ window.close(); }); $(".jView").click2(function(){ var no = $(this).attr("no"); location.href = "/admin/popup/billUtilSend.php?key=" + no + "&no="+ <?=$_GET["no"]?> +"&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jSend").click2(function(){ var utilSendPopup = window.open("/admin/popup/billUtilSend.php?no="+<?=$_GET["no"]?>, '_blank' , "width=600,height=700,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/excelDownBillUtil.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.delBillUtil", 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="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"> <input type="hidden" name="no" value="<?=$_REQUEST[no]?>" /> <table class="datacList"> <thead> <tr> <th class="no" width="3%">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="8%">공용수도료</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]["month"]?> <?=$list[$i]["b_year"]."/".$list[$i]["b_month"]?> </td> <td class="center"> <?=$list[$i]["contractor_name"]?> </td> <td class="center"> <?=$list[$i]["billing_date"]?> </td> <td class="center"> <?=$list[$i]["gas_charge"]?> </td> <td class="center"> <?=$list[$i]["electricity_charge"]?> </td> <td class="center"> <?=$list[$i]["water_charge"]?> </td> <td class="center"> <?=$list[$i]["community_electricity_charge"]?> </td> <td class="center"> <?=$list[$i]["community_water_charge"]?> </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> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>