Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Last active August 31, 2018 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iloveitaly/3ddb25a64823b47f282167152fa9b379 to your computer and use it in GitHub Desktop.
Save iloveitaly/3ddb25a64823b47f282167152fa9b379 to your computer and use it in GitHub Desktop.
/*
Author: <mike@suitesync.io>
Description: Creates a sales order using an invoice beforeSubmit call
Link: https://gist.github.com/iloveitaly/3ddb25a64823b47f282167152fa9b379
Installation:
1. https://system.sandbox.netsuite.com/app/common/scripting/uploadScriptFile.nl
If you are debugging: https://debugger.netsuite.com/app/common/scripting/uploadScriptFile.nl
create_sales_order_from_invoice.js
2. User Event
3. Name: Create SalesOrder for Invoice
4. ID: _create_so_for_invoice
5. Befire Submit: beforeSubmit
6. Deployments: Invoice. Event Type: Create. Ensure accessible to all roles and executes as admin.
https://netsuite.custhelp.com/app/answers/detail/a_id/33506/kw/createdfrom%20invoice%20salesorder/related/1
"An invoice can be created in the UI from a sales order by clicking the Bill button or by script through the usage of nlapiTransformRecord. In both cases the Created From field maintains the link to the sales order from which the invoice was created, only if at least one of the initially present line items is still present when the record is submitted.
If after creating the invoice from the sales order and before submitting the invoice all line items are removed and new ones are added, then the Created From field is not populated with the reference to the original sales order.
For example, the following snippet creates an invoice linked through the Created From field to the sales order:"
*/
function log(msg) {
nlapiLogExecution('DEBUG', msg);
}
function isWebServicesContext() {
var context = nlapiGetContext();
var executionContext = context.getExecutionContext();
return executionContext == 'webservices';
}
var LINE_ITEM_GROUP_NAME = 'item';
function beforeSubmit(type) {
if(isWebServicesContext() && type == 'create') {
processBeforeSubmit();
}
}
function processBeforeSubmit() {
var customerId = nlapiGetFieldValue('entity');
var salesOrderId = copyInvoiceToSalesOrder(customerId);
var salesOrder = nlapiLoadRecord('salesorder', salesOrderId);
log("created sales order: " + salesOrderId)
// https://debugger.netsuite.com/app/accounting/transactions/salesord.nl?id=15318
// https://system.netsuite.com/app/accounting/transactions/custinvc.nl?id=15328
// https://debugger.netsuite.com/app/accounting/transactions/custinvc.nl?id=15328
// NOTE we can use the invoice line item count since it should match the sales order
var lineItemCount = parseInt(salesOrder.getLineItemCount('item'));
for(var i = 1; i <= lineItemCount; i++) {
nlapiSelectLineItem(LINE_ITEM_GROUP_NAME, i);
nlapiSetCurrentLineItemValue(LINE_ITEM_GROUP_NAME, 'itemisfulfilled', 'T', false)
nlapiSetCurrentLineItemValue(LINE_ITEM_GROUP_NAME, 'orderdoc', salesOrderId, false)
// NOTE `orderline` is not always a sequentially increasing value; this needs to be pulled directly from the line on the SO
nlapiSetCurrentLineItemValue(LINE_ITEM_GROUP_NAME, 'orderline', salesOrder.getLineItemValue(LINE_ITEM_GROUP_NAME, 'line', i), false)
nlapiCommitLineItem(LINE_ITEM_GROUP_NAME)
}
}
// https://stackoverflow.com/questions/46082297/creating-a-sales-order-with-an-item-using-netsuite-suitescript?rq=1
function copyInvoiceToSalesOrder(customerId) {
var salesOrder = nlapiCreateRecord('salesorder', {
entity: customerId
})
salesOrder.setFieldValue('memo', "SalesOrder generated from invoice: " + nlapiGetFieldValue('externalid'))
var invoiceLineItemCount = parseInt(nlapiGetLineItemCount(LINE_ITEM_GROUP_NAME));
// NOTE depending on the required fields on your account you may need to adjust the required fields here
var fieldsToCopy = ["item", "quantity", "amount", "taxcode", "shipmethod"];
log("creating sales order for invoice with line item count: " + invoiceLineItemCount)
for(var i = 1; i <= invoiceLineItemCount; i++) {
nlapiSelectLineItem(LINE_ITEM_GROUP_NAME, i);
log("adding line item to sales order: " + nlapiGetCurrentLineItemValue(LINE_ITEM_GROUP_NAME, 'item'))
salesOrder.selectNewLineItem(LINE_ITEM_GROUP_NAME);
for(var fieldIndex in fieldsToCopy) {
salesOrder.setCurrentLineItemValue(LINE_ITEM_GROUP_NAME, fieldsToCopy[fieldIndex], nlapiGetCurrentLineItemValue(LINE_ITEM_GROUP_NAME, fieldsToCopy[fieldIndex]))
}
salesOrder.commitLineItem(LINE_ITEM_GROUP_NAME)
}
var salesOrderId = nlapiSubmitRecord(salesOrder);
return salesOrderId;
}
if(nlapiGetContext().getExecutionContext() == 'debugger') {
var exampleInvoiceID = 14707;
var customerId = nlapiLookupField('invoice', exampleInvoiceID, 'entity');
var salesOrderId = copyInvoiceToSalesOrder(customerId);
}
'debug';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment