我已经创建了一个saveRecord函数的客户端脚本,该脚本在单击“提交”按钮时在新窗口中打开一个套件。但是后台记录没有保存
function saveRecord(context)
{
var Serialitems=[];
var currentRecord = context.currentRecord;
if(Serialitems == '' || Serialitems == null)
{}
else
{
log.debug({ title: S_TITLE, details: 'Success' });
var nUrl = url.resolveScript({
scriptId: 'customscript_item_fulfillment_su',
deploymentId: 'customdeploy_item_fulfillment_su',
returnExternalUrl: false,
params: { 'recordId': nRecId }
});
window.open(nUrl, "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=40,left=105,width=700,height=600");
return true;
}
单击“提交”后,随即打开套件,但将在编辑模式下保留项目完成的记录。我想保存该记录并打开套件。