간편결제 첫결제 이벤트 오류 수정
if(eventMberInfo == null || payCnt > 0) { ==> if(eventMberInfo == null
|| payCnt > 1) { 로 변경
This commit is contained in:
parent
d0decaee43
commit
495750a339
@ -2271,7 +2271,7 @@ public class MjonPayServiceImpl extends EgovAbstractServiceImpl implements MjonP
|
|||||||
// 문자할인여부(1: 할인, 0: 미할인)
|
// 문자할인여부(1: 할인, 0: 미할인)
|
||||||
int isMsgSalePrice = selectMsgSalePriceCnt(mjonPayVO.getUserId());
|
int isMsgSalePrice = selectMsgSalePriceCnt(mjonPayVO.getUserId());
|
||||||
|
|
||||||
if(eventMberInfo == null || payCnt > 0) {//일반 결제에 해당하는 경우 정상적 포인트 지급, 이벤트 첫결제에 해당되지 않는 회원
|
if(eventMberInfo == null || payCnt > 1) {//일반 결제에 해당하는 경우 정상적 포인트 지급, 이벤트 첫결제에 해당되지 않는 회원
|
||||||
// 문자 미할인 회원만 포인트 충전
|
// 문자 미할인 회원만 포인트 충전
|
||||||
if(isMsgSalePrice == 0) {
|
if(isMsgSalePrice == 0) {
|
||||||
mjonPayDAO.insertPoint(mjonPayVO); //POINT 테이블
|
mjonPayDAO.insertPoint(mjonPayVO); //POINT 테이블
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user