Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Onepage Checkout Item
I'm working with the Beta Reference Cart and one Page Checkout and struggling with something.
I have one item in my cart.
in my custom .ss code I have :
var order = nlapiGetWebContainer().getShoppingSession().getOrder();
var items= order.getItems();
nlapiLogExecution( 'DEBUG', 'NeilS Message', items.length);
This outputs as expected = 1;
var itemfields = items[0].getFieldValues();
nlapiLogExecution( 'DEBUG', 'NeilS Message', itemfields.length);
This causes a problem, I see a "TypeError: Cannot find default value for object. (myss.ss#40)"
I've tried itemFields.getFieldValues(); too to no avail.