Controller that manages the order history of a registered user.
Members
(static) History
Renders a page with the order history of the current logged in customer.
- Source:
- See:
(static) Orders
Renders the order detail page.
- Source:
- See:
(static) Track
Renders a page with details of a single order.
- Source:
- See:
Methods
(inner) history()
Renders a page with the order history of the current logged in customer.
Creates a PagingModel for the orders with information from the httpParameterMap. Invalidates and clears the orders.orderlist form. Updates the page metadata. Sets the ContinueURL property to Order-Orders and renders the order history page (account/orderhistory/orders template).
(inner) orders()
Gets an OrderView and renders the order detail page (account/orderhistory/orderdetails template). If there is an error, redirects to the history function.
(inner) track()
Renders a page with details of a single order. This function renders the order details by the UUID of the order, therefore it can also be used for unregistered customers to track the status of their orders. It renders the order details page (account/orderhistory/orderdetails template), even if the order cannot be found.