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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-3 / +4 lines)
Lines 454-460 Link Here
454
                            <p>
454
                            <p>
455
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
455
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
456
                                [% IF books_loo.title %]
456
                                [% IF books_loo.title %]
457
                                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %]
457
                                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a>[% IF books_loo.author %] by [% books_loo.author %][% END %]
458
                                [% ELSE %]
458
                                [% ELSE %]
459
                                    <em>Deleted bibliographic record, can't find title</em><br />
459
                                    <em>Deleted bibliographic record, can't find title</em><br />
460
                                [% END %]
460
                                [% END %]
Lines 578-587 Link Here
578
                      <p>
578
                      <p>
579
                        [% IF ( order.order_received ) %] (rcvd)[% END %]
579
                        [% IF ( order.order_received ) %] (rcvd)[% END %]
580
                        [% IF (order.title) %]
580
                        [% IF (order.title) %]
581
                          [% order.title |html %] by [% order.author %]<br />
581
                          [% order.title |html %][% IF order.author %] by [% order.author %][% END %]
582
                        [% ELSE %]
582
                        [% ELSE %]
583
                          <em>Deleted bibliographic record, can't find title</em><br />
583
                          <em>Deleted bibliographic record, can't find title</em>
584
                        [% END %]
584
                        [% END %]
585
                        <br />
585
                        [% IF ( order.order_internalnote ) %] [% order.order_internalnote %][% END %]
586
                        [% IF ( order.order_internalnote ) %] [% order.order_internalnote %][% END %]
586
                        [% IF ( order.isbn ) %] - [% order.isbn %][% END %]
587
                        [% IF ( order.isbn ) %] - [% order.isbn %][% END %]
587
                        [% IF ( order.issn ) %] - [% order.issn %][% END %]
588
                        [% IF ( order.issn ) %] - [% order.issn %][% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-4 / +7 lines)
Lines 147-155 Link Here
147
              [% FOREACH order IN orders_loop %]
147
              [% FOREACH order IN orders_loop %]
148
                <tr>
148
                <tr>
149
                  <td>
149
                  <td>
150
                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]">[% order.title %]</a>
150
                    [% IF order.biblionumber %]
151
                    [% IF ( order.author ) %]
151
                      <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]">[% order.title %]</a>
152
                      <br /><em>by</em> [% order.author %]
152
                      [% IF ( order.author ) %]
153
                        <br /><em>by</em> [% order.author %]
154
                      [% END %]
155
                    [% ELSE %]
156
                      <em>Deleted bibliographic record, can't find title</em>
153
                    [% END %]
157
                    [% END %]
154
                    [% IF ( order.publishercode ) %]
158
                    [% IF ( order.publishercode ) %]
155
                      <br/>[% order.publishercode %]
159
                      <br/>[% order.publishercode %]
156
- 

Return to bug 10181