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

(-)a/acqui/basket.pl (-2 lines)
Lines 417-424 sub get_order_infos { Link Here
417
        my $seriestitle = $order->{'seriestitle'};
417
        my $seriestitle = $order->{'seriestitle'};
418
        $line{'title'} .= " / $seriestitle" if $seriestitle;
418
        $line{'title'} .= " / $seriestitle" if $seriestitle;
419
        $line{'title'} .= " / $volume"      if $volume;
419
        $line{'title'} .= " / $volume"      if $volume;
420
    } else {
421
        $line{'title'} = "Deleted bibliographic notice, can't find title.";
422
    }
420
    }
423
421
424
    my $biblionumber = $order->{'biblionumber'};
422
    my $biblionumber = $order->{'biblionumber'};
(-)a/acqui/invoice.pl (-2 lines)
Lines 210-217 sub get_infos { Link Here
210
        my $seriestitle = $order->{'seriestitle'};
210
        my $seriestitle = $order->{'seriestitle'};
211
        $line{'title'} .= " / $seriestitle" if $seriestitle;
211
        $line{'title'} .= " / $seriestitle" if $seriestitle;
212
        $line{'title'} .= " / $volume"      if $volume;
212
        $line{'title'} .= " / $volume"      if $volume;
213
    } else {
214
        $line{'title'} = "Deleted bibliographic notice, can't find title.";
215
    }
213
    }
216
214
217
    return \%line;
215
    return \%line;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-2 / +5 lines)
Lines 453-459 Link Here
453
                        <td>
453
                        <td>
454
                            <p>
454
                            <p>
455
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
455
                                [% IF ( books_loo.order_received ) %] (rcvd)[% END %]
456
                                <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %]
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 %]
458
                                [% ELSE %]
459
                                    <em>Deleted bibliographic record, can't find title</em><br />
460
                                [% END %]
457
                                <br />
461
                                <br />
458
                                [% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %]
462
                                [% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %]
459
                                [% IF ( books_loo.issn ) %] - [% books_loo.issn %][% END %]
463
                                [% IF ( books_loo.issn ) %] - [% books_loo.issn %][% END %]
460
- 

Return to bug 10181