jsh77b 5 лет назад
Родитель
Сommit
6a71445ef1

+ 0 - 3
WebContent/META-INF/MANIFEST.MF

@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Class-Path: 
-

+ 5 - 5
src/main/webapp/WEB-INF/views/order/ReturnRequestForm.html

@@ -141,8 +141,8 @@
 						<tr>
 							<th>회수지주소 <i class="star"></i></th>
 							<td colspan="3">
-								<input type="text" name ="chgerPostNo" class="w100" readonly="readonly" />
-								<button type="button" class="btn btn-info" onclick="cfnOpenPostFindPopup('returnRequest');">우편번호찾기</button>
+								<input type="text" name ="chgerZipNo" class="w100" readonly="readonly" />
+								<button type="button" class="btn btn-info" onclick="fnOpenDaumAddr('delvLoc');">우편번호찾기</button>
 								<input type="text" name ="chgerBaseAddr" class="w300" />
 								<input type="text" name ="chgerDtlAddr" class="w300" />
 							</td>
@@ -1077,9 +1077,9 @@ var fnOpenDaumAddr = function() {
 	let daumZip = new daum.Postcode({
 		oncomplete: function(data) {
 			// 우편번호와 주소 정보를 해당 필드에 넣는다.
-			$('#detailForm input[name=bizZipcode]').val(data.zonecode);
-			$('#detailForm input[name=bizBaseAddr]').val(cfnGetDaumRoadAddr(data));
-			$('#detailForm input[name=bizDtlAddr]').focus();
+			$('#detailForm input[name=chgerZipNo]').val(data.zonecode);
+			$('#detailForm input[name=chgerBaseAddr]').val(cfnGetDaumRoadAddr(data));
+			$('#detailForm input[name=chgerDtlAddr]').focus();
 			
 			cfnCloseDaumAddr();
 		},