@model InvoicesModel
@{
ViewData["Title"] = "Invoices";
}
Create, search or pay an invoice. (Help)
You can search for invoice Id, deposit address, price, order id, store id, any buyer information and any product information.
If you want two confirmed and complete invoices, duplicate the filter: `status:confirmed status:complete`.
@ViewData["Title"]
You can also apply filters to your search by searching for `filtername:value`, here is a list of supported filters
@if(Model.Skip != 0)
{
<< -
}
>>
@foreach(var invoice in Model.Invoices)
{
Date
OrderId
InvoiceId
Status
Amount
Actions
}
@invoice.Date
@if(invoice.RedirectUrl != string.Empty)
{
@invoice.OrderId
}
else
{
@invoice.OrderId
}
@invoice.InvoiceId
@if(invoice.Status == "paid")
{
}
else
{
@invoice.Status
}
@invoice.AmountCurrency
@if(invoice.Status == "new")
{
Checkout -
}Details