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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
What is the alternative solution since getCart is deprecated?
I have scripts running in the SuiteCommerce user's browser that need to see what the subtotal is on each page of the checkout, so that it can overwrite the Total displayed on the screen after adding the full truckload freight cost (something we had to do ourselves in a suitelet because NetSuite doesn't support freight that isn't a parcel service as far as I know). The total is the subtotal + the calculated full truckload freight cost.
Every call to getCart throws a warning: "getCart() is deprecated!" but there is no documentation I can find on what to use instead.
I have tried using SC.ENVIRONMENT.CART, but this does not update reliably, whereas, getCart does. I cannot use an unreliable variable or many customers will be told the wrong amount, different from what they end up with when the same calculation showing the predicted price is applied in the scriptable cart UserEvent script on beforeSubmit, to add the freight cost as another line item (that part works fine).