From f00bda92e30d793c5d77e8d8153a53ae50886556 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Thu, 30 Mar 2017 02:01:38 +0000 Subject: [PATCH] Bug 18350: Moving call number in subscriptions tab in OPAC biblio detail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patches moves the call number up to be under the library name, so it is equivalent to the staff client To test: 1) Go to the detail page of a biblio with subscriptions in the staff client 2) Notice callnumber sits under the library name 3) Go to the detail page of the same biblio in OPAC 4) Notice callnumber is not in the same order 5) Apply patch, refresh page 6) Notice callnumber is now in same order Sponsored-by: Catalyst IT Followed test plan, works as expected. Signed-off-by: Marc Véron --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index e4fb61f..d5c4f16 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -805,7 +805,9 @@ [% IF ( subscription.closed ) %]

This subscription is closed.

[% END %] - [% IF ( subscription.callnumber ) %]

Call number: [% subscription.callnumber %]

[% END %]
+ [% IF ( subscription.callnumber ) %] +

Call number: [% subscription.callnumber %]

+ [% END %] [% IF ( subscription.subscriptionnotes ) %]

[% subscription.subscriptionnotes FILTER html_line_break %]

[% END %] @@ -816,9 +818,6 @@ [% IF ( subscription.opacnote ) %]

[% subscription.opacnote FILTER html_line_break %]

[% END %] - [% IF ( subscription.callnumber ) %] -

Call number: [% subscription.callnumber %]

- [% END %] [% IF ( subscription.latestserials ) %]

The [% subscription.opacdisplaycount %] latest issues for this subscription:

-- 2.1.4