@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
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) { }
Crypto Rate Paid Due Address
@payment.CryptoCode @payment.Rate @payment.Paid @payment.Due @payment.Address

Payments

@foreach(var payment in Model.Payments) { }
Crypto Date Deposit address Transaction Id Confirmations Replaced
@payment.CryptoCode @payment.ReceivedTime @payment.DepositAddress @payment.TransactionId @payment.Confirmations @payment.Replaced

Addresses

@foreach(var address in Model.Addresses) { }
Crypto Address Current
@address.GetCryptoCode() @address.GetAddress() @(!address.UnAssigned.HasValue)

Events

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