NetSuite从销售订单创建转移订单

时间:2019-01-09 17:25:42

标签: netsuite suitescript suitescript2.0

我正在尝试编写一个脚本,该脚本将从销售订单中创建一个新的转储订单,并复制流程中的所有行。我已经编写了脚本,但是却收到一个未定义“定义”的错误。该脚本是从另一个脚本修改而来的,因此有可能我错过了一些东西。我是脚本的新手,所以我将不胜感激,希望能提供任何帮助,并且即使批评是完全的垃圾,也可以毫无批评地这样做。

/**
***************** ALEM ********************
* After Submit User Event script running on Sales Orders. Generates a TO.

*   Version    Date            Author           Remarks
*   1.0         9 Jan          madams          Initial Create
*/

/**
* @NApiVersion 2.0
* @NScriptType UserEventScript
* @NModuleScope Public
*
*/

define(['N/record',], function (record) {
  function afterSubmit(context) {
    if(context.type == 'delete'){
        log.debug('Exiting script', '...');
        return;
    }
    try{
    var so = record.load({
        type:'salesorder',
        id:context.newRecord.id
    });
    var so_items = so.getLineCount({sublistId:'item'});


    // Create new Transfer Order if Record is On Create.
     var to_record = record.create({
        type:'transferorder',
        isDynamic:true
    });

    to_record.setValue({fieldId:'customform', value:136});
    to_record.setValue({fieldId:'class', value:so.getValue('class')});
    to_record.setValue({fieldId:'transferlocation', 
value:so.getValue('location')});

    setLineItemsOnTO(so_items, to_record, so);

    to_record.setValue({fieldId:'custbody_related_record', 
value:context.newRecord.id});
    so.setValue({fieldId:'custbody_related_record', 
value:to_record.save()});
    so.setValue({fieldId:'orderstatus',value:'B'});
    so.save({ignoreMandatoryFields:true});
    } catch(e){
        log.debug('Error Loading Record' + context.newRecord.id, e);
        return;
    }

}
return {
    afterSubmit: afterSubmit
}

function setLineItemsOnTO(so_items, to_record, so){
     for(var i=0; i<so_items; i++){
        to_record.selectNewLine({sublistId:'item'});
        to_record.setCurrentSublistValue({
            sublistId:'item',
            fieldId:'item',
            value:so.getSublistValue({
                sublistId:'item',
                fieldId:'item',
                line:i
            })
        });
        to_record.setCurrentSublistValue({
            sublistId:'item',
            fieldId:'quantity',
            value:so.getSublistValue({
                sublistId:'item',
                fieldId:'quantity',
                line:i
            })
        });
        to_record.commitLine({sublistId:'item'});
    }
}

});

1 个答案:

答案 0 :(得分:1)

NetSuite是否将脚本导入为SuiteScript 2.0?它可能将脚本导入为SS1.0。

包含@NApiVersion 2.0的注释块必须是文件中的第一个注释块。 NetSuite仅在文件顶部查找该块以标识SS2.0脚本。