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

(-)a/acqui/addorder.pl (-1 / +6 lines)
Lines 338-343 if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) { Link Here
338
                STATUS       => 'ORDERED',
338
                STATUS       => 'ORDERED',
339
            }
339
            }
340
        );
340
        );
341
        if ( C4::Context->preference('PlaceHoldsOnOrdersFromSuggestions') ) {
342
            my $suggestion = Koha::Suggestions->find($suggestionid);
343
            if ($suggestion) {
344
                $suggestion->place_hold();
345
            }
346
        }
341
    }
347
    }
342
348
343
    $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq '';
349
    $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq '';
344
- 

Return to bug 27595