summaryrefslogtreecommitdiff
path: root/UI/payments/payment1.html
blob: 1df905929e1e023602dd1bd6285a426fb8781a47 (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. <meta http-equiv="content-type" content="text/html; charset=<?lsmb charset ?>" />
  11. <meta name="robots" content="noindex,nofollow" />
  12. </head>
  13. <body id="payment-1-body">
  14. <form name="search" method="post" action="payment.pl">
  15. <?lsmb PROCESS elements.html # Include form elements helper. -?>
  16. <?lsmb login.type = 'hidden' ; PROCESS input element_data=login -?>
  17. <?lsmb accountclass.type = 'hidden'; PROCESS input element_data=accountclass -?>
  18. <?lsmb type.type = "hidden";
  19. PROCESS input element_data=type;
  20. -?>
  21. <table width="100%">
  22. <tr id="top-bar" class="listtop">
  23. <th id="top-bar-header" class="listtop"><label id="top-bar-header-label"><?lsmb text('Receipts') ?></th>
  24. </tr>
  25. </table>
  26. <table id="search-form-table">
  27. <tr id="cost-center-row">
  28. <td id="cost-center-label-column" class="label-left"><?lsmb text('Departments') ?></td>
  29. <td id="department-column">
  30. <?lsmb PROCESS select element_data=department ?>
  31. </td>
  32. </tr>
  33. <tr id="vc-currency-row">
  34. <td id="vc-label-column" class="label-left">
  35. <?lsmb IF (type.value == 'receipt') -?>
  36. <?lsmb text('Customer Name') -?>
  37. <?lsmb ELSE; text('Vendor Name') -?>
  38. <?lsmb END -?>
  39. </td>
  40. <td id="vc-column">
  41. <input id="vc_name" name="vc_name"/>
  42. </td>
  43. <td id="vc-label-column2" align="right">
  44. <?lsmb text('SSN')?>
  45. </td>
  46. <td id="vc-column2">
  47. <input id="vc_ssn" name="vc_ssn" size="10"/>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td id="currency-label-column" class="label-left"><?lsmb text('Currency') ?></td>
  52. <td id="currency-column">
  53. <?lsmb PROCESS select element_data=curr ?>
  54. </td>
  55. </tr>
  56. <tr id="daterange-row">
  57. <td id="datefrom-label-column" class="label-left"><?lsmb text('Date from') ?> &gt;=</td>
  58. <td id="datefrom-gt-column">
  59. <?lsmb
  60. datefrom.type = "text";
  61. datefrom.size = "10" ;
  62. datefrom.maxlenght = "10" ;
  63. datefrom.name = "datefrom";
  64. INCLUDE input element_data=datefrom;
  65. -?>
  66. </td>
  67. <td id="dateto-label-column" class="label-left" align=right><?lsmb text('Date to') ?> &lt;=</td>
  68. <td id="dateto-column">
  69. <?lsmb
  70. dateto.type = "text";
  71. dateto.size = "10" ;
  72. dateto.maxlenght = "10" ;
  73. dateto.name = "dateto";
  74. INCLUDE input element_data=dateto;
  75. -?>
  76. </td>
  77. </tr>
  78. <tr id="total-row">
  79. <td id="total-gt-label-column" class="label-left"><?lsmb text('Total') ?> &gt;=</td>
  80. <td id="total-gt-column">
  81. <?lsmb
  82. amountfrom.type = "text";
  83. amountfrom.size = "10" ;
  84. amountfrom.maxlenght = "10" ;
  85. PROCESS input element_data=amountfrom;
  86. ?>
  87. </td>
  88. <td id="total-lt-label-column" class="label-left" align=right><?lsmb text('Total') ?> &lt;=</td>
  89. <td id="total-lt-column">
  90. <?lsmb
  91. amountto.type = "text";
  92. amountto.size = "10" ;
  93. amountto.maxlenght = "10" ;
  94. PROCESS input element_data=amountto;
  95. ?>
  96. </td>
  97. </tr>
  98. </table>
  99. <hr />
  100. <?lsmb PROCESS button element_data=action ?>
  101. </form>
  102. </body>
  103. </html>