psView.php
14 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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminRent.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftProductionSpecManage.php" ?>
<?
$obj = new AdminRent($_REQUEST, "");
//$info = $obj->getInfoOfRoom();
//$user_list = $obj->getListOfUserForRoom();
//$bill_info = $obj->getInfoOfBill();
$rurl = pack("H*", $_REQUEST["rurl"]) ;
?>
<script type="text/javascript">
var _rurl = "<?=$rurl?>";
var _no = "<?=$_REQUEST[no]?>";
var addCounter = 0;
var THRESHOLD = 5;
$(document).ready(function(){
//=====프레입웤 변수들==================================================================================//
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 }) ;
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) {
}
});
$(".jCancel").click2(function(){
location.href = _rurl;
});
$(".jAdd").click(function(){
if($("#addContent").val()=="") return;
if(addCounter == THRESHOLD) {
alert("특수사항은 최대 " + THRESHOLD + "개까지 추가할 수 있습니다.");
return;
}
$(".addtable")
.append("<tr no="
+ addCounter + " class='dynamicRow'><td></td><td><input type='text' class='added' readonly value='"
+ $("#addContent").val() + "' /><span class='button bigrounded gray adddel' no="
+ addCounter +" style='color:white; width:70px'> X </span></td></tr>");
addCounter++;
$("#addContent").val('');
});
function pickupRows(){
var noArr = new Array();
var noCount = $(".added").length;
for(var i = 0; i < noCount; i++ ){
noArr[i] = $(".added:eq(" + i + ")").val();
}
alert(noArr);
}
$(".test").click(function(){
pickupRows();
});
$(document).on("click", ".adddel", function(){
$(".dynamicRow[no="+$(this).attr("no")+"]").remove();
addCounter--;
});
$(".jClose").click2(function(){
window.close();
});
$(".jMod").click2(function(){
var data = $("#jData").serialize();
$.ajax({
url : "/action_front.php?cmd=AdminRent.saveRoom",
async : false,
cache : false,
dataType : "json",
data : data,
success : function(data){
alert(data.returnMessage);
location.href=_rurl;
/*
if(_no != "")
location.reload();
else
location.href = _rurl;
*/
}
});
});
}) ;
</script>
<div id="Contents" class="notice">
<h1>사양서 관리</h1>
<h2>사양서 관리 > <span>상세</span></h2>
<div class="data" style="width:100%;">
<form id="jData">
<input type="hidden" name="no" value="<?=$_REQUEST[no]?>" />
<input type="hidden" name="building_fk" value="<?=$_GET["Bno"]?>" />
<input type="hidden" name="current_contractor" value="<?=$info["user_fk"]?>" />
<table class="datav" style="width:100%;">
<colgroup>
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
</colgroup>
<tr>
<!-- 호실 -->
<th style="height:25px;">작성 날짜</th>
<td class="center">
<?php
$formattedDate = date('Y-m-d', strtotime($info["move_in_date"]));
if($formattedDate == "1970-01-01") $formattedDate = "";
?>
<input type="text" name="move_in_date" value="<?=$formattedDate?>" class="jRsvDate" />
</td>
<!-- 관리유형 -->
<th style="height:25px;">담당자</th>
<td class="center" colspan='3'>
<select name="manage_type" class="wm">
<option value="">선택</option>
<option value="<?=$obj->BUILDING_MANAGE_TYPE_LONG_CONS?>" <?=$info["manage_type"] == $obj->BUILDING_MANAGE_TYPE_LONG_CONS ? "SELECTED" : ""?>>장기위탁</option>
<option value="<?=$obj->BUILDING_MANAGE_TYPE_SHORT_CONS?>" <?=$info["manage_type"] == $obj->BUILDING_MANAGE_TYPE_SHORT_CONS ? "SELECTED" : ""?>>단기위탁</option>
<option value="<?=$obj->BUILDING_MANAGE_TYPE_LONG_SELF?>" <?=$info["manage_type"] == $obj->BUILDING_MANAGE_TYPE_LONG_SELF ? "SELECTED" : ""?>>장기자기</option>
<option value="<?=$obj->BUILDING_MANAGE_TYPE_SHORT_SELF?>" <?=$info["manage_type"] == $obj->BUILDING_MANAGE_TYPE_SHORT_SELF ? "SELECTED" : ""?>>단기자기</option>
</select>
</td>
</tr>
</table>
<br>
<h3>고객 정보</h3>
<table class="datav" style="width:100%;">
<colgroup>
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
</colgroup>
<tr>
<!-- 입주자 -->
<th style="height:25px;">성명</th>
<td class="center">
<input type="text" name="contractor_tel" class="wm" value="<?=$info["contractor_tel"]?>" />
</td>
<!-- 연락처 -->
<th style="height:25px;">상호</th>
<td class="center">
<input type="text" name="contractor_tel" class="wm" value="<?=$info["contractor_tel"]?>" />
</td>
<!-- 반환계좌 / 입금주 -->
<th style="height:25px;">연락처</th>
<td class="center" colspan='3'>
<input type="text" style="width:50px"/> - <input type="text" style="width:50px"/> - <input type="text" style="width:50px"/>
</td>
</tr>
<tr>
<!-- 계약일 -->
<th style="height:25px;">차종</th>
<td class="center" colspan='7'>
<input type="text" style="width:5%;" /> TON
<input type="text" style="margin-right:50px;"/>
<input type="radio" name="chk_info" value="HTML">현대
<input type="radio" name="chk_info" value="CSS">대우
<input type="radio" name="chk_info" value="웹디자인">볼보
<input type="radio" name="chk_info" value="웹디자인">스카니아
<input type="radio" name="chk_info" value="웹디자인">벤츠
<input type="radio" name="chk_info" value="웹디자인">볼보
<input type="radio" name="chk_info" value="웹디자인">만
</td>
</tr>
</table>
<h3>제품 정보</h3>
<table class="datav" style="width:100%;">
<colgroup>
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
<col width="10%" />
<col width="15%" />
</colgroup>
<tr>
<!-- 보증금 -->
<th style="height:25px;">제품명</th>
<td class="center" colspan='7'>
<input type="text" name="deposit" class="wm" value="<?=$info["deposit"]?>" />
</td>
</tr>
<tr>
<!-- 기본관리비 -->
<th style="height:25px;">TYPE</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">R
<input type="radio" name="chk_info" value="CSS">각
<input type="radio" name="chk_info" value="웹디자인">판넬
<input type="text" style="margin-left:50px;"/>
</td>
</tr>
<tr>
<!-- 렌트2 -->
<th style="height:25px;">내장</th>
<td class="center">
<input type="text" name="rent_2" class="wm" value="<?=$info["rent_2"]?>" />
</td>
<!-- 기타 -->
<th style="height:25px;">내고</th>
<td class="center">
<input type="text" name="etc" class="wm" value="<?=$info["etc"]?>" />
</td>
<!-- 월세입금일-->
<th style="height:25px;">내폭</th>
<td class="center" colspan='2'>
<select name="monthly_rent_date" class="wm">
<? for($i=1; $i<=31; $i++){ ?>
<option value='<?=$i?>' <?=$info["monthly_rent_date"] == $i ? "SELECTED" : ""?>><?=$i?></option>
<? } ?>
</select>
</td>
</tr>
<tr>
<!-- 전기 검침일-->
<th style="height:25px;">AL코일</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">GRP
<input type="radio" name="chk_info" value="CSS">AL
<input type="text" style='margin-left:50px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">내부바닥</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">체크
<input type="radio" name="chk_info" value="CSS">민판
<input type="text" style='width:5%;'/> T
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">누름천막</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">없음
<input type="radio" name="chk_info" value="CSS">고정식
<input type="radio" name="chk_info" value="CSS">이동식
</td>
</tr>
<tr>
<th style="height:25px;">내부옆판</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">있음
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">바람막이</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">있음
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">냉동기</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">있음
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<!-- 게이트 -->
<tr>
<th style="height:25px;" rowspan='2'>게이트</th>
<td class="center" colspan='7'>
-형태
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>구형
<input type="radio" name="chk_info" value="CSS">신형
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<td class="center" colspan='7'>
-사이즈
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>600
<input type="radio" name="chk_info" value="CSS">700
<input type="radio" name="chk_info" value="CSS">800
</td>
</tr>
<tr>
<th style="height:25px;">L&LOAD</th>
<td class="center" colspan='3'>
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>SUS
<input type="radio" name="chk_info" value="CSS">일반
</td>
<th style="height:25px;">앞/뒤틀 형식</th>
<td class="center" colspan='3'>
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>SUS
<input type="radio" name="chk_info" value="CSS">일반
</td>
</tr>
<tr>
<th style="height:25px;" rowspan='2'>E트랙</th>
<td class="center" colspan='7'>
-게이트
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>있음
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<td class="center" colspan='7'>
-날개
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>있을
<input type="radio" name="chk_info" value="CSS">없음
</td>
</tr>
<tr>
<th style="height:25px;">공구통</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">중
<input type="radio" name="chk_info" value="CSS">대
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">범퍼발판</th>
<td class="center" colspan='3'>
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>1개
<input type="radio" name="chk_info" value="CSS">2개
</td>
<th style="height:25px;">윙보호장치</th>
<td class="center" colspan='3'>
<input type="radio" name="chk_info" value="HTML" style='margin-left:50px;'>1개
<input type="radio" name="chk_info" value="CSS">2개
</td>
</tr>
<tr>
<th style="height:25px;">축(장착여부)</th>
<td class="center" colspan='7'>
<input type="radio" name="chk_info" value="HTML">있음
<input type="radio" name="chk_info" value="CSS">없음
<input type="text" style='margin-left:45px;'/>
</td>
</tr>
<tr>
<th style="height:25px;">견적금액</th>
<td class="center" colspan='7'>
<input type="text" /> 원
</td>
</tr>
</table>
<h3>특수 사항</h3>
<table class="datav addtable" style="width:100%; empty-cells: hide;border-collapse: separate;">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tr>
<!-- 입실예정일 -->
<th style="height:25px;">특수 사항</th>
<td class="center">
<input type="text" id="addContent" />
<span class="button bigrounded gray jAdd" style="color:white; width:70px"> 추가 </span>
</td>
</tr>
</table>
</form>
<div class="btngroupcenter">
<span class="button bigrounded blue test btnleft_y">뀨 </span>
<span class="button bigrounded blue jCancel btnleft_y">목록으로 </span>
<span class="button bigrounded blue jClose btnleft_y">닫기 </span>
<span class="button bigrounded blue jMod btnright_y" >저장</span>
</div>
</div>
</div>