Skip to content

Instantly share code, notes, and snippets.

View SeemaKurawale111's full-sized avatar

Seema Kurawale SeemaKurawale111

View GitHub Profile
@SeemaKurawale111
SeemaKurawale111 / Pdf_of_Attachment
Last active December 2, 2016 09:00
Generate PDF attachment of opprtunity details
<apex:page standardController="Opportunity" extensions="Pdf_of_Attachment_Extension" renderAs="pdf">
<apex:pageBlock >
<apex:pageBlockSection columns="1" >
<apex:pageBlockSectionItem >Opportunity Name: {!Opportunity.Name} </apex:pageBlockSectionItem>
<apex:pageBlockSectionItem >CloseDate : {!Opportunity.CloseDate} </apex:pageBlockSectionItem>
<apex:pageBlockSectionItem >StageName : {!Opportunity.StageName} </apex:pageBlockSectionItem>
<apex:pageBlockSectionItem >Probability : {!Opportunity.Probability} </apex:pageBlockSectionItem>
</apex:pageBlockSection>
<apex:repeat var="attachment" value="{!attachments}">
<apex:image url="/servlet/servlet.FileDownload?file={!attachment.Id}"/><br></br>