parent
346334a0ba
commit
839a8a780c
|
@ -59,14 +59,14 @@ class SeriesDetailIntroductionFragment : BaseFragment<FragmentSeriesDetailIntrod
|
||||||
"$rentalMaxPrice(15일)"
|
"$rentalMaxPrice(15일)"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
"$rentalMinPrice ~ ${rentalMaxPrice}캔 (15일)"
|
"${if (rentalMinPrice == 0) "무료" else rentalMinPrice} ~ ${rentalMaxPrice}캔 (15일)"
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.tvPrice.text = if (minPrice == maxPrice) {
|
binding.tvPrice.text = if (minPrice == maxPrice) {
|
||||||
if (maxPrice == 0) {
|
if (maxPrice == 0) {
|
||||||
"무료(15일)"
|
"무료"
|
||||||
} else {
|
} else {
|
||||||
"$maxPrice(15일)"
|
"$maxPrice"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
"${if (minPrice == 0) "무료" else minPrice} ~ ${maxPrice}캔"
|
"${if (minPrice == 0) "무료" else minPrice} ~ ${maxPrice}캔"
|
||||||
|
|
Loading…
Reference in New Issue