|
|
@@ -270,9 +270,18 @@ public class TscKakaotalkService {
|
|
|
dm.setFdestine(customer.getCellPhnno());
|
|
|
dm.setFkkoresendtype("LMS");
|
|
|
|
|
|
+ String custId = customer.getCustId();
|
|
|
+ if (TscConstants.SnsType.NAVER.value().equals(customer.getSnsType())) {
|
|
|
+ custId = "네이버 간편가입회원";
|
|
|
+ } else if (TscConstants.SnsType.KAKAO.value().equals(customer.getSnsType())) {
|
|
|
+ custId = "카카오 간편가입회원";
|
|
|
+ } else if (TscConstants.SnsType.YES24.value().equals(customer.getSnsType())) {
|
|
|
+ custId = "YES24 간편가입회원";
|
|
|
+ }
|
|
|
+
|
|
|
GagaMap replaceInfo = new GagaMap();
|
|
|
replaceInfo.setInt("custNo", customer.getCustNo());
|
|
|
- replaceInfo.setString("custId", customer.getCustId());
|
|
|
+ replaceInfo.setString("custId", custId);
|
|
|
replaceInfo.setString("custNm", customer.getCustNm());
|
|
|
replaceInfo.setString("dormantDt", customer.getDormantDt());
|
|
|
|