@model InvoiceDetailsModel @{ ViewData["Title"] = "Invoice " + Model.Id; }
@Html.Partial("_StatusMessage", Model.StatusMessage)

@ViewData["Title"]


Invoice details

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

@foreach(var payment in Model.CryptoPayments) { }
Payment method Address Rate Paid Due
@payment.PaymentMethod @payment.Address @payment.Rate @payment.Paid @payment.Due

Payments

@foreach(var payment in Model.Payments) { var replaced = payment.Replaced ? "text-decoration: line-through;" : ""; }
Payment method Deposit address Transaction Id Confirmations
@payment.PaymentMethod @payment.DepositAddress @payment.TransactionId @payment.Confirmations

Addresses

@foreach(var address in Model.Addresses) { var current = address.Current ? "font-weight: bold;" : ""; }
Payment method Address
@address.PaymentMethod @address.Destination

Events

@foreach(var evt in Model.Events) { }
Date Message
@evt.Timestamp @evt.Message