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.
User event before submit script not working correctly on e-commerce orders
Good morning,
I've created a basic script that totals up a column field from all lines on an order and populates a body field with that total. The script works great through the UI, but when an order comes through our EDI integration with SPS it always loads the field with a zero. The body field starts off blank so it appears that the script is triggering, but is not totaling. Any help you ladies and gents can offer would be greatly appreciated.
Chris
function saveRecord(type){ var lines = nlapiGetLineItemCount('item'); var totalFeet = 0 ; for(var i=1; i< lines+1 ; i++){ var feet = nlapiGetLineItemValue('item', 'custcol_ltr_ite_cube_feet', i); var quantity = nlapiGetLineItemValue('item', 'quantity', i); var feetTimesQuantity = feet * quantity; totalFeet = totalFeet + feetTimesQuantity ; } nlapiSetFieldValue('custbody_ltr_total_cube_ft', totalFeet); return true; }