Revision 96ee98b3
Von Moritz Bunkus vor mehr als 9 Jahren hinzugefügt
templates/webpages/do/search.html | ||
---|---|---|
11 | 11 |
|
12 | 12 |
[%- SET vctypelabel = vc == 'customer' ? LxERP.t8('Customer type') : LxERP.t8('Vendor type') %] |
13 | 13 |
|
14 |
<script type="text/javascript"> |
|
15 |
$(function(){ document.Form.donumber.focus(); }); |
|
16 |
</script> |
|
17 |
|
|
18 | 14 |
<style type="text/css"> |
19 | 15 |
.fixed_width { |
20 | 16 |
width: 250px; |
... | ... | |
29 | 25 |
<th align="right">[% IF is_customer %][% 'Customer' | $T8 %][% ELSE %][% 'Vendor' | $T8 %][% END %]</th> |
30 | 26 |
<td colspan="3"> |
31 | 27 |
[%- UNLESS SHOW_VC_DROP_DOWN %] |
32 |
<input type="text" name="[% HTML.escape(vc) %]" class="fixed_width"> |
|
28 |
<input type="text" name="[% HTML.escape(vc) %]" class="fixed_width initial_focus">
|
|
33 | 29 |
[%- ELSE %] |
34 |
<select name="[% vc %]" class="fixed_width"> |
|
30 |
<select name="[% vc %]" class="fixed_width initial_focus">
|
|
35 | 31 |
<option></option> |
36 | 32 |
[%- FOREACH row = ALL_VC %] |
37 | 33 |
<option>[% HTML.escape(row.name) %]--[% HTML.escape(row.id) %]</option> |
Auch abrufbar als: Unified diff
Lieferscheinsuche: initialer Fokus auf Kunden-/Lieferantenname
Dadurch ist die Maske konsistent mit allen anderen Suchmasken im Verkauf
und Einkauf.