Revision a14368a2
Von Martin Helmling mh@waldpark.octosoft.eu vor fast 9 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
503 | 503 |
_check_io_auth(); |
504 | 504 |
|
505 | 505 |
my $previous_form = $::auth->save_form_in_session(form => $::form); |
506 |
$::form->{title} = $::locale->text('Select from one of the items below'); |
|
506 |
$::form->{title} = $::myconfig{item_multiselect} ? |
|
507 |
$::locale->text('Set count for one or more of the items to select them'): |
|
508 |
$::locale->text('Select from one of the items below'); |
|
507 | 509 |
$::form->header; |
508 | 510 |
|
509 | 511 |
my @item_list = map { |
locale/de/all | ||
---|---|---|
2414 | 2414 |
'Service, assembly or part' => 'Dienstleistung, Erzeugnis oder Ware', |
2415 | 2415 |
'Services' => 'Dienstleistungen', |
2416 | 2416 |
'Set (set to)' => 'Setze', |
2417 |
'Set count for one or more of the items to select them' => 'Zum Selektieren bitte Menge für einen oder mehrere Artikel setzen', |
|
2417 | 2418 |
'Set eMail text' => 'E-Mail Text eingeben', |
2418 | 2419 |
'Set to paid missing' => 'Fehlbetrag setzen', |
2419 | 2420 |
'Settings' => 'Einstellungen', |
templates/webpages/io/select_item.html | ||
---|---|---|
1 | 1 |
[% USE LxERP %][% USE HTML %][% USE L %][% USE P %] |
2 |
[% SET COLS = 8 %] |
|
2 | 3 |
<h1>[% title %]</h1> |
3 | 4 |
|
4 | 5 |
<form method="post" action="[% HTML.escape(script) %]"> |
... | ... | |
13 | 14 |
<th>[% LxERP.t8('Number') %]</th> |
14 | 15 |
<th>[% LxERP.t8('Part Description') %]</th> |
15 | 16 |
[%- IF INSTANCE_CONF.get_show_longdescription_select_item %] |
17 |
[% SET COLS = COLS + 1 %] |
|
16 | 18 |
<th>[% LxERP.t8('Long Description') %]</th> |
17 | 19 |
[%- END %] |
18 | 20 |
<th>[% LxERP.t8('Other Matches') %]</th> |
19 | 21 |
<th>[% LxERP.t8('Price') %]</th> |
20 | 22 |
[%- IF IS_PURCHASE %] |
23 |
[% SET COLS = COLS + 1 %] |
|
21 | 24 |
<th>[% LxERP.t8('ROP') %]</th> |
22 | 25 |
[%- END %] |
23 | 26 |
<th>[% LxERP.t8('Qty') %]</th> |
... | ... | |
46 | 49 |
</tr> |
47 | 50 |
[%- END %] |
48 | 51 |
|
49 |
<tr><td colspan="8"><hr size="3" noshade></td></tr>
|
|
52 |
<tr><td colspan="[% COLS %]"><hr size="3" noshade></td></tr>
|
|
50 | 53 |
</table> |
51 | 54 |
|
52 | 55 |
[% L.hidden_tag('select_item_mode', MODE) %] |
Auch abrufbar als: Unified diff
Textanpassung und Saubere Linie bei Multiselect
Im Artikelselektor bei Multiselect besseren Titel, je nachdem ob multiselect an ist oder nicht.
Auch die horizontale Linie über alle Spalten,
wenn long_description in der Mandanntenkonfig gesetzt ist.