Views

class vendor.views.OrderHistoryDetailView(**kwargs)[source]

Details of an invoice generated by the current user on the current site.

model

alias of Invoice

slug_field = 'uuid'
slug_url_kwarg = 'uuid'
template_name = 'vendor/invoice_history_detail.html'
class vendor.views.OrderHistoryListView(**kwargs)[source]

List of all the invoices generated by the current user on the current site.

get_queryset()[source]

Return the list of items for this view.

The return value must be an iterable and may be an instance of QuerySet in which case QuerySet specific behavior will be enabled.

model

alias of Invoice