83c39c7bfec77905f635cec39a4a6405988b8b19
[kivitendo-erp.git] / templates / webpages / gdpdu / filter.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE L %]
4 [%- USE LxERP %]
5
6 <h1>[% title | html %]</h1>
7
8 [%- PROCESS 'common/flash.html' %]
9
10 <p>[% 'This export will include all records in the given time range and all supplicant information from checked entities. You will receive a single zip file. Please extract this file onto the data medium requested by your auditor.' | $T8 %]</p>
11
12 <form>
13
14 <table>
15   <tr>
16     <td>[% 'From Date' | $T8 %]</td>
17     <td>[% L.date_tag('from', SELF.from) %]</td>
18   </tr>
19   <tr>
20     <td>[% 'To Date' | $T8 %]</td>
21     <td>[% L.date_tag('to', SELF.to) %]</td>
22   </tr>
23   <tr>
24     <td>[% 'Include in Report' | $T8 %]</td>
25     <td>
26       [% L.checkbox_tag('tables.ar', label=LxERP.t8('Invoices'), checked=1) %]
27       [% L.checkbox_tag('tables.ap', label=LxERP.t8('Purchase Invoices'), checked=1) %]
28       [% L.checkbox_tag('tables.gl', label=LxERP.t8('GL Transactions'), checked=1) %]
29       [% L.checkbox_tag('tables.delivery_orders', label=LxERP.t8('Delivery Orders'), checked=1) %]
30       [% L.checkbox_tag('tables.oe', label=LxERP.t8('Quotations and orders'), checked=1) %]
31       [% L.checkbox_tag('tables.customer', label=LxERP.t8('Customers'), checked=1) %]
32       [% L.checkbox_tag('tables.vendor', label=LxERP.t8('Vendors'), checked=1) %]
33       [% L.checkbox_tag('tables.parts', label=LxERP.t8('Parts'), checked=1) %]
34       [% L.checkbox_tag('tables.acc_trans', label=LxERP.t8('Transactions'), checked=1) %]
35       [% L.checkbox_tag('tables.chart', label=LxERP.t8('Charts'), checked=1) %]
36     </td>
37   </tr>
38 </table>
39
40 [% L.hidden_tag('action', 'Gdpdu/dispatch') %]
41
42 [% L.submit_tag('action_export', LxERP.t8('Export')) %]
43
44 </form>