콘텐츠 대여 가격 - 소장 가격의 60%로 변경
This commit is contained in:
parent
7bb7e92137
commit
29c9460362
|
@ -42,7 +42,7 @@ data class Order(
|
||||||
var audioContent: AudioContent? = null
|
var audioContent: AudioContent? = null
|
||||||
set(value) {
|
set(value) {
|
||||||
can = if (type == OrderType.RENTAL) {
|
can = if (type == OrderType.RENTAL) {
|
||||||
ceil(value?.price!! * 0.7).toInt()
|
ceil(value?.price!! * 0.6).toInt()
|
||||||
} else {
|
} else {
|
||||||
value?.price!!
|
value?.price!!
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue