|
|
@@ -446,3 +446,26 @@ var fnCrePayAddCost = function(param) {
|
|
|
$('#addPaymentForm input[name=ordNo]').val(ordNo);
|
|
|
document.addPaymentForm.submit();
|
|
|
}
|
|
|
+
|
|
|
+// 회수조회 버튼 클릭 이벤트
|
|
|
+var fnGoToWithdrawDelivery = function(param) {
|
|
|
+ // TODO
|
|
|
+ // 회수조회 페이지 이동
|
|
|
+ let url = '/mypage/track/withdraw/popup/form';
|
|
|
+ reclaimPop
|
|
|
+ $.ajax( {
|
|
|
+ type : "POST",
|
|
|
+ url : '/common/delvAddrChangePop',
|
|
|
+ data : JSON.stringify(jsonData),
|
|
|
+ dataType : 'html',
|
|
|
+ beforeSend : function(xhr, settings) {
|
|
|
+ xhr.setRequestHeader("AJAX" , "true");
|
|
|
+ xhr.setRequestHeader('Accept' , 'application/json');
|
|
|
+ xhr.setRequestHeader('Content-Type' , 'application/json');
|
|
|
+ },
|
|
|
+ success : function(result) {
|
|
|
+ $("#adrsChangePop .modal-dialog .modal-content").html(result);
|
|
|
+ $("#adrsChangePop").modal("show");
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|