Merge pull request '시리즈 상세' (#169) from test into main

Reviewed-on: #169
This commit is contained in:
klaus 2024-04-30 09:44:55 +00:00
commit 3a34401113
1 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ class ContentSeriesService(
val minMaxPrice = repository.getSeriesContentMinMaxPrice(seriesId = seriesId)
val minPrice = minMaxPrice.minPrice
val maxPrice = minMaxPrice.maxPrice
val rentalMinPrice = (minMaxPrice.minPrice * 0.7).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.7).toInt()
val rentalMinPrice = (minMaxPrice.minPrice * 0.6).toInt()
val rentalMaxPrice = (minMaxPrice.maxPrice * 0.6).toInt()
val seriesContentList = getSeriesContentList(seriesId = seriesId, member = member, offset = 0, limit = 5)