summaryrefslogtreecommitdiff
path: root/UI/payments/payment1.html
blob: 6d2d2216f249d69a641dda1e8eb17131a91d0e15 (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')?>
  37. <?lsmb ELSE; text('Vendor')?>
  38. <?lsmb END ?>
  39. </td>
  40. <td id="vc-column">
  41. <?lsmb PROCESS select element_data=vendor_customer ?>
  42. </td>
  43. <td id="currency-label-column" class="label-left"><?lsmb text('Currency') ?></td>
  44. <td id="currency-column">
  45. <?lsmb PROCESS select element_data=curr ?>
  46. </td>
  47. </tr>
  48. <tr id="daterange-row">
  49. <td id="datefrom-label-column" class="label-left"><?lsmb text('Date from') ?> &gt;=</td>
  50. <td id="datefrom-gt-column">
  51. <?lsmb
  52. datefrom.type = "text";
  53. datefrom.size = "10" ;
  54. datefrom.maxlenght = "10" ;
  55. datefrom.name = "datefrom";
  56. INCLUDE input element_data=datefrom;
  57. -?>
  58. </td>
  59. <td id="dateto-label-column" class="label-left" align=right><?lsmb text('Date to') ?> &lt;=</td>
  60. <td id="dateto-column">
  61. <?lsmb
  62. dateto.type = "text";
  63. dateto.size = "10" ;
  64. dateto.maxlenght = "10" ;
  65. dateto.name = "dateto";
  66. INCLUDE input element_data=dateto;
  67. -?>
  68. </td>
  69. </tr>
  70. <tr id="total-row">
  71. <td id="total-gt-label-column" class="label-left"><?lsmb text('Total') ?> &gt;=</td>
  72. <td id="total-gt-column">
  73. <?lsmb
  74. amountfrom.type = "text";
  75. amountfrom.size = "10" ;
  76. amountfrom.maxlenght = "10" ;
  77. PROCESS input element_data=amountfrom;
  78. ?>
  79. </td>
  80. <td id="total-lt-label-column" class="label-left" align=right><?lsmb text('Total') ?> &lt;=</td>
  81. <td id="total-lt-column">
  82. <?lsmb
  83. amountto.type = "text";
  84. amountto.size = "10" ;
  85. amountto.maxlenght = "10" ;
  86. PROCESS input element_data=amountto;
  87. ?>
  88. </td>
  89. </tr>
  90. </table>
  91. <hr />
  92. <?lsmb PROCESS button element_data=action ?>
  93. </form>
  94. </body>
  95. </html>