我的代码:
function combineExpenseFiles(type){
try{
var currentRecordId = nlapiGetRecordId();
var currentRecord = nlapiLoadRecord('expensereport',currentRecordId);
var expensesLineItemCount = currentRecord.getLineItemCount('expense');
var template = '';
var fileParts = new Array();
template += '<?xml version="1.0"?><!DOCTYPE pdf PUBLIC "-//big.faceless.org//report" "report-1.1.dtd">\n';
template += '<pdf>\n<head>\n';
template += '</head>\n<body>\n';
flag=1;
for(var i=1;i<=expensesLineItemCount;i++){
var fileId = currentRecord.getLineItemValue('expense','expmediaitem',i);
var file = nlapiLoadFile(fileId);
var name = file.getName();
//var fileUrl = file.getURL();
nlapiLogExecution('DEBUG','online',file.isOnline());
var fileUrl = '/core/media/media.nl?id=36333&c=3960047&h=487697f81e113499d5f4';
template += '<img src="';
template += nlapiEscapeXML(fileUrl);
template += '" width="10%" height="10%"></img>\n<br></br><br></br>';
break;
}
template += '</body>\n</pdf>';
nlapiLogExecution('DEBUG','filename',template);
var renderer = nlapiCreateTemplateRenderer();
renderer.setTemplate(template);
//renderer.addRecord('url',url);
var xml = renderer.renderToString();
nlapiLogExecution('DEBUG','xml',xml);
var combinefile = nlapiXMLToPDF(xml);
combinefile.setEncoding('UTF-8');
combinefile.setName('expense_f.pdf');
nlapiLogExecution('DEBUG','file',combinefile);
combinefile.setFolder(2221); // Amit_Expenses
nlapiSubmitFile(combinefile);
}catch(error){
//nlapiLogExecution('DEBUG','error1',error.getDetails());
nlapiLogExecution('DEBUG','error',error.toString());
}
}
这段代码正在做什么,它需要所有&#39; jpeg&#39;与费用相关的文件和包含所有文件的创建模板,并生成包含所有图像的.pdf文件。代码工作正常。
目前我已将文件url硬编码用于测试目的。
问题是代码无法引用某些文件夹的图像。 就像我推荐员工个人资料图片一样,它引用了他们,但是对于某些文件夹,代码无法引用这些文件夹的图像。
我检查过这些文件夹不是私密的。请建议
答案 0 :(得分:1)
根据我的经验,我必须在我需要在PDF中呈现的任何图像上设置“无需登录”。我无法解释为什么会有更深层次的原因。我只能告诉你我是如何解决这个问题的。
我认为它与NetSuite实现XML到PDF生成器的方式有关。它似乎不在主脚本的相同上下文中运行。但就像我上面所说,我不确定为什么。
希望您觉得这很有帮助。