Compare commits

...

2 Commits

Author SHA1 Message Date
klaus 3a34401113 Merge pull request '시리즈 상세' (#169) from test into main
Reviewed-on: #169
2024-04-30 09:44:55 +00:00
Klaus 2acf723c86 시리즈 상세
- 대여가격 70% -> 60%로 수정
2024-04-30 18:39:08 +09:00
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)