추가배송비 우편번호 검색 juso.sir.co.kr 이용하도록 수정

This commit is contained in:
chicpro
2014-01-07 10:57:36 +09:00
parent 71c2a06597
commit 5b0adff790
2 changed files with 65 additions and 86 deletions

View File

@ -140,8 +140,12 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
$(function() {
$(".sch_zipcode").click(function() {
var idx = $(".sch_zipcode").index($(this));
var url = "./sendcostzipcode.php?no="+(idx+1);
var opt = "left=50,top=50,width=500,height=400";
var no = idx + 1;
var sort = "asc";
if(no == 2)
sort = "desc";
var url = "./sendcostzipcode.php?no="+no+"&sort="+sort;
var opt = "left=50,top=50,width=600,height=700";
window.open(url, "win_zipcode", opt);
});
});