f1f54678557931239e7fce0ab7817d18461fd865.svn-base
6.65 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
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminVehicle.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftVehicleManage.php" ?>
<?
$obj = new AdminVehicle($_REQUEST, "");
$info = $obj->getInfoOfVehicle();
//$cateCodeList = $obj->getShopCategoryCodeList();
//$shopImgList = $obj->getShopImgList($info["no"]);
$rurl = pack("H*", $_REQUEST["rurl"]) ;
?>
<script src="/admin/inc/fileUpload/fileUploadJS.js"></script>
<script type="text/javascript">
var _rurl = "<?=$rurl?>";
var _no = "<?=$_REQUEST[no]?>";
$(document).ready(function(){
initFileUpload(101);
initFileUpload(102);
initFileUpload(103);
initFileUpload(104);
initFileUpload(105);
<?if($admin_type == 3) { ?>
setReadOnly();
<?} ?>
//=====프레입웤 변수들==================================================================================//
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;
});
$(".jSave").click2(function(){
if(confirm("내용을 저장하시겠습니까?")){
$("#jData").ajaxSubmit({
url:"/action_front.php?cmd=AdminVehicle.saveVehicle",
type : "post",
forceSync : true,
dataType : "json",
success : function(data){
alert(data.returnMessage);
location.href = _rurl;
},
error : function(req, res, error){
alert(req+res+error);
}
});
}
});
$("#jCategorCd").change(function(){
setPromotion();
});
setPromotion();
}) ;
function setPromotion()
{
if($("#jCategorCd").val() == "1")
{
$("#jPromotionSelect").val("1");
$("#jPromotionSelect").prop("disabled", true);
$("#jPromotionHidden").prop("disabled", false);
}
else
{
$("#jPromotionSelect").prop("disabled", false);
$("#jPromotionHidden").prop("disabled", true);
}
}
function setReadOnly(){
$("[name=name]").attr("readonly", true);
$("[name=tel]").attr("readonly", true);
$("[name=addr_old]").attr("readonly", true);
$("[name=addr_new]").attr("readonly", true);
$("[name=discount_rate]").attr("readonly", true);
$("[name=discount_desc]").attr("readonly", true);
}
</script>
<div id="Contents" class="notice">
<h1>제품 관리 - 등록</h1>
<!-- location area -->
<h2>
재품 관리 > <span><?=$_REQUEST["vehicleType"]?></span>
</h2>
<!-- location area -->
<div class="data" style="width:80%;">
<form id="jData" method="post" enctype="multipart/form-data">
<input type="hidden" name="vehicleNo" value="<?=$_REQUEST["vehicleNo"]?>" />
<input type="hidden" name="vehicleType" value="<?=$_REQUEST["vehicleType"]?>" />
<table class="datav" style="width:100%;">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tr>
<th style="height:25px;">제품명</th>
<td class="l">
<input type="text" name="name" class="wl" style="width:90%;" value="<?=$info["name"]?>" />
</td>
</tr>
<tr>
<th style="height:25px;">제품소개</th>
<td class="l">
<textarea name="spec" rows="7" style="width:90%;resize:vertical;"><?=$info["spec"]?></textarea>
</td>
</tr>
<tr>
<th style="height:25px;">이동 URL</th>
<td class="l">
<input type="text" name="videoURL" class="wl" style="width:90%;" value="<?=$info["videoURL"] ?>" />
</td>
</tr>
<tr>
<th style="height:25px;">이미지 1</th>
<td class="l">
<?
$fileIndex = "101";
$fileName = "imgPathVehicle1";
$filePath = ($info["imgPathVehicle1"] == "" ? "" : $info["imgPathVehicle1"]);
//$fileNumber = ($shopImgList[0]["no"] == "" ? "0" : $shopImgList[0]["no"]);
include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
?>
<input type="hidden" name="imgPathVehicle1" value="<?=$info["imgPathVehicle1"]?>" />
</td>
</tr>
<tr>
<th style="height:25px;">이미지 2</th>
<td class="l">
<?
$fileIndex = "102";
$fileName = "imgPathVehicle2";
$filePath = ($info["imgPathVehicle2"] == "" ? "" : $info["imgPathVehicle2"]);
//$fileNumber = ($shopImgList[1]["no"] == "" ? "0" : $shopImgList[1]["no"]);
include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
?>
<input type="hidden" name="imgPathVehicle2" value="<?=$info["imgPathVehicle2"]?>" />
</td>
</tr>
<tr>
<th style="height:25px;">이미지 3</th>
<td class="l">
<?
$fileIndex = "103";
$fileName = "imgPathVehicle3";
$filePath = ($info["imgPathVehicle3"] == "" ? "" : $info["imgPathVehicle3"]);
//$fileNumber = ($shopImgList[2]["no"] == "" ? "0" : $shopImgList[2]["no"]);
include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
?>
<input type="hidden" name="imgPathVehicle3" value="<?=$info["imgPathVehicle3"]?>" />
</td>
</tr>
<tr>
<th style="height:25px;">이미지 4</th>
<td class="l">
<?
$fileIndex = "104";
$fileName = "imgPathVehicle4";
$filePath = ($info["imgPathVehicle4"] == "" ? "" : $info["imgPathVehicle4"]);
//$fileNumber = ($shopImgList[3]["no"] == "" ? "0" : $shopImgList[3]["no"]);
include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
?>
<input type="hidden" name="imgPathVehicle4" value="<?=$info["imgPathVehicle4"]?>" />
</td>
</tr>
<tr>
<th style="height:25px;">이미지 5</th>
<td class="l">
<?
$fileIndex = "105";
$fileName = "imgPathVehicle5";
$filePath = ($info["imgPathVehicle5"] == "" ? "" : $info["imgPathVehicle5"]);
//$fileNumber = ($shopImgList[4]["no"] == "" ? "0" : $shopImgList[4]["no"]);
include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
?>
<input type="hidden" name="imgPathVehicle5" value="<?=$info["imgPathVehicle5"]?>" />
</td>
</tr>
</table>
</form>
<div class="btngroupcenter">
<span class="button bigrounded blue jCancel">취소 </span>
<span class="button bigrounded blue jSave" >저장</span>
</div>
</div>
</div>