]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/bp/list_spool.html
date error in mapping
[mfinanz.git] / templates / design40_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 <div class="wrapper">
13 <table class="tbl-horizontal">
14   <tr>
15     <th>[% LxERP.t8("Printer") %]</th>
16     <td>[% L.select_tag('printer', ALL_PRINTERS, title_key = 'printer_description') %]</td>
17   </tr>
18   <tr>
19     <th>[% 'Options' | $T8 %]</th>
20     <td>[% FOREACH option IN options %][% option %][% ', ' UNLESS loop.last %][% END %]</td>
21   </tr>
22 </table>
23 </div>
24
25 <div class="wrapper">
26
27 <table class="tbl-list">
28   <thead>
29     <tr>
30       <th>[% L.checkbox_tag('checkall_box', checkall='input.check_all') %]</td>
31       <th>[% L.link(href _ '&sort=transdate', LxERP.t8('Date')) %]</td>
32     [% IF is_invoice %]
33       <th>[% L.link(href _ '&sort=invoice', LxERP.t8('Invoice')) %]</td>
34     [% END %]
35     [% IF is_order %]
36       <th>[% L.link(href _ '&sort=ordnumber', LxERP.t8('Order')) %]</td>
37     [% END %]
38     [% IF is_quotation %]
39       <th>[% L.link(href _ '&sort=quonumber', LxERP.t8('Quotation')) %]</td>
40     [% END %]
41       <th>[% L.link(href _ '&sort=name', vc == 'customer' ? LxERP.t8('Customer') : LxERP.t8('Vendor')) %]</td>
42       <th>[% 'Spoolfile' | $T8 %]</td>
43     </tr>
44   </thead>
45   <tbody>
46     [% FOREACH row = SPOOL %]
47       <tr>
48         <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>
49         <td>[% row.transdate %]</td>
50       [% IF is_invoice %]
51         <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.invnumber) %]</td>
52       [% END %]
53       [% IF is_order %]
54         <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.ordnumber) %]</td>
55       [% END %]
56       [% IF is_quotation %]
57         <td>[% L.link(url(row.module _ '.pl', action='edit' ,type=type, callback=list_spool__callback, id=row.id), row.quonumber) %]</td>
58       [% END %]
59         <td>[% row.name | html %]</td>
60         <td>[% L.link(LXCONFIG.paths.spool _ '/' _ row.spoolfile, row.spoolfile) %][% L.hidden_tag('spoolfile_' _ loop.count, row.spoolfile) %]</td>
61       </tr>
62     [% END %]
63   </tbody>
64 </table>
65 [% L.hidden_tag('rowcount', SPOOL.size) %]
66
67 [% L.hidden_tag('callback', callback) %]
68 [% L.hidden_tag('title', title) %]
69 [% L.hidden_tag('vc', vc) %]
70 [% L.hidden_tag('type', type) %]
71 [% L.hidden_tag('sort', sort) %]
72 [% L.hidden_tag('account', account) %]
73
74 [% L.hidden_tag('transdateto', transdateto) %]
75 [% L.hidden_tag('transdatefrom', transdatefrom) %]
76 [% L.hidden_tag('invnumber', invnumber) %]
77 [% L.hidden_tag('ordnumber', ordnumber) %]
78 [% L.hidden_tag('quonumber', quonumber) %]
79 [% L.hidden_tag('customer', customer) %]
80 [% L.hidden_tag('vendor', vendor) %]
81
82 </div><!-- /.wrapper -->
83 </form>