@if (isProcessing)
{
}
@if (isProcessing)
{
This page will refresh periodically until the invoice is settled.
}
else if (isSettled)
{
if (Model.Payments?.Any() is true)
{
The invoice has detected a payment but is still waiting to be settled.
}
else if (!isSettled)
{
The invoice is not settled.
}
else
{
if (Model.ReceiptOptions.ShowQR is true)
{
- Amount Paid
- @CurrencyNameTable.DisplayFormatCurrency(Model.Amount, Model.Currency)
- Date
- @Model.Timestamp.ToBrowserDate()
- Order ID
- @if (!string.IsNullOrEmpty(Model.OrderUrl)) { @if (string.IsNullOrEmpty(Model.OrderId)) { View Order } else { @Model.OrderId } } else { @Model.OrderId }
Payment Details
Destination | Received | Paid | Rate | Payment |
---|---|---|---|---|
@payment.Destination
|
@payment.ReceivedDate.ToString("g") | @payment.PaidFormatted | @payment.RateFormatted | @payment.Amount @payment.PaymentMethod |
Transaction Id: @if (!string.IsNullOrEmpty(payment.Link)) { @payment.Id } else { @payment.Id } |