test #324

Merged
klaus merged 8 commits from test into main 2025-06-10 11:01:32 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit dcd4497315 - Show all commits

View File

@ -63,11 +63,11 @@ class PointGrantLogQueryRepositoryImpl(
QGetPointRewardStatusResponse(
pointGrantLog.point.stringValue().concat(" 포인트"),
formattedDate,
pointRewardPolicy.title
pointRewardPolicy.title.coalesce(pointGrantLog.couponName)
)
)
.from(pointGrantLog)
.innerJoin(pointRewardPolicy).on(pointGrantLog.policyId.eq(pointRewardPolicy.id))
.leftJoin(pointRewardPolicy).on(pointGrantLog.policyId.eq(pointRewardPolicy.id))
.where(pointGrantLog.memberId.eq(memberId))
.orderBy(pointGrantLog.id.desc())
.fetch()