From 922ae0b782cee58580618b5d1d288b7d169d7c70 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Andr=C3=A9=20Santoni?= Date: Thu, 10 Dec 2009 11:20:03 +0100 Subject: [PATCH] [MT1234] Replaced useless selectbox in the title of contact form --- admin/aqcontract.pl | 15 ++++++--------- .../prog/en/modules/admin/aqcontract.tmpl | 14 ++------------ 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/admin/aqcontract.pl b/admin/aqcontract.pl index eea782d960..cd5b2f8da2 100755 --- a/admin/aqcontract.pl +++ b/admin/aqcontract.pl @@ -77,6 +77,7 @@ $template->param( if ( $op eq 'add_form' ) { $template->param( add_form => 1 ); my $data; + my $booksellername; #---- if primkey exists, it's a modify action, so read values to modify... if ($contractnumber) { @@ -86,16 +87,12 @@ if ( $op eq 'add_form' ) { $data = $sth->fetchrow_hashref; $sth->finish; - for my $bookseller (@bookseller) { - if ( $bookseller->{'id'} eq $data->{'booksellerid'} ) { - $bookseller->{'selected'} = 1; - } + for ( @bookseller ) { + $booksellername = $$_{name} if $$_{id} eq $$data{booksellerid}; } } else { - for my $bookseller (@bookseller) { - if ( $bookseller->{'id'} eq $booksellerid ) { - $bookseller->{'selected'} = 1; - } + for ( @bookseller ) { + $booksellername = $$_{name} if $$_{id} eq $booksellerid; } } $template->param( @@ -104,7 +101,7 @@ if ( $op eq 'add_form' ) { contractdescription => $data->{'contractdescription'}, contractstartdate => format_date( $data->{'contractstartdate'} ), contractenddate => format_date( $data->{'contractenddate'} ), - booksellerloop => \@bookseller, + booksellername => $booksellername, booksellerid => $data->{'booksellerid'}, DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(), ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqcontract.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqcontract.tmpl index 6d3f053c3e..d1823fab8a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqcontract.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqcontract.tmpl @@ -89,19 +89,9 @@ function Check(ff) { -

Modify contract - -

+

Modify contract for

-

New contract

+

New contract for

    -- 2.20.1