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

This commit is contained in:
2023-10-27 22:41:38 +09:00
parent 8017e837ef
commit 899bc076a3

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))
}
}