We want to create a page/module that will let the users view the 'order summary' after entering the order id + email address.
The page will part of shopping app and the url will be something like this:
www.mywebsite.com/guestordersummary
We are using the 'GuestOrderStatus' suite solution which returns 'Order Status'
We need to display the following fields:
- Sub Total
- Shipping cost
- Tax
- Grand total
The 'ordersummary' object has the above information https://netsuite.custhelp.com/app/answers/detail/a_id/27519/kw/ORDERSUMMARY
The 'getOrderSummary' method returns this object but it is only available through the getShoppingSession()
eg: nlapiGetWebContainer().getShoppingSession().getOrder().getOrdeSummary(['itemcount']);
How do we enable access to the service 'GuestOrderStatus.Service.ss' to non logged-in user?