From fbc072d7a588d5309d4af065ee6512be3f54e7a1 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=utf8 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 Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall --- 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 8aea0f3166..03fdd897e1 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -817,7 +817,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 %] @@ -839,9 +841,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.20.1