Guest User

Untitled

a guest
Jan 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. <head>
  2. <style type="text/css" media="print">
  3. @page {
  4. margin-top: 5.0cm;
  5. margin-left: 1.0cm;
  6. margin-bottom: 30px;
  7. margin-right: 1.0cm;
  8.  
  9.  
  10. @top-center {
  11. content: element(header);
  12. }
  13. @bottom-left {
  14. content: element(footer);
  15. }
  16. }
  17. div.header {
  18. position: running(header);
  19.  
  20. }
  21. div.footer{
  22.  
  23. page-break-after:avoid;
  24. page-break-inside:avoid;
  25. position: running(footer);
  26. }
  27.  
  28.  
  29. #table1{
  30. border-collapse: collapse;
  31.  
  32. }
  33. #table1 td{
  34. border:1px solid black;
  35. padding:5px;
  36. }
  37.  
  38.  
  39.  
  40. </style>
  41. </head>
  42.  
  43. <body class="start">
  44.  
  45. <div class="footer">
  46. <table width="100%">
  47. <tr>
  48. <td align="center">550 Albion Ave Unit 30, Schaumburg, IL 60193 |
  49. 800-834-8125 | Fax: 630-708-7651 | www.shopcraftracks.com</td>
  50. </tr>
  51. </table>
  52. </div>
  53.  
  54.  
  55. <div>
  56. <apex:variable var="count" value="{!0}" />
  57. <table id="table1" width="100%">
  58. <tr id="hrow1">
  59. <td align="center" width="27%" ><b>Item</b></td>
  60. <td align="center" width="40%"><b>Description</b></td>
  61. <td align="center" width="8%"><b>Qty</b></td>
  62. <td align="center" width="10%"><b>Cost</b></td>
  63. <td align="center" width="15%"><b>Total</b></td>
  64. </tr>
  65. <apex:repeat value="{!Quote.QuoteLineItems}" var="line" >
  66. <tr>
  67. <td><b><apex:outputText value="{!line.Product2.Name}"/></b></td>
  68. <td><apex:outputText value="{!line.Line_Item_Description__c}" escape="false"/></td>
  69. <td><apex:outputField value="{!line.Quantity}"/></td>
  70. <td > <apex:outputText value="{0, number, ###,###,###,##0.00}"> <apex:param value="{!line.UnitPrice}" /> </apex:outputText></td>
  71. <td> <b> <apex:outputText value="{0, number, ###,###,###,##0.00}"> <apex:param value="{!line.TotalPrice}" /> </apex:outputText> </b></td>
  72. </tr>
  73. <apex:variable var="count" value="{!count+1}"/>
  74. </apex:repeat>
  75. <tr style="page-break-inside:avoid;">
  76. <td colspan="6" style="border-top:none;" >&nbsp; </td>
  77. </tr>
  78. </table>
  79.  
  80. <table width="100%" style="border-collapse: collapse;page-break-inside:avoid;page-break-after:auto;">
  81. <tr>
  82. <td colspan="2">{!Quote.Customer_Message__c}</td>
  83. <td colspan="2" align="right" ><b> Total:</b></td>
  84. <td align="right"><b><apex:outputField value="{!Quote.TotalPrice}"/></b></td>
  85.  
  86. </tr>
  87. </table>
  88.  
  89. </div>
  90. </body>
Add Comment
Please, Sign In to add comment