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

(-)a/acqui/basket.pl (-1 / +3 lines)
Lines 41-46 use Koha::CsvProfiles; Link Here
41
use Koha::Patrons;
41
use Koha::Patrons;
42
42
43
use Koha::AdditionalFields;
43
use Koha::AdditionalFields;
44
use Koha::Old::Biblios;
44
45
45
=head1 NAME
46
=head1 NAME
46
47
Lines 500-506 sub get_order_infos { Link Here
500
        $line{holds_on_order}      = $itemholds ? $itemholds : $holds_count if $line{left_holds_on_order};
501
        $line{holds_on_order}      = $itemholds ? $itemholds : $holds_count if $line{left_holds_on_order};
501
        $line{order_object}        = $order;
502
        $line{order_object}        = $order;
502
        $line{invoice_object}      = $invoice;
503
        $line{invoice_object}      = $invoice;
503
504
    } else {
505
        $line{deleted_biblio} = Koha::Old::Biblios->find( $order->{deleted_biblionumber} );
504
    }
506
    }
505
507
506
    my $suggestion   = GetSuggestionInfoFromBiblionumber($line{biblionumber});
508
    my $suggestion   = GetSuggestionInfoFromBiblionumber($line{biblionumber});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-1 / +6 lines)
Lines 600-605 Link Here
600
                                                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
600
                                                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
601
                                                                [% IF books_loo.title %]
601
                                                                [% IF books_loo.title %]
602
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
602
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
603
                                                                [% ELSIF books_loo.deleted_biblio %]
604
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo.deleted_biblio %]
605
                                                                    <br/>(Deleted bibliographic record)
603
                                                                [% ELSE %]
606
                                                                [% ELSE %]
604
                                                                    <em>Deleted bibliographic record, can't find title</em><br />
607
                                                                    <em>Deleted bibliographic record, can't find title</em><br />
605
                                                                [%- END %]
608
                                                                [%- END %]
Lines 791-796 Link Here
791
                                                                [% IF ( order.order_received ) %] <span class="order-received">(received)</span>[% END %]
794
                                                                [% IF ( order.order_received ) %] <span class="order-received">(received)</span>[% END %]
792
                                                                [% IF (order.title) %]
795
                                                                [% IF (order.title) %]
793
                                                                    [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %]
796
                                                                    [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %]
797
                                                                [% ELSIF order.deleted_biblio %]
798
                                                                    [% INCLUDE 'biblio-title.inc' biblio=order.deleted_biblio %]
799
                                                                    <br/>(Deleted bibliographic record)
794
                                                                [% ELSE %]
800
                                                                [% ELSE %]
795
                                                                    <em>Deleted bibliographic record, can't find title</em>
801
                                                                    <em>Deleted bibliographic record, can't find title</em>
796
                                                                [% END %]
802
                                                                [% END %]
797
- 

Return to bug 10758