summaryrefslogtreecommitdiff
path: root/templates/demo/printPayment.html
blob: 5ace91df51dc53f8cda56834007d43e1a4d7018f (plain)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title><?lsmb titlebar ?></title>
  6. <meta http-equiv="Pragma" content="no-cache" />
  7. <meta http-equiv="Expires" content="-1" />
  8. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  9. <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" />
  10. <script language="JavaScript" src="UI/payments/javascript/maximize_minimize.js"></script>
  11. <meta http-equiv="content-type" content="text/html; charset=<?lsmb charset ?>" />
  12. <meta name="robots" content="noindex,nofollow" />
  13. </head>
  14. <body id="printPayment">
  15. <?lsmb PROCESS elements.html # Include form elements helper. ?>
  16. <?lsmb accountclass.type = 'hidden';
  17. INCLUDE input element_data=accountclass ?>
  18. <?lsmb login.type = 'hidden' ; INCLUDE input element_data=login ?>
  19. <?lsmb #WE NEED TO KNOW HOW MANY COLUMNS WE ARE USING, PLEASE DO NOT MOVE THE NEXT LINE -?>
  20. <?lsmb column_count = 0 -?>
  21. <table width="100%" id="header_table">
  22. <tr id="header_bar">
  23. <th id="top_bar_header" colspan="2" width="30%" align="left">
  24. <h5>
  25. LOGO AREA
  26. <br/>Adress: <?lsmb company.address ?>
  27. <br/>Tel: <?lsmb company.telephone ?>
  28. </h5>
  29. </th>
  30. <th align="left">
  31. <h1>
  32. PAYMENT ORDER NUMBER <?lsmb header.payment_reference ?>
  33. </h1>
  34. </th>
  35. </tr>
  36. </table>
  37. <table class="datarow" width="100%" callspacing="0" cellpadding="0" border="1" bordercolor="000000">
  38. <tr>
  39. <th class="titledatarow" align=center width=7%>
  40. <font color=000000><?lsmb text('Invoice') ?>&nbsp;<?lsmb text('Number')?></font>
  41. </th>
  42. <th class="titledatarow" align=center width=11%>
  43. <font color=000000><?lsmb text('Account') ?></font>
  44. </th>
  45. <th class="titledatarow" align=center width=68%>
  46. <font color=000000><?lsmb text('Description') ?></font>
  47. </th>
  48. <th class="titledatarow" align=center width=14%>
  49. <font color=000000><?lsmb text('Source') ?></font>
  50. </th>
  51. <th class="titledatarow" align=center width=14%>
  52. <font color=000000><?lsmb text('Amount') ?></font>
  53. </th>
  54. </tr>
  55. <?lsmb FOREACH row IN rows -?>
  56. <tr valign="top">
  57. <td align="center"> <?lsmb row.invoice_number ?></td>
  58. <td align="center"> <?lsmb row.chart_description?>--<?lsmb row.chart_accno?></td>
  59. <td align="center"> <?lsmb row.memo -?> </td>
  60. <td align="center"> <?lsmb row.source ?> </td>
  61. <td align="center"> <?lsmb row.amount ?> </td>
  62. </tr>
  63. <?lsmb END -?>
  64. <tr valign="top">
  65. <th align="right" colspan="4"> &nbsp; TOTAL</th>
  66. <td align="center"> <?lsmb header.amount ?> </td>
  67. </tr>
  68. </table>
  69. <table width=100%>
  70. <tr>
  71. <th class="titledatarow" align="left" >
  72. <font color=000000><?lsmb text('Currency') ?>: <?lsmb header.currency ?></font>
  73. </th>
  74. <th class="titledatarow" align="left">
  75. <font color=000000><?lsmb text('Date') ?>: <?lsmb header.payment_date ?></font>
  76. </th>
  77. <th rowspan="5" width="30%" align="left">
  78. <font size=3>
  79. SIGNATURE
  80. <br></br>
  81. <br></br>
  82. <br></br>
  83. <br>___________________________________________</br>
  84. IDENTIFICATION.
  85. </font>
  86. </th>
  87. </tr>
  88. <tr>
  89. <td width="70%" align="left" colspan="3">
  90. <font size="3">
  91. <b><?lsmb text('Pay in behalf of') ?>:</b> <?lsmb header.legal_name ?>
  92. </font>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td align="left" colspan="3">
  97. <font size="3">
  98. <b><?lsmb text('The amount of') ?>:</b> <?lsmb header.amount2text -?>
  99. </font>
  100. </td>
  101. </tr>
  102. <tr>
  103. <td align="left" colspan="3">
  104. <font size="3">
  105. <b><?lsmb text('This document has been approved by')
  106. -?>:</b><?lsmb header.employee_first_name -?>&nbsp;<?lsmb header.employee_last_name -?>
  107. </font>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td colspan="3" align="left">
  112. <font size="3">
  113. <b><?lsmb text('Approved signature')?>:</b> ____________________________
  114. </font>
  115. </td>
  116. </tr>
  117. <tr>
  118. <td align="left" colspan="3">
  119. <font size="3"><b><?lsmb text('Notes') ?>:</b> <?lsmb header.notes ?></font>
  120. </td>
  121. </tr>
  122. </table>
  123. </body>
  124. </html>