캔 사용 시 제휴보상 캔도 사용할 수 있도록 수정

This commit is contained in:
Klaus 2023-10-27 22:41:38 +09:00
parent 8017e837ef
commit 899bc076a3
1 changed files with 2 additions and 1 deletions

View File

@ -90,6 +90,7 @@ class ChargeQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : Cha
else -> payment.paymentGateway.eq(PaymentGateway.PG)
}
return paymentGatewayCondition
return paymentGatewayCondition.or(payment.paymentGateway.eq(PaymentGateway.POINT_CLICK_AD))
}
}