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 462-468 Link Here
462
                            <p>
462
                            <p>
463
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
463
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
464
                                [% IF books_loo.title %]
464
                                [% IF books_loo.title %]
465
                                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %]
465
                                    <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 %]
466
                                [% ELSE %]
466
                                [% ELSE %]
467
                                    <em>Deleted bibliographic record, can't find title</em><br />
467
                                    <em>Deleted bibliographic record, can't find title</em><br />
468
                                [% END %]
468
                                [% END %]
Lines 586-595 Link Here
586
                      <p>
586
                      <p>
587
                        [% IF ( order.order_received ) %] (rcvd)[% END %]
587
                        [% IF ( order.order_received ) %] (rcvd)[% END %]
588
                        [% IF (order.title) %]
588
                        [% IF (order.title) %]
589
                          [% order.title |html %] by [% order.author %]<br />
589
                          [% order.title |html %][% IF order.author %] by [% order.author %][% END %]
590
                        [% ELSE %]
590
                        [% ELSE %]
591
                          <em>Deleted bibliographic record, can't find title</em><br />
591
                          <em>Deleted bibliographic record, can't find title</em>
592
                        [% END %]
592
                        [% END %]
593
                        <br />
593
                        [% IF ( order.order_internalnote ) %] [% order.order_internalnote %][% END %]
594
                        [% IF ( order.order_internalnote ) %] [% order.order_internalnote %][% END %]
594
                        [% IF ( order.isbn ) %] - [% order.isbn %][% END %]
595
                        [% IF ( order.isbn ) %] - [% order.isbn %][% END %]
595
                        [% IF ( order.issn ) %] - [% order.issn %][% END %]
596
                        [% 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