Skip to content

Commit

Permalink
Merge pull request #148 from beyond-sw-camp/refactor/reservation/read…
Browse files Browse the repository at this point in the history
…Seat

[Refactor] 예매 조회 좌석 정보 불러오는 값 수정 #147
  • Loading branch information
yunseul-dev authored Aug 8, 2024
2 parents 5603c47 + fe9d694 commit 0c5ae4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Reservation readReservation(Reservation reservation) throws BaseException
.locationName(result.getProgramEntity().getLocationEntity().getLocationName())
.name(result.getUser().getName())
.seatInfo(
result.getSeatEntity().getRow()+"구역 " +result.getSeatEntity().getSectionEntity().getColumnCount()+"열 "+result.getSeatEntity().getSeatNumber()+"번")
result.getSeatEntity().getSectionEntity().getSectionName()+"구역 "+result.getSeatEntity().getRow()+"열 "+result.getSeatEntity().getSeatNumber()+"번")
.totalPrice(result.getTotalPrice())
.gradeName(result.getSeatEntity().getSectionEntity().getGradeEntity().getGradeName())
.status(result.getStatus())
Expand Down

0 comments on commit 0c5ae4c

Please sign in to comment.