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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-3 / +3 lines)
Lines 528-536 Link Here
528
                        <td>
528
                        <td>
529
                            <p>
529
                            <p>
530
                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
530
                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
531
                                [%- IF books_loo.title %]
531
                                [% IF books_loo.title %]
532
                                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber | uri %]">[% books_loo.title | html %]</a>[% IF books_loo.author %] by [% books_loo.author | html %][% END -%]
532
                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
533
                                [%- ELSE -%]
533
                                [% ELSE %]
534
                                    <em>Deleted bibliographic record, can't find title</em><br />
534
                                    <em>Deleted bibliographic record, can't find title</em><br />
535
                                [%- END %]
535
                                [%- END %]
536
                                <br />
536
                                <br />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-1 / +1 lines)
Lines 364-370 Link Here
364
                <tr>
364
                <tr>
365
                  <td>
365
                  <td>
366
                    [% IF order.biblionumber %]
366
                    [% IF order.biblionumber %]
367
                      <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
367
                      [% INCLUDE 'biblio-title.inc' biblio=order link = 1 %]
368
                      [% IF ( order.author ) %]
368
                      [% IF ( order.author ) %]
369
                        <br /><em>by</em> [% order.author | html %]
369
                        <br /><em>by</em> [% order.author | html %]
370
                      [% END %]
370
                      [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt (-1 / +5 lines)
Lines 53-59 Link Here
53
53
54
    <fieldset class="rows">
54
    <fieldset class="rows">
55
    <legend>Catalog details</legend>
55
    <legend>Catalog details</legend>
56
    <ol><li><span class="label">Title: </span><span class="title">[% order.biblio.title | html %]</span></li>
56
    <ol>
57
        <li>
58
            <span class="label">Title: </span>
59
            [% INCLUDE 'biblio-title.inc' biblio=order.biblio link = 1 %]
60
        </li>
57
    <li> <span class="label">Author: </span>
61
    <li> <span class="label">Author: </span>
58
        [% order.biblio.author | html %]</li>
62
        [% order.biblio.author | html %]</li>
59
    <li><span class="label">Copyright: </span>
63
    <li><span class="label">Copyright: </span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-1 / +2 lines)
Lines 227-233 Link Here
227
                    0
227
                    0
228
                  [% END %]
228
                  [% END %]
229
                </td>
229
                </td>
230
                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
230
                <td>
231
                    [% INCLUDE 'biblio-title.inc' biblio=order link = 1 %]
231
                [% IF ( order.author ) %] / [% order.author | html %][% END %]
232
                [% IF ( order.author ) %] / [% order.author | html %][% END %]
232
                [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
233
                [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
233
                [% IF ( order.publishercode ) %]
234
                [% IF ( order.publishercode ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt (-2 / +1 lines)
Lines 116-122 Link Here
116
            <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% uncertainpriceorder.basketno | uri %]">[% uncertainpriceorder.basketname | html %]</a>
116
            <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% uncertainpriceorder.basketno | uri %]">[% uncertainpriceorder.basketname | html %]</a>
117
        </td>
117
        </td>
118
	    <td>
118
	    <td>
119
            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% uncertainpriceorder.biblionumber | uri %]">[% uncertainpriceorder.title | html %]</a>
119
            [% INCLUDE 'biblio-title.inc' biblio=uncertainpriceorder link = 1 %]
120
            [% IF ( uncertainpriceorder.author ) %] <em>by</em> [% uncertainpriceorder.author | html %][% END %]
120
            [% IF ( uncertainpriceorder.author ) %] <em>by</em> [% uncertainpriceorder.author | html %][% END %]
121
            [% IF ( uncertainpriceorder.publishercode ) %]
121
            [% IF ( uncertainpriceorder.publishercode ) %]
122
                <br /><em>Publisher:</em> [% uncertainpriceorder.publishercode | html %]
122
                <br /><em>Publisher:</em> [% uncertainpriceorder.publishercode | html %]
123
- 

Return to bug 27817