]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/bp/search.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / bp / search.html
1 [% USE L %]
2 [% USE T8 %]
3 [% USE LxERP %]
4 [% USE HTML %]
5
6 <h1>[% 'Print' | $T8 %] [% label.$type.title %]</h1>
7
8 <form method="post" action="bp.pl" id="form">
9
10 [% L.hidden_tag('title', LxERP.t8('Print') _ ' ' _ label.$type.title) %]
11
12 <div class="wrapper">
13
14 <table class="tbl-horizontal">
15   <colgroup><col class="wi-small"><col class="wi-verywide"></colgroup>
16   <tbody>
17     <tr>
18       <th>[% 'Customer' | $T8 %]</th>
19       <td>[% L.input_tag(vc, '', class='wi-normal') %]</td>
20     </tr>
21     [% IF show_accounts %]
22     <tr>
23       <th>[% 'Account' | $T8 %]</th>
24       <td>[% L.select_tag('account', accounts, value_title_sub=\account_sub, class='wi-verywide') %]</td>
25     </tr>
26     [% END %]
27     [% IF label.$type.invnumber %]
28     <tr>
29       <th>[% 'Invoice Number' | $T8 %]</th>
30       <td>[% L.input_tag('invnumber', '', class='wi-normal') %]</td>
31     </tr>
32     [% END %]
33     [% IF label.$type.ordnumber %]
34     <tr>
35       <th>[% 'Order Number' | $T8 %]</th>
36       <td>[% L.input_tag('ordnumber', '', class='wi-normal') %]</td>
37     </tr>
38     [% END %]
39     [% IF label.$type.quonumber %]
40     <tr>
41       <th>[% 'Quotation Number' | $T8 %]</th>
42       <td>[% L.input_tag('quonumber', '', class='wi-normal') %]</td>
43     </tr>
44     [% END %]
45     [% IF label.$type.donumber %]
46     <tr>
47       <th>[% 'Delivery Order Number' | $T8 %]</th>
48       <td>[% L.input_tag('donumber', '', class='wi-normal') %]</td>
49     </tr>
50     [% END %]
51     [% IF label.$type.chknumber %]
52     <tr>
53       <th>[% 'Reference' | $T8 %]</th>
54       <td>[% L.input_tag('chknumber', '', class='wi-normal') %]</td>
55     </tr>
56     [% END %]
57     <tr>
58       <th>[% 'Date' | $T8 %] [% 'from' | $T8 %] </th>
59       <td class="wi-date">[% L.date_tag('transdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('transdateto') %]</td>
60     </tr>
61   </tbody>
62 </table>
63
64 [% L.hidden_tag('sort', 'transdate') %]
65 [% L.hidden_tag('vc', vc) %]
66 [% L.hidden_tag('type', type) %]
67 </div>
68 </form>