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 573-578 Link Here
573
                                                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
573
                                                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
574
                                                                [% IF books_loo.title %]
574
                                                                [% IF books_loo.title %]
575
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
575
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
576
                                                                [% ELSIF books_loo.deleted_biblio %]
577
                                                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo.deleted_biblio %]
578
                                                                    <br/>(Deleted bibliographic record)
576
                                                                [% ELSE %]
579
                                                                [% ELSE %]
577
                                                                    <em>Deleted bibliographic record, can't find title</em><br />
580
                                                                    <em>Deleted bibliographic record, can't find title</em><br />
578
                                                                [%- END %]
581
                                                                [%- END %]
Lines 764-769 Link Here
764
                                                                [% IF ( order.order_received ) %] <span class="order-received">(received)</span>[% END %]
767
                                                                [% IF ( order.order_received ) %] <span class="order-received">(received)</span>[% END %]
765
                                                                [% IF (order.title) %]
768
                                                                [% IF (order.title) %]
766
                                                                    [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %]
769
                                                                    [% order.title | html %][% IF order.author %] by [% order.author | html %][% END %]
770
                                                                [% ELSIF order.deleted_biblio %]
771
                                                                    [% INCLUDE 'biblio-title.inc' biblio=order.deleted_biblio %]
772
                                                                    <br/>(Deleted bibliographic record)
767
                                                                [% ELSE %]
773
                                                                [% ELSE %]
768
                                                                    <em>Deleted bibliographic record, can't find title</em>
774
                                                                    <em>Deleted bibliographic record, can't find title</em>
769
                                                                [% END %]
775
                                                                [% END %]
770
- 

Return to bug 10758