From fb5dec8b98fb0dfb3714c1f8d3012b551f0d3519 Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Wed, 13 Feb 2008 13:03:22 -0600 Subject: [PATCH] adding branchcode for subscriptions details Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- .../prog/en/modules/opac-ISBDdetail.tmpl | 51 ++++++++++--------- .../prog/en/modules/opac-detail.tmpl | 1 + opac/opac-ISBDdetail.pl | 1 + opac/opac-detail.pl | 2 +- 4 files changed, 29 insertions(+), 26 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tmpl index 7c0c40041d..e8b1b6b9eb 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tmpl +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tmpl @@ -90,39 +90,40 @@

We have subscription(s) associated with this title.

-

Below is a list of the three latest issues :

- -

- - - - - - - - - + + +
Issue numberDateStatus
- - Pending +

At library:

+

Below is a list of the three latest issues :

+ +

+ + + + + + + + + - - -
Issue numberDateStatus
+ + Pending + + Arrived - Arrived + Late - Late + Missing - Missing - - Not Issued - + Not Issued -
- + +
+

" title="Serial issues">Click here for more information on subscription(s) history

diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl index 5d5523baa1..e0889cece7 100755 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl @@ -279,6 +279,7 @@

This is a serial subscription

(There are subscriptions associated with this title).

+

At branch:

The three latest issues for this subscription:

diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl index 2646009c1e..db2560345c 100755 --- a/opac/opac-ISBDdetail.pl +++ b/opac/opac-ISBDdetail.pl @@ -75,6 +75,7 @@ foreach my $subscription (@subscriptions) { my %cell; $cell{subscriptionid} = $subscription->{subscriptionid}; $cell{subscriptionnotes} = $subscription->{notes}; + $cell{branchcode} = $subscription->{branchcode}; #get the three latest serials. $cell{latestserials} = diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl index 5777a80076..b424ea7b3e 100755 --- a/opac/opac-detail.pl +++ b/opac/opac-detail.pl @@ -67,7 +67,7 @@ foreach my $subscription (@subscriptions) { my %cell; $cell{subscriptionid} = $subscription->{subscriptionid}; $cell{subscriptionnotes} = $subscription->{notes}; - + $cell{branchcode} = $subscription->{branchcode}; #get the three latest serials. $cell{latestserials} = GetLatestSerials( $subscription->{subscriptionid}, 3 ); -- 2.39.5