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!
Invoice/Transaction Line Items Add
Below is my code, I have successfully added a new invoice transaction my only problem now is how to add a multiple line items on the invoice transaction.
Thanks.
'itemList' => array(
'item' => array(
'item' => array('internalId' => $itemIntId),
'quantity' => $quantity,
'line' => "1",
'item' => array('internalId' => '2942'),
'quantity' => $quantity,
'line' => "2")
)
);
Please disregard predefined values, I'm just testing first the adding of transactions.