|
|
@@ -9,6 +9,7 @@ import com.style24.core.biz.service.TscKakaotalkService;
|
|
|
import com.style24.core.support.env.TscConstants;
|
|
|
import com.style24.core.support.session.TscSession;
|
|
|
import com.style24.core.support.util.CryptoUtils;
|
|
|
+import com.style24.core.support.util.MaskingUtils;
|
|
|
import com.style24.persistence.TscPageRequest;
|
|
|
import com.style24.persistence.domain.Coupon;
|
|
|
import com.style24.persistence.domain.CustContactHst;
|
|
|
@@ -470,7 +471,8 @@ public class TsaCustomerController extends TsaBaseController {
|
|
|
@GetMapping("/lms/popup/form")
|
|
|
public ModelAndView lmsPopupForm(@RequestParam(value = "elementCellPhnno", required = false) String elementCellPhnno
|
|
|
, @RequestParam(value = "elementCustNo") String elementCustNo
|
|
|
- , @RequestParam(value = "elementMaskingCellPhnno", required = false) String maskingCellPhnno) {
|
|
|
+ , @RequestParam(value = "elementMaskingCellPhnno", required = false) String maskingCellPhnno
|
|
|
+ , @RequestParam(value = "type", required = false) String pageGb) {
|
|
|
ModelAndView mav = new ModelAndView();
|
|
|
// 휴대폰 번호
|
|
|
mav.addObject("elementCellPhnno", elementCellPhnno);
|
|
|
@@ -483,12 +485,13 @@ public class TsaCustomerController extends TsaBaseController {
|
|
|
|
|
|
mav.addObject("callBack", TscConstants.CALLCENTER_TEL_NO);
|
|
|
|
|
|
+ mav.addObject("pageGb", pageGb);
|
|
|
+
|
|
|
mav.setViewName("customer/LmsPopupForm");
|
|
|
|
|
|
return mav;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 메시지 발송
|
|
|
*
|