View | Details | Raw Unified | Return to bug 30205
Collapse All | Expand All

(-)a/C4/Serials.pm (+1 lines)
Lines 269-274 sub GetSubscription { Link Here
269
                subscriptionhistory.*,
269
                subscriptionhistory.*,
270
                aqbooksellers.name AS aqbooksellername,
270
                aqbooksellers.name AS aqbooksellername,
271
                biblio.title AS bibliotitle,
271
                biblio.title AS bibliotitle,
272
                biblio.subtitle AS bibliosubtitle,
272
                subscription.biblionumber as bibnum
273
                subscription.biblionumber as bibnum
273
       FROM subscription
274
       FROM subscription
274
       LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
275
       LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt (-3 / +2 lines)
Lines 50-56 Link Here
50
                [% INCLUDE 'serials-toolbar.inc' %]
50
                [% INCLUDE 'serials-toolbar.inc' %]
51
                [% INCLUDE 'mana/mana-comment-status.inc' %]
51
                [% INCLUDE 'mana/mana-comment-status.inc' %]
52
52
53
                <h1>Subscription for [% bibliotitle | html %] [% IF closed %](closed)[% END %]</h1>
53
                <h1>Subscription for [% bibliotitle | html %] [% bibliosubtitle | html %] [% IF closed %](closed)[% END %]</h1>
54
54
55
                [% IF ( abouttoexpire ) %]
55
                [% IF ( abouttoexpire ) %]
56
                    [% UNLESS closed %]
56
                    [% UNLESS closed %]
Lines 111-117 Link Here
111
                                        <li><span class="label">Subscription ID: </span>[% subscriptionid | html %]</li>
111
                                        <li><span class="label">Subscription ID: </span>[% subscriptionid | html %]</li>
112
                                        <li><span class="label">Librarian identity:</span> [% librarian | html %]</li>
112
                                        <li><span class="label">Librarian identity:</span> [% librarian | html %]</li>
113
                                        <li><span class="label">Vendor:</span> <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% aqbooksellerid | uri %]">[% aqbooksellername | html %]</a></li>
113
                                        <li><span class="label">Vendor:</span> <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% aqbooksellerid | uri %]">[% aqbooksellername | html %]</a></li>
114
                                        <li><span class="label">Biblio:</span>  <a href="/cgi-bin/koha/catalogue/[% default_bib_view | uri %].pl?biblionumber=[% bibnum | uri %]">[% bibliotitle | html %]</a> <em>([% bibnum | html %])</em></li>
114
                                        <li><span class="label">Biblio:</span>  <a href="/cgi-bin/koha/catalogue/[% default_bib_view | uri %].pl?biblionumber=[% bibnum | uri %]">[% bibliotitle | html %] [% bibliosubtitle | html %]</a> <em>([% bibnum | html %])</em></li>
115
                                        [% IF ( OPACBaseURL ) %]
115
                                        [% IF ( OPACBaseURL ) %]
116
                                            <li>
116
                                            <li>
117
                                                <span class="label">OPAC view:</span>
117
                                                <span class="label">OPAC view:</span>
118
- 

Return to bug 30205