From b3ed2ba79fcc803ab2bdc029ff6049e64a644042 Mon Sep 17 00:00:00 2001 From: bob_lyon Date: Thu, 20 Jul 2006 06:09:02 +0000 Subject: [PATCH] merging katipo changes --- .../prog/en/serials/serials-home.tmpl | 44 ++++++++++++++++++- serials/serials-home.pl | 5 +++ 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/serials/serials-home.tmpl b/koha-tmpl/intranet-tmpl/prog/en/serials/serials-home.tmpl index 9c5c354868..f62c52cb80 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/serials/serials-home.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/serials/serials-home.tmpl @@ -6,6 +6,10 @@

Serials

Serials subscriptions

+ +

Search for Serial Routing List

+ + @@ -17,6 +21,10 @@ + + " /> + + @@ -60,6 +68,31 @@ () + + + + + + + + + + +
ISSN
" title="type ISSN here to filter subscription"> + + + + &op=new">Routing List + + + + + " class="button serial" title="subscription detail">Detail + + + + + " class="button serial" title="receive issues for this subscription">Receive + @@ -74,10 +107,19 @@ " class="button serial" title="receive issues for this subscription">Receive
- Add subscription + + + + + Add subscription + + Add subscription + +
diff --git a/serials/serials-home.pl b/serials/serials-home.pl index ae341acd57..356d9525ee 100755 --- a/serials/serials-home.pl +++ b/serials/serials-home.pl @@ -57,6 +57,10 @@ my $ISSN = $query->param('ISSN'); my $routing = $query->param('routing'); my $searched = $query->param('searched'); my $biblionumber = $query->param('biblionumber'); +my $alt_links = 0; +if(C4::Context->preference("RoutingSerials")){ + $alt_links = 0; +} my @subscriptions = GetSubscriptions($title,$ISSN,$biblionumber); my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "serials/serials-home.tmpl", @@ -82,5 +86,6 @@ $template->param( ISSN => $ISSN, done_searched => $searched, routing => $routing, + alt_links => $alt_links, ); output_html_with_http_headers $query, $cookie, $template->output; -- 2.20.1