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

(-)a/Koha/EDI.pm (-2 / +4 lines)
Lines 799-805 sub quote_item { Link Here
799
799
800
                my $basket = Koha::Acquisition::Basket->find( $basketno );
800
                my $basket = Koha::Acquisition::Basket->find( $basketno );
801
801
802
                if ( $basket->effective_create_item eq 'ordering' ) {
802
                if (  $basket
803
                    ? $basket->effective_create_item eq 'ordering'
804
                    : C4::Context->preference('AcqCreateItem') eq 'ordering' )
805
                {
803
                    my $new_item = {
806
                    my $new_item = {
804
                        notforloan       => -1,
807
                        notforloan       => -1,
805
                        cn_sort          => q{},
808
                        cn_sort          => q{},
806
- 

Return to bug 20446