51e7382bcc6d35256f55839291db0e4a2ee00f77
[kivitendo-erp.git] / templates / webpages / bp / list_spool.html
1 [%- USE L %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE T8 %]
5 [%- USE url %]
6 [%- SET list_spool__callback = href _ '&sort=' _ sort %]
7
8 <h1>[% title | html %]</h1>
9
10 <form method="post" action="bp.pl" id="form">
11
12 <p>
13  [% LxERP.t8("Printer") %]: [% L.select_tag('printer', ALL_PRINTERS, title_key = 'printer_description') %]
14 </p>
15
16 <p>
17 [% FOREACH option IN options %]
18   [% option %]
19   [% ', ' UNLESS loop.last %]
20 [% END %]
21 </p>
22
23 <table width=100%>
24  <tr>
25   <td class="listheading">[% L.checkbox_tag('checkall_box', checkall='input.check_all') %]</td>
26   <td class="listheading">[% L.link(href _ '&sort=transdate', LxERP.t8('Date')) %]</td>
27 [%- IF is_invoice %]
28   <td class="listheading">[% L.link(href _ '&sort=invoice', LxERP.t8('Invoice')) %]</td>
29 [%- END %]
30 [%- IF is_order %]
31   <td class="listheading">[% L.link(href _ '&sort=ordnumber', LxERP.t8('Order')) %]</td>
32 [%- END %]
33 [%- IF is_quotation %]
34   <td class="listheading">[% L.link(href _ '&sort=quonumber', LxERP.t8('Quotation')) %]</td>
35 [%- END %]
36   <td class="listheading">[% L.link(href _ '&sort=name', vc == 'customer' ? LxERP.t8('Customer') : LxERP.t8('Vendor')) %]</td>
37   <td class="listheading">[% 'Spoolfile' | $T8 %]</td>
38  </tr>
39 [%- FOREACH row = SPOOL %]
40  <tr class="listrow[% loop.count %]">
41   <td>[% SET list_spool__checked='checked_' _ loop.count; L.checkbox_tag(list_spool__checked, checked=$list_spool__checked, class='check_all') IF row.new_file %]</td>
42   <td>[% row.transdate %]</td>
43 [%- IF is_invoice %]
44   <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.invnumber) %]</td>
45 [%- END %]
46 [%- IF is_order %]
47   <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.ordnumber) %]</td>
48 [%- END %]
49 [%- IF is_quotation %]
50   <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.quonumber) %]</td>
51 [%- END %]
52   <td>[% row.name | html %]</td>
53   <td>[% L.link(LXCONFIG.paths.spool _ '/' _ row.spoolfile, row.spoolfile) %][% L.hidden_tag('spoolfile_' _ loop.count, row.spoolfile) %]</td>
54  </tr>
55 [%- END %]
56
57 [% L.hidden_tag('rowcount', SPOOL.size) %]
58
59 </table>
60
61 [% L.hidden_tag('callback', callback) %]
62 [% L.hidden_tag('title', title) %]
63 [% L.hidden_tag('vc', vc) %]
64 [% L.hidden_tag('type', type) %]
65 [% L.hidden_tag('sort', sort) %]
66 [% L.hidden_tag('account', account) %]
67
68 [% L.hidden_tag('transdateto', transdateto) %]
69 [% L.hidden_tag('transdatefrom', transdatefrom) %]
70 [% L.hidden_tag('invnumber', invnumber) %]
71 [% L.hidden_tag('ordnumber', ordnumber) %]
72 [% L.hidden_tag('quonumber', quonumber) %]
73 [% L.hidden_tag('customer', customer) %]
74 [% L.hidden_tag('vendor', vendor) %]
75 </form>