Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <head>
  2. <link href="{! $Resource.advancedpdfresource }" rel="stylesheet" type="text/css"/>
  3. </head>
  4.  
  5. <div class="title">RFQ Information {!Quote.Name}</div>
  6.  
  7. <h1>General Inforamtion</h1>
  8. <table class="detailList" border="0" cellpadding="0" cellspacing="0" width="100%">
  9. <tr width="100%">
  10. <td class="labelCol">Customer Name</td>
  11. <td class="data2Col"><apex:outputField value="{!Quote.Name}"/></td>
  12. </tr>
  13. <tr>
  14. <td class="labelCol">Price</td>
  15. <td class="data2Col"><apex:outputField value="{!Quote.Totalprice}"/></td>
  16. </tr>
  17. <tr>
  18. <td class="labelCol">Subtotal</td>
  19. <td class="data2Col">{!Quote.Subtotal}</td>
  20. </tr>
  21. <tr>
  22. <td class="labelCol">BillingName</td>
  23. <td class="data2Col">{!Quote.BillingName}</td>
  24. </tr>
  25. <tr>
  26. <td class="labelCol">Opportunity Name</td>
  27. <td class="data2Col"><apex:outputField value="{!Quote.Opportunityid}"/></td>
  28. </tr>
  29. <!-- <tr>
  30. <td class="labelCol">Product</td>
  31. <td class="data2Col"><apex:outputField value="{!Quote.QuoteLineItems__c.Product2}"/></td>
  32. </tr>-->
  33. </table>
  34. <!--<p>This document was created {!Now}.</p>-->
  35.  
  36. <!-- Wrapper Class -->
  37. <h1>Student</h1>
  38. <table class="bordered">
  39. <thead>
  40. <tr>
  41. <th class="bordered">Studentname</th>
  42. <th class="bordered">StudentDOB</th>
  43. <th class="bordered">StudentSkills</th>
  44. <th class="bordered">StudentLocation</th>
  45. <th class="bordered">StudentResult</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. <apex:repeat value="{!Student}" var="std">
  50. <tr>
  51. <td class="bordered"><apex:outputText value="{!std.name}"/></td>
  52. <td class="bordered"><apex:outputText value="{!std.StudentDOB__c}"/></td>
  53. <td class="bordered"><apex:outputField value="{!std.StudentSkills__c}"/></td>
  54. <td class="bordered"><apex:outputField value="{!std.StudentLocation__c}"/></td>
  55. <td class="bordered"><apex:outputField value="{!std.StudentResult__c}"/></td>
  56. </tr>
  57. </apex:repeat>
  58. </tbody>
  59. </table>
  60.  
  61. public QuoteContentController(ApexPages.StandardController controller) {
  62.  
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement