Revision eae4302d
Von Hans Peter Schlaepfer vor fast 6 Jahren hinzugefügt
templates/webpages/bp/search.html | ||
---|---|---|
1 |
[%- USE L %] |
|
2 |
[%- USE T8 %] |
|
3 |
[%- USE LxERP %] |
|
4 |
[%- USE HTML %] |
|
1 |
[% USE L %] |
|
2 |
[% USE T8 %] |
|
3 |
[% USE LxERP %] |
|
4 |
[% USE HTML %] |
|
5 |
|
|
6 |
<h1>[% 'Print' | $T8 %] [% label.$type.title %]</h1> |
|
7 |
|
|
5 | 8 |
<form method="post" action="bp.pl" id="form"> |
6 | 9 |
|
7 |
<h1>[% 'Print' | $T8 %] [% label.$type.title %]</h1>[% L.hidden_tag('title', LxERP.t8('Print') _ ' ' _ label.$type.title) %]
|
|
10 |
[% L.hidden_tag('title', LxERP.t8('Print') _ ' ' _ label.$type.title) %] |
|
8 | 11 |
|
9 |
<table> |
|
10 |
<tr> |
|
11 |
<th align=right>[% 'Customer' | $T8 %]</th> |
|
12 |
<td colspan=3>[% L.input_tag(vc, '', size=35) %]</td> |
|
13 |
</tr> |
|
14 |
[% IF show_accounts %] |
|
15 |
<tr> |
|
16 |
<th align=right>[% 'Account' | $T8 %]</th> |
|
17 |
<td colspan=3>[% L.select_tag('account', accounts, value_title_sub=\account_sub) %]</td> |
|
18 |
</tr> |
|
19 |
[% END %] |
|
20 |
[%- IF label.$type.invnumber %] |
|
21 |
<tr> |
|
22 |
<th align=right nowrap>[% 'Invoice Number' | $T8 %]</th> |
|
23 |
<td colspan=3>[% L.input_tag('invnumber', '', size=20) %]</td> |
|
24 |
</tr> |
|
25 |
[%- END %] |
|
26 |
[%- IF label.$type.ordnumber %] |
|
27 |
<tr> |
|
28 |
<th align=right nowrap>[% 'Order Number' | $T8 %]</th> |
|
29 |
<td colspan=3>[% L.input_tag('ordnumber', '', size=20) %]</td> |
|
30 |
</tr> |
|
31 |
[%- END %] |
|
32 |
[%- IF label.$type.quonumber %] |
|
33 |
<tr> |
|
34 |
<th align=right nowrap>[% 'Quotation Number' | $T8 %]</th> |
|
35 |
<td colspan=3>[% L.input_tag('quonumber', '', size=20) %]</td> |
|
36 |
</tr> |
|
37 |
[%- END %] |
|
38 |
[%- IF label.$type.donumber %] |
|
39 |
<tr> |
|
40 |
<th align=right nowrap>[% 'Delivery Order Number' | $T8 %]</th> |
|
41 |
<td colspan=3>[% L.input_tag('donumber', '', size=20) %]</td> |
|
42 |
</tr> |
|
43 |
[%- END %] |
|
44 |
[%- IF label.$type.chknumber %] |
|
45 |
<tr> |
|
46 |
<th align=right nowrap>[% 'Reference' | $T8 %]</th> |
|
47 |
<td colspan=3>[% L.input_tag('chknumber', '', size=20) %]</td> |
|
48 |
</tr> |
|
49 |
[%- END %] |
|
50 |
<tr> |
|
51 |
<th align=right nowrap>[% 'From' | $T8 %]</th> |
|
52 |
<td>[% L.date_tag('transdatefrom') %]</td> |
|
53 |
<th align=right>[% 'Bis' | $T8 %]</th> |
|
54 |
<td>[% L.date_tag('transdateto') %]</td> |
|
55 |
</tr> |
|
56 |
</table> |
|
12 |
<div class="wrapper"> |
|
57 | 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> |
|
58 | 63 |
|
59 | 64 |
[% L.hidden_tag('sort', 'transdate') %] |
60 | 65 |
[% L.hidden_tag('vc', vc) %] |
61 | 66 |
[% L.hidden_tag('type', type) %] |
67 |
</div> |
|
62 | 68 |
</form> |
Auch abrufbar als: Unified diff
Neues kivitendo Design restliche Aenderungen in templates/webpages/b*
Dateien in background_job/* bankimport/* bp/* und buchungsgruppen/*