show some info when a refund get the originated purchase deleted
This commit is contained in:
parent
434bb4af25
commit
5fb13fae24
@ -92,8 +92,12 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
|
|||||||
id={tx.transactionId}
|
id={tx.transactionId}
|
||||||
amount={tx.amountEffective}
|
amount={tx.amountEffective}
|
||||||
debitCreditIndicator={"credit"}
|
debitCreditIndicator={"credit"}
|
||||||
subtitle={"tx.info.summary"} //FIXME: DD37 wallet-core is not returning this value
|
subtitle={tx.paymentInfo ? tx.paymentInfo.summary : undefined} //FIXME: DD37 wallet-core is not returning this value
|
||||||
title={"tx.info.merchant.name"} //FIXME: DD37 wallet-core is not returning this value
|
title={
|
||||||
|
tx.paymentInfo
|
||||||
|
? tx.paymentInfo.merchant.name
|
||||||
|
: "--unknown merchant--"
|
||||||
|
} //FIXME: DD37 wallet-core is not returning this value
|
||||||
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
|
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
|
||||||
iconPath={"R"}
|
iconPath={"R"}
|
||||||
pending={
|
pending={
|
||||||
|
Loading…
Reference in New Issue
Block a user