콘텐츠 대여 가격 - 소장 가격의 60%로 변경

This commit is contained in:
Klaus 2023-08-28 18:12:09 +09:00
parent 7bb7e92137
commit 29c9460362
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ data class Order(
var audioContent: AudioContent? = null
set(value) {
can = if (type == OrderType.RENTAL) {
ceil(value?.price!! * 0.7).toInt()
ceil(value?.price!! * 0.6).toInt()
} else {
value?.price!!
}