|
@@ -10,6 +10,7 @@ import org.springframework.core.env.Environment;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
+import com.gagaframework.web.parameter.GagaMap;
|
|
|
import com.style24.core.biz.dao.TscOrderChangeDao;
|
|
import com.style24.core.biz.dao.TscOrderChangeDao;
|
|
|
import com.style24.core.biz.thirdparty.NaverShortUrl;
|
|
import com.style24.core.biz.thirdparty.NaverShortUrl;
|
|
|
import com.style24.core.biz.thirdparty.SsgKakaoSender;
|
|
import com.style24.core.biz.thirdparty.SsgKakaoSender;
|
|
@@ -29,8 +30,6 @@ import com.style24.persistence.domain.SsgDirectMessage;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
-import com.gagaframework.web.parameter.GagaMap;
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* 카카오알림톡 Service. 모든 카카오알림톡 발송은 여기에서 처리한다.
|
|
* 카카오알림톡 Service. 모든 카카오알림톡 발송은 여기에서 처리한다.
|
|
|
*
|
|
*
|
|
@@ -1591,7 +1590,9 @@ public class TscKakaotalkService {
|
|
|
payment.setOrdNo(order.getOrdNo());
|
|
payment.setOrdNo(order.getOrdNo());
|
|
|
payment = orderChangeDao.getPaymentInfo(payment);
|
|
payment = orderChangeDao.getPaymentInfo(payment);
|
|
|
// 네이버페이 주문형 데이터는 알림톡 송부X
|
|
// 네이버페이 주문형 데이터는 알림톡 송부X
|
|
|
- if (TscConstants.PgGb.NAVER_ORDER.value().equals(payment.getPgGb())) {
|
|
|
|
|
|
|
+ // 2021.09.10 card007 외부몰주문 추가
|
|
|
|
|
+ if (TscConstants.PgGb.NAVER_ORDER.value().equals(payment.getPgGb())
|
|
|
|
|
+ || TscConstants.PayMeans.EXTMALL.value().equals(payment.getPayMeans())) {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
|