From a14368a23b433e316abe5a1bc00e30a516b7a37e Mon Sep 17 00:00:00 2001 From: "Martin Helmling mh@waldpark.octosoft.eu" Date: Tue, 23 Feb 2016 09:41:36 +0100 Subject: [PATCH] Textanpassung und Saubere Linie bei Multiselect MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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. --- bin/mozilla/io.pl | 4 +++- locale/de/all | 1 + templates/webpages/io/select_item.html | 5 ++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 89eb6a2d4..c3ab47e28 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -503,7 +503,9 @@ sub select_item { _check_io_auth(); my $previous_form = $::auth->save_form_in_session(form => $::form); - $::form->{title} = $::locale->text('Select from one of the items below'); + $::form->{title} = $::myconfig{item_multiselect} ? + $::locale->text('Set count for one or more of the items to select them'): + $::locale->text('Select from one of the items below'); $::form->header; my @item_list = map { diff --git a/locale/de/all b/locale/de/all index fa9c71fb8..c97e2d289 100755 --- a/locale/de/all +++ b/locale/de/all @@ -2414,6 +2414,7 @@ $self->{texts} = { 'Service, assembly or part' => 'Dienstleistung, Erzeugnis oder Ware', 'Services' => 'Dienstleistungen', 'Set (set to)' => 'Setze', + 'Set count for one or more of the items to select them' => 'Zum Selektieren bitte Menge für einen oder mehrere Artikel setzen', 'Set eMail text' => 'E-Mail Text eingeben', 'Set to paid missing' => 'Fehlbetrag setzen', 'Settings' => 'Einstellungen', diff --git a/templates/webpages/io/select_item.html b/templates/webpages/io/select_item.html index f57648680..668b2e94b 100644 --- a/templates/webpages/io/select_item.html +++ b/templates/webpages/io/select_item.html @@ -1,4 +1,5 @@ [% USE LxERP %][% USE HTML %][% USE L %][% USE P %] +[% SET COLS = 8 %]

[% title %]

@@ -13,11 +14,13 @@ [% LxERP.t8('Number') %] [% LxERP.t8('Part Description') %] [%- IF INSTANCE_CONF.get_show_longdescription_select_item %] + [% SET COLS = COLS + 1 %] [% LxERP.t8('Long Description') %] [%- END %] [% LxERP.t8('Other Matches') %] [% LxERP.t8('Price') %] [%- IF IS_PURCHASE %] + [% SET COLS = COLS + 1 %] [% LxERP.t8('ROP') %] [%- END %] [% LxERP.t8('Qty') %] @@ -46,7 +49,7 @@ [%- END %] -
+
[% L.hidden_tag('select_item_mode', MODE) %] -- 2.20.1