|
|
@@ -4,14 +4,11 @@ import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
|
|
import com.style24.front.biz.thirdparty.Yes24Login;
|
|
|
-import com.style24.front.support.env.TsfConstants;
|
|
|
import com.style24.persistence.domain.CustSnsInfo;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.http.HttpRequest;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
@@ -96,7 +93,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
boolean isFind = false;
|
|
|
|
|
|
if (StringUtils.isBlank(customer.getAuthMethod())) {
|
|
|
- throw new IllegalStateException("인증방법이 없습니다. <br>관리자에게 문의하시기 바랍니다.");
|
|
|
+ throw new IllegalStateException(message.getMessage("CUST_0005"));
|
|
|
}
|
|
|
|
|
|
Customer params = new Customer();
|
|
|
@@ -165,7 +162,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
boolean isFind = false;
|
|
|
|
|
|
if (StringUtils.isBlank(customer.getAuthMethod())) {
|
|
|
- throw new IllegalStateException("인증방법이 없습니다. <br>관리자에게 문의하시기 바랍니다.");
|
|
|
+ throw new IllegalStateException(message.getMessage("CUST_0005"));
|
|
|
}
|
|
|
|
|
|
// 고객정보 찾기 - 아이디, 이름, 이메일
|
|
|
@@ -210,7 +207,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
boolean isFind = false;
|
|
|
|
|
|
if (StringUtils.isBlank(customer.getAuthMethod())) {
|
|
|
- throw new IllegalStateException("인증방법이 없습니다. <br>관리자에게 문의하시기 바랍니다.");
|
|
|
+ throw new IllegalStateException(message.getMessage("CUST_0005"));
|
|
|
}
|
|
|
|
|
|
Customer params = new Customer();
|
|
|
@@ -875,8 +872,7 @@ public class TsfCustomerController extends TsfBaseController {
|
|
|
|
|
|
mav.addObject("custNm", customer.getCustNm());
|
|
|
|
|
|
-// mav.setViewName(super.getDeviceViewName("customer/ConsentUseInfoForm"));
|
|
|
- mav.setViewName("web/customer/ConsentUseInfoFormWeb");
|
|
|
+ mav.setViewName(super.getDeviceViewName("customer/ConsentUseInfoForm"));
|
|
|
|
|
|
return mav;
|
|
|
}
|