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.
Be sure to split your search parameters with comma, for example: startdate:2019-04-25 13:00:00, status:paid
You can also apply filters to your search by searching for filtername:value
, here is a list of supported filters
storeid:id
for filtering a specific storeorderid:id
for filtering a specific orderitemcode:code
for filtering a specific type of item purchased through the pos or crowdfund appsstatus:(expired|invalid|complete|confirmed|paid|new)
for filtering a specific statusexceptionstatus:(paidover|paidlate|paidpartial)
for filtering a specific exception stateunusual:(true|false)
for filtering invoices which might requires merchant attention (those invalid or with an exceptionstatus)startdate:yyyy-MM-dd HH:mm:ss
getting invoices that were created after certain dateenddate:yyyy-MM-dd HH:mm:ss
getting invoices that were created before certain date
If you want all confirmed and complete invoices, you can duplicate a filter status:confirmed, status:complete
.
Date | OrderId | InvoiceId | Status | Amount | Actions |
---|---|---|---|---|---|
@invoice.Date.ToBrowserDate() | @if (invoice.RedirectUrl != string.Empty) { @invoice.OrderId } else { @invoice.OrderId } | @invoice.InvoiceId |
@if (invoice.CanMarkStatus)
{
@invoice.StatusString
}
else
{
@invoice.StatusString
}
|
@invoice.AmountCurrency | @if (invoice.ShowCheckout) { Checkout [^] @if (!invoice.CanMarkStatus) { - } } Details @**@ |