|
|
@@ -511,6 +511,7 @@ public class TscKakaotalkService {
|
|
|
* @author jssin
|
|
|
* @since 2021. 05. 28
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void sendCombackCoupon(Customer customer, CustCoupon custCoupon, Integer senderNo) {
|
|
|
SsgDirectMessage dm = new SsgDirectMessage();
|
|
|
dm.setFuserid(String.valueOf(senderNo)); // 발송자NO
|
|
|
@@ -520,6 +521,7 @@ public class TscKakaotalkService {
|
|
|
GagaMap replaceInfo = new GagaMap();
|
|
|
replaceInfo.setString("siteNm", siteNm);
|
|
|
replaceInfo.setString("custNm", customer.getCustNm());
|
|
|
+ replaceInfo.setString("custId", customer.getCustId());
|
|
|
replaceInfo.setInt("dcVal", custCoupon.getDcVal());
|
|
|
replaceInfo.setString("dcWay", custCoupon.getDcWay());
|
|
|
|