NTP-1234 | Shivam | Arc Fixes (#14797)
Co-authored-by: navi-android[bot] <194247829+navi-android[bot]@users.noreply.github.com>
This commit is contained in:
@@ -223,6 +223,9 @@ object OrderBbpsUtils {
|
||||
if (orderEntity == null) {
|
||||
return null
|
||||
}
|
||||
if (orderEntity.paymentStatus.isFailed()) {
|
||||
return null
|
||||
}
|
||||
if (!orderEntity.orderStatusOfView.isPending().orTrue()) {
|
||||
return null
|
||||
}
|
||||
|
||||
@@ -162,7 +162,8 @@ internal fun PaymentStatusSection(
|
||||
orderEntity?.orderDetails?.coinEquivalentCash?.getDisplayableAmount(),
|
||||
coinsSavedMessage = coinsSavedMessage,
|
||||
coinsRefundMessage = coinsRefundMessage,
|
||||
coinsUsed = orderEntity?.orderDetails?.coinsUsed.orEmpty(),
|
||||
coinsUsed =
|
||||
orderEntity?.orderDetails?.coinsUsed?.getDisplayableAmount().orEmpty(),
|
||||
paymentStatus = orderEntity?.paymentStatus,
|
||||
)
|
||||
}
|
||||
|
||||
@@ -328,7 +328,7 @@ fun RenderOrderHistoryItemView(
|
||||
)
|
||||
}
|
||||
NaviText(
|
||||
text = coinsUsed,
|
||||
text = coinsUsed.getDisplayableAmount(),
|
||||
fontFamily = naviFontFamily,
|
||||
fontSize = 12.sp,
|
||||
lineHeight = 16.sp,
|
||||
|
||||
Reference in New Issue
Block a user