如何将pdf从触发器附加到对象



我有点迷失了尝试从机会记录中附加一个包含填充值的pdf这是代码:

触发器

trigger OpportunityTrigger on Opportunity (after insert)
if(trigger.isAfter && trigger.isUpdate) {
opportunityTriggerHelper.attachFileToOpportunityRecord(trigger.new);
}

助手类

private void attachFileToOpportunityRecord(List<Opportunity> lstOpp) {
List<Id> oppListIdsForAttach = new List<Id>();
for(Opportunity opp : lstOpp) {
oppListIdsForAttach .add(opp.Id);
}
attachFileToOpportunities(oppListIdsForAttach);
}
@future(callout=true)
private static void attachFileToOppotunities(List<Id> OpportunityIds) {
List<Attachment> attachList = new List<Attachment>();
for(Id oppId : opportunityIds) {
OpportunityPdfController file = new OpportunityPdfController();
file.getData(oppId);
PageReference pdfPage = Page.PdfAttachmentForOpp;
blob pdfBody;
pdfBody = pdfPage.getContent();
Attachment attach = new Attachment();
attach.Body = pdfBody;
attach.Name = 'Pdf file';
attach.IsPrivate = false;
attach.ParenId = oppId;
attachList.add(attach);
}
insert attachList;
}

VF页面:

<apex:page controller="OpportunityPdfController" renderAs="pdf">
<apex:repeat value="{!pricingDetails}" var="pd">
<apex:outputText>{!pd.basePrice}</apex:outputText>
</apex:repeat>
</apex:page>

VF页面控制器:

public with sharing class OpportunityPdfController {
public List<PricingDetailWrapper> pricingDetails {get;set;}
public void getData(Id opportunityId) {
List<Pricing_Detail__c> pdList = [
SELECT basePrice
FROM Pricing_Detail__c
WHERE OpportunityId =: opportunityId
];

for(Pricing_Detail__c pd : pdList) {
PricingDetailWrapper pdw = new PricingDetailWrapper();
pdw.basePrice = pd.basePrice;

pricingDetails.add(pdw);
}
}
public class PricingDetailWrapper {
public String basePrice {get;set;}
}
}

结果是,每当我更新一个机会时,它都会附加相应的pdf文件,但它是空白的,例如,如果我将以下内容添加到vf页面主体:"<h1> hello World!</h1>",它会按预期工作和显示,但这并没有发生在我上面要求的情况下。

您并没有真正将机会id传递给VF页面。我怀疑这真的有效吗?如果您以/apex/PdfAttachmentForOpp?id=006...的身份手动访问VF页面,它会使内容正常吗?我想不会。

修复页面

您并没有指定构造函数,所以SF会为您生成一个构造函数。我想你需要添加一些类似的东西

public OpportunityPdfController(){
if(ApexPages.currentPage() != null){
Id oppId = ApexPages.currentPage().getParameters().get('id');
System.debug(oppId);
getData(oppId);
}
}

添加这个,尝试访问传递有效opp id的页面,看看它是否正常,调试日志中是否显示了正确的内容。/apex/PdfAttachmentForOpp?id=006...

(VF页面构造函数是更大的主题,使用标准控制器+扩展类可能会更简单(

修复调出

VF页面(特别是作为callout访问(将不会与您在代码中创建的OpportunityPdfController控制器共享内存。此类的新对象将被创建以支持该页面,并且您的file将被忽略。你可能会尝试用一些静态变量来保持当前机会的id,但这感觉有点恶心。

在正常情况下,如果返回正确的pdf:,请执行匿名尝试

PageReference pdfPage = Page.PdfAttachmentForOpp;
pdfPage.getParameters().put('id', '006...');
Blob pdfBody = pdfPage.getContent();
System.debug(pdfBody.toString());

如果有效-在实际代码中使用类似的技巧,将id作为url参数传递。

相关内容

  • 没有找到相关文章

最新更新