@Html.Partial("_StatusMessage", Model.StatusMessage)
Information
Store |
@Model.StoreName |
Id |
@Model.Id |
Created date |
@Model.CreatedDate |
Expiration date |
@Model.ExpirationDate |
Monitoring date |
@Model.MonitoringDate |
Transaction speed |
@Model.TransactionSpeed |
Status |
@Model.Status |
Status Exception |
@Model.StatusException |
Refund email |
@Model.RefundEmail |
Order Id |
@Model.OrderId |
Total fiat due |
@Model.Fiat |
Notification Url |
@Model.NotificationUrl |
Redirect Url |
@Model.RedirectUrl |
Buyer information
Name |
@Model.BuyerInformation.BuyerName |
Email |
@Model.BuyerInformation.BuyerEmail |
Phone |
@Model.BuyerInformation.BuyerPhone |
Address 1 |
@Model.BuyerInformation.BuyerAddress1 |
Address 2 |
@Model.BuyerInformation.BuyerAddress2 |
City |
@Model.BuyerInformation.BuyerCity |
State |
@Model.BuyerInformation.BuyerState |
Country |
@Model.BuyerInformation.BuyerCountry |
Zip |
@Model.BuyerInformation.BuyerZip |
Product information
Item code |
@Model.ProductInformation.ItemCode |
Item Description |
@Model.ProductInformation.ItemDesc |
Price |
@Model.ProductInformation.Price @Model.ProductInformation.Currency |
Paid summary
Payment method |
Address |
Rate |
Paid |
Due |
@foreach (var payment in Model.CryptoPayments)
{
@payment.PaymentMethod |
@payment.Address |
@payment.Rate |
@payment.Paid |
@payment.Due |
}
@if (Model.OnChainPayments.Count > 0)
{
On-Chain payments
Crypto |
Deposit address |
Transaction Id |
Confirmations |
@foreach (var payment in Model.OnChainPayments)
{
var replaced = payment.Replaced ? "class='linethrough'" : "";
@payment.Crypto |
@payment.DepositAddress |
@payment.TransactionId
|
@payment.Confirmations |
}
}
@if (Model.OffChainPayments.Count > 0)
{
Off-Chain payments
Crypto |
BOLT11 |
@foreach (var payment in Model.OffChainPayments)
{
@payment.Crypto |
@payment.BOLT11 |
}
}
Addresses
Payment method |
Address |
@foreach (var address in Model.Addresses)
{
var current = address.Current ? "font-weight-bold" : "";
@address.PaymentMethod |
@address.Destination |
}
Events
Date |
Message |
@foreach (var evt in Model.Events)
{
@evt.Timestamp |
@evt.Message |
}