Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Shopping without passport at S.Korea’s Lotte Duty Free – KED Global

Lotte Duty Free Myeongdong (Hankyung DB)

With a smartphone, you can now shop at duty-free shops in Seoul without a passport.

Lotte Duty Free announced on Tuesday that it has introduced the industry’s first mobile passport service.

Starting June 20, domestic and foreign members of Lotte Duty Free can conveniently use their mobile passports to enjoy duty-free shopping at the Myeongdong headquarters and Jamsil World Tower stores in Seoul.

The Busan and Jeju stores will introduce the service as soon as they complete the approval process.

The mobile passport can be easily registered by accessing “My Page” within the Lotte Duty Free application. Once registered, it can be used throughout the passport’s validity period. 

Earlier, in September last year, the Korea Customs Service announced a plan to allow customers to verify their identity and purchase duty-free goods using smartphone authentication at duty-free shops in the city as part of measures to revitalize the duty-free industry.

Lotte Duty Free proactively collaborated with Lordsystem Co., which holds a patent for digital distributed identification (DID), to develop the system.

Lotte Duty Free said it enhanced security with two-way authentication utilizing an optical character reader (OCR) and an electronic passport integrated circuit (IC) chip.

“We proactively introduced the mobile passport service in response to the government’s active support to restore the competitiveness of the Korean duty-free industry,” said Kim Joo-nam, CEO of Lotte Duty Free. “We will strive to make it more convenient for customers to enjoy shopping at downtown duty-free stores.”

Write to Mi-Kyoung Lee at [email protected]

if($('[data-popup-plus]').length > 0){ setInputPlusMemberInfo($('[data-popup-plus]')); } });

// plus 정보 조회 function getPlusMemberInfo(){ var return_data=""; $.ajax({ url: '/memberGetplusinfo', method: "post", dataType: "json", async: false }) .done(function(data, textStatus, jqXHR){ return_data = data; }); return return_data; }

// plus 정보 조회 function setInputPlusMemberInfo($obj){ var data = getPlusMemberInfo(); $obj.find('#firstName').val(data.firstName); $obj.find('#lastName').val(data.lastName); $obj.find('#country').val(data.country); $obj.find('#company').val(data.company); $obj.find('#title').val(data.title); $obj.find('#typeOfBusiness').val(data.typeOfBusiness); $obj.find('#assetClass').val(data.assetClass); $obj.find('#receiveEmailNewsletter').val(data.receiveEmailNewsletter); $obj.find('#receiveEmailRFP').val(data.receiveEmailRFP); if(data.receiveEmailNewsletter == 'Y'){$obj.find('#receiveEmailNewsletter').prop('checked',true);} if(data.receiveEmailRFP == 'Y'){$obj.find('#receiveEmailRFP').prop('checked',true);} }

// 뉴스레터 구독신청 팝업 오픈 function openPopupApplyLetter(){ location.href="https://www.kedglobal.com/login"; }

// pdf 다운로드 팝업 오픈 function downloadPdf(downloadUrl, type){ var data = getPlusMemberInfo(); var isOpenPopup = false; $obj = $('[data-popup-pdf]');

switch(type){ case '1' : // 1) 히든챔피언 리스트 인쇄/PDF 다운 받으려고 할 때 메시지 $obj.find('.tit').html('Fill in the information to download the full list of
Hidden Champions companies.'); break; case '2' : // 2) 히든챔피언 본문 내용(뷰페이지: 스토리+데이터)을 인쇄/PDF 다운 받으려고 할 때 메시지 $obj.find('.tit').html('Fill in the information to access the detailed case study and
data of this Hidden Champion.'); break; case '3' : // 3) 퓨처유니콘 리스트 $obj.find('.tit').html('Fill in the information to download the full list of
Future Unicorns companies.'); break; case '4' : // 4) 퓨처유니콘 스토리+데이터 $obj.find('.tit').html('Fill in the information to access the detailed case study
and data of this Future Unicorn.'); break; default: $obj.find('.tit').html('Fill in the information to download the full story of
Hidden Champions and Future Unicorns.'); }

if(data){ if(!data.companyEmail || !data.affiliation || !data.downloadPurpose){ // 회원 isOpenPopup = true; $obj.find('#companyEmail').val(data.companyEmail); $obj.find('#affiliation').val(data.affiliation); $obj.find('#downloadPurpose').val(data.downloadPurpose); }else{ // 바로 다운로드 params = "downloadUrl="+downloadUrl; sendDownloadEmail(params); } }else{ // 비회원 isOpenPopup = true; } $obj.find('#downloadUrl').val(downloadUrl);

if(isOpenPopup){ $obj.show(); $obj.css('overflow-y','unset'); $obj.find('.popup').show(); $obj.find('.popup').addClass('on'); $("html").css('overflow-y','hidden'); } }

// email을 companyEmail로 사용 $(document).on('click','[data-check-use-email]',function(){ if($(this).is(':checked')){ $('#companyEmail').val(''); }else{ $('#companyEmail').val(''); } });

// 유효하지 않은 이메일 function checkEmailPattern(email){ var result = true; var regex = /([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; result = regex.test(email); return result; }

// companyEmail 중복체크 function validateCompanyEmail($form){ var result = true; var params = $form.serialize(); $.ajax({ url: '/memberValidatecompanyemail', method: "post", data: params, dataType: "json", async: false }) .done(function(data, textStatus, jqXHR){ // console.log('validateCompanyEmail : '+data); if(data > 0){ result = true; }else{ result = false; } }); return result; }

// pdf 전송정보 저장 $(document).on('click','[data-save-pdf]',function(){ $form = $(this).closest('form');

// companyEmail var id = "companyEmail"; var $input = $('#'+id); var $error = $('[data-error="+id+"]'); var Errormsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your Company Email'; }else if(!checkEmailPattern($input.val())){ // 유효하지 않음 errorMsg = 'The email address is not valid.'; }else if(validateCompanyEmail($form)){ // 중복(conpanyEmail) errorMsg = 'Your email is already registered. Please sign in.'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // affiliation var id = "affiliation"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Select your Sector'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // downloadPurpose var id = "downloadPurpose"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your Purpose of Download'; } if(setErrorMsg($input, $error, errorMsg)){ return false; }

var downloadUrl = $('#downloadUrl').val();

var params = $form.serialize(); params += "&downloadUrl="+downloadUrl; sendDownloadEmail(params); });

// 다운로드 메일 전송 function sendDownloadEmail(params){ $.ajax({ url: '/memberSenddownloademail', method: "post", data: params, dataType: "json", async: false }) .done(function(data, textStatus, jqXHR){ if(data.result == 'success'){ alert("We've sent you an email with the requested information. Please check your inbox."); location.reload(); }else{ alert(data.msg); } }); }

// 에러메세지 출력, 포커스 function setErrorMsg($input, $error, errorMsg){ var result = false; var errorLabelClass = "error_point"; // 에러영역 표시 class $input.closest('label').removeClass(errorLabelClass); if(errorMsg == ''){ $error.fadeOut(); }else{ $input.focus(); window.scrollBy(0,-100); $input.closest('label').addClass(errorLabelClass); if($error.length > 0){ $error.html(errorMsg); $error.fadeIn(); }else{ alert(errorMsg); } result = true; } return result; }

// plus 정보 입력 저장 $(document).on('click','[data-save-plus]',function(){ var $form = $(this).closest('form');

// firstName var id = "firstName"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your First name'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // lastName var id = "lastName"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your Last name'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // country var id = "country"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Select your Country'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // company var id = "company"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your Company'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // title var id = "title"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Enter your Title'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // typeOfBusiness var id = "typeOfBusiness"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Select your Type of Business'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // assetClass var id = "assetClass"; var $input = $form.find('[name="'+id+'"]'); var $error = $form.find('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ errorMsg = 'Select your Asset Class'; } if(setErrorMsg($input, $error, errorMsg)){ return false; } // receiveEmailNewsletter (필수아님) // var id = "receiveEmailNewsletter"; // var $input = $form.find('[name="'+id+'"]'); // if($input.length > 0){ // var $error = $form.find('[data-error="+id+"]'); // var errorMsg = ''; // if($input.is(':checked')){ // $input.val('Y'); // }else{ // errorMsg = 'I wish to receive weekly email newsletters on Korean asset owners and developments in Korean capital market.'; // } // if(setErrorMsg($input, $error, errorMsg)){ // return false; // } // } // receiveEmailRFP (필수아님) // var id = "receiveEmailRFP"; // var $input = $form.find('[name="'+id+'"]'); // if($input.length > 0){ // var $error = $form.find('[data-error="+id+"]'); // var errorMsg = ''; // if($input.is(':checked')){ // $input.val('Y'); // }else{ // errorMsg = 'I wish to receive immediate email notification on RFP from Korean asset owners.'; // } // if(setErrorMsg($input, $error, errorMsg)){ // return false; // } // }

var params = $form.serialize(); $.ajax({ url: '/memberModifyplus', method: "post", data: params, dataType: "json", async: false }) .done(function(data, textStatus, jqXHR){ if(data.result == 'success'){ if($form.data('popup-type') == 'letter'){ alert('You will receive KED Global newsletter from now on.'); } location.reload(); }else{ alert('fail'); } }); });

function loginCheck(){

// email var id = "email"; var $input = $('#'+id); var $error = $('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ // 미입력 errorMsg = 'Please enter your Email address.'; } if(setErrorMsg($input, $error, errorMsg)){ return false; }

// password var id = "password"; var $input = $('#'+id); var $error = $('[data-error="+id+"]'); var errorMsg = ''; if($.trim($input.val()) == ''){ // 미입력 errorMsg = 'Please enter a password.'; } if(setErrorMsg($input, $error, errorMsg)){ return false; }

if($('#rememberId').is(':checked')){ $('#rememberId').val('Y'); }else{ $('#rememberId').val('N'); }

login(); }

function login(){ $.ajax({ url: '/memberLogincheck', method : 'post', data : $('#frm').serialize(), dataType: "json", async: false }) .done(function(data, textStatus, jqXHR){ var $errorLabel = $('[data-error="loginfail"]'); $errorLabel.fadeOut(); if(data.result == 'success'){ if(navigator.userAgent.toLowerCase().indexOf('androidapp') > -1 || navigator.userAgent.toLowerCase().indexOf('iosapp') > -1){ //요청변수 설정 var param = { action:"addgroup", usertype:data.grade }; setTimeout(function(){ webkit.messageHandlers.cordova_iab.postMessage(JSON.stringify(param)); var refer=""; if(refer){ location.href=refer; }else{ location.reload(); } },1000); }else{ location.reload(); } }else if(data.result == 'error'){ $errorLabel.html(data.msg); $errorLabel.fadeIn(); }else if(data.result == 'error_alert'){ alert(data.msg); } }); }

// facebook --------------------------------------------------------------------------------- // https://developers.facebook.com/docs/facebook-login/web

// status는 앱 사용자의 로그인 상태를 지정합니다. 상태는 다음 중 하나일 수 있습니다. // - connected - 사용자가 Facebook에 로그인하고 앱에 로그인했습니다. // - not_authorized - 사용자가 Facebook에는 로그인했지만 앱에는 로그인하지 않았습니다. // - unknown - 사용자가 Facebook에 로그인하지 않았으므로 사용자가 앱에 로그인했거나 FB.logout()이 호출되었는지 알 수 없어, Facebook에 연결할 수 없습니다.

// connected 상태인 경우 authResponse가 포함되며 다음과 같이 구성되어 있습니다. // - accessToken - 앱 사용자의 액세스 토큰이 포함되어 있습니다. // - expiresIn - 토큰이 만료되어 갱신해야 하는 UNIX 시간을 표시합니다. // - signedRequest - 앱 사용자에 대한 정보를 포함하는 서명된 매개변수입니다. // - userID - 앱 사용자의 ID입니다.

// 앱에서 앱 사용자의 로그인 상태를 알게 되면 다음 중 하나를 수행할 수 있습니다. // - 사용자가 Facebook과 앱에 로그인한 경우 앱의 로그인된 환경으로 리디렉션됩니다. // - 사용자가 앱에 로그인하지 않았거나 Facebook에 로그인하지 않은 경우 FB.login()을 사용하여 로그인 대화 상자에 메시지를 표시하거나 로그인 버튼을 표시합니다.

// 페이스북 버튼 $(document).on('click','[data-login-facebook]',function(){ if($('#lp').is(':checked')){ alert('LP는 SNS 이메일 계정 사용이 불가합니다.'); }else{ // 로그인/가입 fbLogin(); } });

// 페이스북 로그인 function fbLogin() { // 로그인 여부 체크 FB.getLoginStatus(function(response) { if (response.status === 'connected') { fbApiLogin(); } else { FB.login(function(response){ if (response.status === 'connected') { fbApiLogin(); }else{ console.log('Facebook login fail'); } }); } }, true); // 중복실행방지 } function fbApiLogin() { FB.api('/me', function(response) { $('#snsDomain').val('facebook'); $('#snsId').val(response.id); login(); // 로그인 }); }

window.fbAsyncInit = function() { FB.init({ appId : '1271195866549789', cookie : true, xfbml : true, version : 'v8.0' });

FB.AppEvents.logPageView(); };

(function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); // //facebook ------------------------------------------------------------------

// twitter --------------------------------------------------------------------------------- // 트위터 버튼 $(document).on('click','[data-login-twitter]',function(){ if($('#lp').is(':checked')){ alert('LP는 SNS 이메일 계정 사용이 불가합니다.'); }else{ // 트위터 팝업 var popup = window.open('/twitterProcess.php', 'twitterProcess', 'width=700px,height=800px,scrollbars=yes'); } });

// 트위터 팝업에서 실행 function twitterProc(){ // 로그인 login(); } // //twitter ---------------------------------------------------------------------------------

The post Shopping without passport at S.Korea’s Lotte Duty Free – KED Global appeared first on Bloomberg News Today.



This post first appeared on Bloomberg News Today, please read the originial post: here

Share the post

Shopping without passport at S.Korea’s Lotte Duty Free – KED Global

×

Subscribe to Bloomberg News Today

Get updates delivered right to your inbox!

Thank you for your subscription

×