@@ -, +, @@ --- acqui/basket.pl | 2 -- acqui/invoice.pl | 2 -- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 6 +++++- 3 files changed, 5 insertions(+), 5 deletions(-) --- a/acqui/basket.pl +++ a/acqui/basket.pl @@ -417,8 +417,6 @@ sub get_order_infos { my $seriestitle = $order->{'seriestitle'}; $line{'title'} .= " / $seriestitle" if $seriestitle; $line{'title'} .= " / $volume" if $volume; - } else { - $line{'title'} = "Deleted bibliographic notice, can't find title."; } my $biblionumber = $order->{'biblionumber'}; --- a/acqui/invoice.pl +++ a/acqui/invoice.pl @@ -210,8 +210,6 @@ sub get_infos { my $seriestitle = $order->{'seriestitle'}; $line{'title'} .= " / $seriestitle" if $seriestitle; $line{'title'} .= " / $volume" if $volume; - } else { - $line{'title'} = "Deleted bibliographic notice, can't find title."; } return \%line; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -453,7 +453,11 @@

[% IF ( books_loo.order_received ) %] (rcvd)[% END %] - [% books_loo.title |html %] by [% books_loo.author %] + [% IF books_loo.title %] + [% books_loo.title |html %] by [% books_loo.author %] + [% ELSE %] + Deleted bibliographic record, can't find title
+ [% END %]
[% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %] [% IF ( books_loo.issn ) %] - [% books_loo.issn %][% END %] --