@if (TempData.HasStatusMessage())
{
}
@ViewData["Title"]
@if (Model.CanRefund)
{
Issue refund
}
else
{
}
Invoice Information
| Store |
@Model.StoreName |
| Invoice Id |
@Model.Id |
| Order Id |
@Model.TypedMetadata.OrderId |
| State |
@Model.State |
| Created date |
@Model.CreatedDate.ToBrowserDate() |
| Expiration date |
@Model.ExpirationDate.ToBrowserDate() |
| Monitoring date |
@Model.MonitoringDate.ToBrowserDate() |
| Transaction speed |
@Model.TransactionSpeed |
| Total fiat due |
@Model.Fiat |
@if (!string.IsNullOrEmpty(Model.RefundEmail))
{
| Refund email |
@Model.RefundEmail |
}
@if (!string.IsNullOrEmpty(Model.NotificationUrl))
{
| Notification Url |
@Model.NotificationUrl |
}
@if (!string.IsNullOrEmpty(Model.RedirectUrl))
{
| Redirect Url |
@Model.RedirectUrl |
}
Buyer Information
| Name |
@Model.TypedMetadata.BuyerName |
| Email |
@Model.TypedMetadata.BuyerEmail |
| Phone |
@Model.TypedMetadata.BuyerPhone |
| Address 1 |
@Model.TypedMetadata.BuyerAddress1 |
| Address 2 |
@Model.TypedMetadata.BuyerAddress2 |
| City |
@Model.TypedMetadata.BuyerCity |
| State |
@Model.TypedMetadata.BuyerState |
| Country |
@Model.TypedMetadata.BuyerCountry |
| Zip |
@Model.TypedMetadata.BuyerZip |
@if (Model.PosData.Count == 0)
{
Product Information
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemCode))
{
| Item code |
@Model.TypedMetadata.ItemCode |
}
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemDesc))
{
| Item Description |
@Model.TypedMetadata.ItemDesc |
}
| Price |
@Model.Fiat |
| Tax included |
@Model.TaxIncluded |
}
@if (Model.PosData.Count != 0)
{
Product information
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemCode))
{
| Item code |
@Model.TypedMetadata.ItemCode |
}
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemDesc))
{
| Item Description |
@Model.TypedMetadata.ItemDesc |
}
| Price |
@Model.Fiat |
| Tax included |
@Model.TaxIncluded |
}
@if (Model.Deliveries.Count != 0)
{
Webhook deliveries
@foreach (var delivery in Model.Deliveries)
{
-
}
}
Events
| Date |
Message |
@foreach (var evt in Model.Events)
{
| @evt.Timestamp.ToBrowserDate() |
@evt.Message |
}