' innerhalb von Strings escapen
[kivitendo-erp.git] / templates / webpages / acctranscorrections / analyze_filter_en.html
1 [% USE HTML %]
2 <body>
3  <p><div class="listheading">[% title %]</div></p>
4
5  <p>
6   Earlier versions of Lx-Office contained bugs which might have led to wrong entries in the general ledger.
7   These wrong entries cannot be fixed automatically.
8   This module can help you identify and correct such entries by analyzing the general ledger and presenting you likely solutions but also allowing you to fix problems yourself.
9  </p>
10
11  <form name="filter" method="post" action="acctranscorrections.pl">
12
13   <p>Time period for the analysis:</p>
14
15   <p>
16    <table>
17     <tr>
18      <td><input type="radio" name="scope" id="scope_full" value="full" checked></td>
19      <td><label for="scope_full">All general ledger entries</label></td>
20     </tr>
21
22     <tr>
23      <td><input type="radio" name="scope" id="scope_period" value="period"></td>
24      <td>
25       Period:
26       from (time)
27       <input name="transdate_from" id="transdate_from" size="10">
28       <input type="button" name="transdate_from_trigger" id="transdate_from_trigger" value="?">
29       to (time)
30       <input name="transdate_to" id="transdate_to" size="10">
31       <input type="button" name="transdate_to_trigger" id="transdate_to_trigger" value="?">
32      </td>
33     </tr>
34    </table>
35   </p>
36
37   <p>
38    <input type="submit" value="Start analysis">
39   </p>
40
41   <input type="hidden" name="action" value="analyze">
42  </form>
43
44  <script type="text/javascript">
45   <!--
46     Calendar.setup({ inputField : "transdate_from", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "transdate_from_trigger" });
47     Calendar.setup({ inputField : "transdate_to",   ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "transdate_to_trigger" });
48   //-->
49  </script>
50 </body>
51 </html>