Show number order in order detail and order history

This is a forum to suggest new features for mojoPortal. 

This thread is closed to new posts. You must sign in to post in the forums.
10/9/2015 2:34:04 PM
Gravatar
Total Posts 537
feet planted firmly on the ground

Show number order in order detail and order history

The number of an item purchased is not displayed in my web store, either on the /WebStore/AdminOrderDetail.aspx or on the order history on /Admin/ManageUsers.aspx

This makes it very easy to miss that a customer has purchased more than one of an item. This seems such an obvious omission that I am wondering where there is some config or theme.skin setting that would make this visible, but I've checked https://www.mojoportal.com/webstore-display-settings and not seen anything.

Can this be displayed? 

10/11/2015 1:02:03 PM
Gravatar
Total Posts 18439

Re: Show number order in order detail and order history

WebStore was built to meet my needs and then I shared it with others but not much improved or changed over time and is no longer actively developed.

You could edit AdminOrderDetail.aspx and OrderDetail.aspx.

In the repeater where you see

<%# Eval("Name") %>

you could also add

<%# Eval("Quantity") %>

before or after that along with any label or formatting you want.

However that quantity comes from the ws_OrderOffer table and is the quantity of that specific offer in the order, so it won't in all cases correspond to the number of a specific product in an order. Offers may contain 1 or more of a specific product but it would still be 1 offer. So an offer that includes 5 t-shirts won't say 5, it will say 1 because that available quantity field is about how many of that offer are in the order.

If your offers generally have 1 qty of 1 product per offer then displaying that available Quantity field might do what you want. But it won't work correctly in every scenario which is why it was not included.

You must sign in to post in the forums. This thread is closed to new posts.