9b0ff3bbba4b8713661929d42700a476892814f5.svn-base
12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<? 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, "");
$info = $obj->getInfoOfBill();
$lm_info = $obj->getInfoOfLMBill();
$rurl = pack("H*", $_REQUEST["rurl"]) ;
?>
<script type="text/javascript">
var _rurl = "<?=$rurl?>";
var _no = "<?=$_REQUEST[no]?>";
function getTotal(){
var totalValue = 0;
totalValue += $("input[name='electricity_charge']").val() == ""? 0: parseInt($("input[name='electricity_charge']").val());
totalValue += $("input[name='gas_charge']").val() == ""? 0: parseInt($("input[name='gas_charge']").val());
totalValue += $("input[name='water_charge']").val() == ""? 0: parseInt($("input[name='water_charge']").val());
totalValue += $("input[name='community_water_charge']").val() == ""? 0: parseInt($("input[name='community_water_charge']").val());
totalValue += $("input[name='community_electricity_charge']").val() == ""? 0: parseInt($("input[name='community_electricity_charge']").val());
$("#total").attr("value", totalValue);
$("#total2").attr("value", totalValue);
}
function getUsage(){
var totalEValue=$("input[name='electricity_usage']").val() == ""? 0: parseInt($("input[name='electricity_usage']").val());
var totalGValue=$("input[name='gas_usage']").val() == ""? 0: parseInt($("input[name='gas_usage']").val());
var totalWValue=$("input[name='water_usage']").val() == ""? 0: parseInt($("input[name='water_usage']").val());
totalEValue -= $("input[name='electricity_usage_lm']").val() == ""? 0: parseInt($("input[name='electricity_usage_lm']").val());
if($("input[name='electricity_usage_lm']").val() == ""){
totalEValue=$("input[name='electricity_usage']").val() == ""? 0: parseInt($("input[name='electricity_usage']").val());
}
totalGValue -= $("input[name='gas_usage_lm']").val() == ""? 0: parseInt($("input[name='gas_usage_lm']").val());
if($("input[name='gas_usage_lm']").val() == ""){
totalGValue=$("input[name='gas_usage']").val() == ""? 0: parseInt($("input[name='gas_usage']").val());
}
totalWValue -= $("input[name='water_usage_lm']").val() == ""? 0: parseInt($("input[name='water_usage_lm']").val());
if($("input[name='water_usage_lm']").val() == ""){
totalWValue=$("input[name='water_usage']").val() == ""? 0: parseInt($("input[name='water_usage']").val());
}
$("#elec_total_usage").attr("value", totalEValue);
$("#gas_total_usage").attr("value", totalGValue);
$("#water_total_usage").attr("value", totalWValue);
}
function getSummationA(){
var sumA;
sumA=$("input[id='sum_before_payment']").val() == ""? 0: parseInt($("input[id='sum_before_payment']").val());
sumA+=$("input[id='current_month_late_fee']").val() == ""? 0: parseInt($("input[id='current_month_late_fee']").val());
$("#sum_after_payment").attr("value", sumA); //납기후
}
function getSummationB(){
var sumB=$("input[id='unpaid']").val() == ""? 0: parseInt($("input[id='unpaid']").val());
sumB+=$("input[id='total']").val() == ""? 0: parseInt($("input[id='total']").val());
$("#sum_before_payment").attr("value", sumB); //납기내
}
$(document).ready(function(){
getTotal();
getUsage();
getSummationB();
getSummationA();
//=====프레입웤 변수들==================================================================================//
var FORM_TARGET_CLS_NM = ".data" ; // 폼을 동적 wrap 할 타겟 ID이름
var FORM_NAME = "alf" ; // 폼이름
var FORM_METHOD = "POST" ; // 폼 메쏘드
var FORM_USE_FILE = false ; // 파일폼 사용 여부
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 }) ;
$(".jCancel").click2(function(){
location.href = _rurl;
});
$(".jClose").click2(function(){
window.close();
});
$(".jSend").click2(function(){
var data = $("#jData").serialize();
$.ajax({
url : "/action_front.php?cmd=AdminOperate.saveBill",
async : false,
cache : false,
dataType : "json",
data : data,
success : function(data){
var room_fk=<?=$_REQUEST["no"]?>;
if(confirm("전송하시겠습니까?"))
{
$.ajax({
url : "/action_front.php?cmd=AdminPush.sendPushForBillSend",
async : true,
cache : false,
dataType : "json",
data : {
"room_fk" : room_fk
},
success : function(data){
alert(data.returnMessage);
window.opener.location.reload();
window.close();
},
error:function(request,status,error){
alert("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
location.reload();
}
});
}
},
error : function(data){
alert(data.returnMessage);
}
});
});
$(".ws").change(function(e){
e.preventDefault();
getTotal();
getUsage();
getSummationB();
getSummationA();
});
$(".wb").change(function(e){
getSummationA();
});
}) ;
</script>
<div id="Contents" style="width:500px;">
<div>
<span class="btnleft_y">납부기한 : 2016년 <?=date("m")?>월 <?=date("d", $info["billing_date"])?>일까지</span>
<span class="btnright_y"><?=$info["Bname"]?> <?=$info["name"]?> 호</span>
</div>
<div class="data" style="width:100%;">
<form id="jData">
<input type="hidden" name="no" value="<?=$_REQUEST[no]?>" />
<input type="hidden" name="key" value="<?=$_REQUEST[key]?>" />
<input type="hidden" name="month" value=" <?=date("m")."-".date("d", $info["billing_date"])?>" />
<input type="hidden" name="billing_date" value=" <?=$info["billing_date"]?>" />
<table class="datav" style="width:100%;">
<colgroup>
<col width="20%" />
<col width="30%" />
<col width="20%" />
<col width="30%" />
</colgroup>
<tr>
<!-- 전기검침일 -->
<th style="height:25px;">전기검침일</th>
<td class="center">
<select name="electricity_check_date" class="ws">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["electricity_check_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
<!-- 전기료 -->
<th style="height:25px;">전기료</th>
<td class="center">
<input type="text" name="electricity_charge" class="ws" value="<?=$info["electricity_charge"]?>">
</td>
</tr>
<tr>
<!-- 가스검침일 -->
<th style="height:25px;">가스검침일</th>
<td class="center">
<select name="gas_check_date" class="ws">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["gas_check_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
<!-- 가스료 -->
<th style="height:25px;">가스료</th>
<td class="center">
<input type="text" name="gas_charge" class="ws" value="<?=$info["gas_charge"]?>">
</td>
</tr>
<tr>
<!-- 수도검침일 -->
<th style="height:25px;">수도검침일</th>
<td class="center">
<select name="water_check_date" class="ws">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["water_check_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
<!-- 수도료 -->
<th style="height:25px;">수도료</th>
<td class="center">
<input type="text" name="water_charge" class="ws" value="<?=$info["water_charge"]?>">
</td>
</tr>
<tr>
<!-- 공용전기검침 -->
<th style="height:25px;">공용전기검침</th>
<td class="center">
<select class="ws" name="community_electricity_check_date">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["community_electricity_check_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
<!-- 공용전기료 -->
<th style="height:25px;">공용전기료</th>
<td class="center">
<input type="text" name="community_electricity_charge" class="ws" value="<?=$info["community_electricity_charge"]?>">
</td>
</tr>
<tr>
<!-- 공용수도검침 -->
<th style="height:25px;">공용수도검침</th>
<td class="center">
<select name="community_water_check_date" class="ws">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["community_water_check_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
<!-- 공용수도료 -->
<th style="height:25px;">공용수도료</th>
<td class="center">
<input type="text" name="community_water_charge" class="ws" value="<?=$info["community_water_charge"]?>">
</td>
</tr>
<tr>
<!-- 소계 -->
<th style="height:25px;">소계</th>
<td class="center" colspan="3">
<input type="text" class="wb" id="total" value="" readonly />
</td>
</tr>
</table>
<table class="datav" style="width:100%; margin-top:20px;">
<colgroup>
<col width="20%" />
<col width="27%" />
<col width="27%" />
<col width="26%" />
</colgroup>
<thead>
<!-- 항목 제목 -->
<tr>
<th style="height:25px;">항목</th>
<th style="height:25px;">전월</th>
<th style="height:25px;">당월</th>
<th style="height:25px;">사용량</th>
</tr>
</thead>
<tbody>
<!-- 전기 -->
<tr>
<th style="height:25px;">전기</th>
<td class="center">
<input type="text" class="ws" name="electricity_usage_lm" value="<?=$info["electricity_usage_lm"]?>" />
</td>
<td class="center">
<input type="text" class="ws" name="electricity_usage" value="<?=$info["electricity_usage"]?>" />
</td>
<td class="center">
<input type="text" class="ws" name="actual_electricity_usage" id="elec_total_usage" readonly />
</td>
</tr>
<!-- 가스 -->
<tr>
<th style="height:25px;">가스</th>
<td class="center">
<input type="text" class="ws" name="gas_usage_lm" value="<?=$info["gas_usage_lm"]?>" />
</td>
<td class="center">
<input type="text" class="ws" name="gas_usage" value="<?=$info["gas_usage"]?>" />
</td>
<td class="center">
<input type="text" class="ws" name="actual_gas_usage" id="gas_total_usage" readonly />
</td>
</tr>
<!-- 수도 -->
<tr>
<th style="height:25px;">수도</th>
<td class="center">
<input type="text" class="ws" name="water_usage_lm" value="<?=$info["water_usage_lm"]?>"/>
</td>
<td class="center">
<input type="text" class="ws" name="water_usage" value="<?=$info["water_usage"]?>" />
</td>
<td class="center">
<input type="text" class="ws" name="actual_water_usage" id="water_total_usage" readonly />
</td>
</tr>
</tbody>
</table>
<table class="datav" style="width:100%; margin-top:20px;">
<colgroup>
<col width="20%" />
<col width="80%" />
</colgroup>
<tr>
<!-- 당월부과액 -->
<th style="height:25px;">당월부과액</th>
<td class="center">
<input type="text" name="current_month_charge" class="wb" id="total2" value="" readonly />
</td>
</tr>
<tr>
<!-- 전월미납액 -->
<th style="height:25px;">전월미납액</th>
<td class="center">
<input type="text" name="name" id="unpaid" class="wb" value="<?=$lm_info["sum_after_payment"]?>" readonly />
</td>
</tr>
<tr>
<!-- 납기 내 금액 -->
<th style="height:25px;">납기 내 금액</th>
<td class="center">
<input type="text" name="name" class="wb" id="sum_before_payment" value="" readonly />
</td>
</tr>
<tr>
<!-- 당월연체료 -->
<th style="height:25px;">당월연체료</th>
<td class="center">
<input type="text" name="current_month_late_fee" id="current_month_late_fee" class="wb" value="<?=$info["current_month_late_fee"]?>" />
</td>
</tr>
<tr>
<!-- 납기 후 금액 -->
<th style="height:25px;">납기 후 금액</th>
<td class="center">
<input type="text" name="sum_after_payment" class="wb" id="sum_after_payment" value="" readonly/>
</td>
</tr>
</table>
</form>
<div class="btngroupcenter">
<span class="button bigrounded blue jSend">확인 발송</span>
<?if($_REQUEST["key"] == ""){?>
<span class="button bigrounded blue jClose">닫기</span>
<?}else{?>
<span class="button bigrounded blue jCancel">닫기</span>
<?}?>
</div>
</div>
</div>