</body> entfernt
[kivitendo-erp.git] / templates / webpages / oe / edit_periodic_invoices_config.html
1 [% USE HTML %]
2 [% USE LxERP %]
3 [% USE L %]
4 <body>
5
6  <div class="listtop">[% title %]</div>
7
8  <form name="Form" action="oe.pl" method="post">
9
10   <p>
11    <table border="0">
12     <tr>
13      <th align="right">[% LxERP.t8('Status') %]</th>
14      <td>[% L.checkbox_tag("active", checked => active, label => LxERP.t8('Active')) %]</td>
15     </tr>
16
17     <tr>
18      <td>&nbsp;</td>
19      <td>
20       [% L.checkbox_tag('terminated', label => LxERP.t8('terminated'), checked => terminated) %]
21      </td>
22     </tr>
23
24     <tr>
25      <th align="right" valign="top">[%- LxERP.t8('Periodicity') %]</th>
26      <td valign="top">
27       [% L.radio_button_tag("periodicity", value => "m", label => LxERP.t8("monthly"),   checked => periodicity == 'm') %]
28       <br>
29       [% L.radio_button_tag("periodicity", value => "q", label => LxERP.t8("quarterly"), checked => periodicity == 'q') %]
30       <br>
31       [% L.radio_button_tag("periodicity", value => "y", label => LxERP.t8("yearly"),    checked => periodicity == 'y') %]
32      </td>
33     </tr>
34
35     <tr>
36      <th align="right">[%- LxERP.t8('Start date') %]</th>
37      <td valign="top">
38       [% L.date_tag("start_date_as_date", start_date_as_date) %]
39      </td>
40     </tr>
41
42     <tr>
43      <th align="right">[%- LxERP.t8('End date') %]<sup>(1)</sup></th>
44      <td valign="top">
45       [% L.date_tag("end_date_as_date", end_date_as_date) %]
46      </td>
47     </tr>
48
49     <tr>
50      <th align="right">[% LxERP.t8('Extend automatically by n months') %]</th>
51      <td valign="top">
52       [% L.input_tag("extend_automatically_by", extend_automatically_by, size => 10) %]
53      </td>
54     </tr>
55
56     <tr>
57      <th align="right">[%- LxERP.t8('Record in') %]</th>
58      <td valign="top">
59       [% L.select_tag("ar_chart_id", AR, title_key => 'description', default => ar_chart_id) %]
60      </td>
61     </tr>
62
63     <tr>
64      <th align="right">[%- LxERP.t8('Print automatically') %]</th>
65      <td valign="top">
66       [% L.checkbox_tag("print", onclick => "toggle_printer_id_ctrl()", checked => print) %]
67      </td>
68     </tr>
69
70     <tr>
71      <th align="right">[%- LxERP.t8('Printer') %]</th>
72      <td valign="top">
73       [% L.select_tag("printer_id", ALL_PRINTERS, title_key = 'printer_description', default = printer_id, disabled = !print) %]
74      </td>
75     </tr>
76
77     <tr>
78      <th align="right">[%- LxERP.t8('Copies') %]</th>
79      <td valign="top">[% L.input_tag("copies", copies, size => 6, disabled => !print) %]</td>
80     </tr>
81    </table>
82   </p>
83
84   <hr>
85
86   <p>(1): [%- LxERP.t8('The end date is the last day for which invoices will possibly be created.') %]</p>
87
88   [% L.hidden_tag('action', 'save_periodic_invoices_config') %]
89
90   <p>
91    [% L.submit_tag('', LxERP.t8('Close')) %]
92    [% L.submit_tag('', LxERP.t8('Cancel'), onclick => "self.close(); return false;") %]
93   </p>
94  </form>
95
96  <script type="text/javascript">
97   <!--
98     function toggle_printer_id_ctrl() {
99       var disabled = !$('#print').attr('checked');
100       $('#printer_id').attr('disabled', disabled);
101       $('#copies').attr('disabled', disabled);
102     }
103     -->
104  </script>
105