Compare commits
No commits in common. "538d4288bba0a047f013fe976fbf8d91edab75a1" and "fbaa1aa14ce22a3d66ef6797cdb635d86fce8082" have entirely different histories.
538d4288bb
...
fbaa1aa14c
|
@ -111,10 +111,6 @@ class CanService(private val repository: CanRepository) {
|
||||||
"제휴보상"
|
"제휴보상"
|
||||||
}
|
}
|
||||||
|
|
||||||
ChargeStatus.COUPON -> {
|
|
||||||
it.payment!!.method ?: "쿠폰충전"
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
"환불"
|
"환불"
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,8 +55,6 @@ class ChargeService(
|
||||||
throw SodaException("이미 사용한 쿠폰번호 입니다.")
|
throw SodaException("이미 사용한 쿠폰번호 입니다.")
|
||||||
}
|
}
|
||||||
|
|
||||||
canCouponNumber.member = member
|
|
||||||
|
|
||||||
val coupon = canCouponNumber.canCoupon!!
|
val coupon = canCouponNumber.canCoupon!!
|
||||||
val couponCharge = Charge(0, coupon.can, status = ChargeStatus.COUPON)
|
val couponCharge = Charge(0, coupon.can, status = ChargeStatus.COUPON)
|
||||||
couponCharge.title = "${coupon.can} 캔"
|
couponCharge.title = "${coupon.can} 캔"
|
||||||
|
|
Loading…
Reference in New Issue