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

(-)a/C4/Acquisition.pm (-2 / +1 lines)
Lines 1417-1423 sub ModReceiveOrder { Link Here
1417
    $order->{invoice_unitprice} ||= $order->{unitprice};
1417
    $order->{invoice_unitprice} ||= $order->{unitprice};
1418
    $order->{invoice_currency}  ||= Koha::Acquisition::Currencies->get_active->currency;
1418
    $order->{invoice_currency}  ||= Koha::Acquisition::Currencies->get_active->currency;
1419
1419
1420
    my $suggestion = Koha::Suggestions->find( { biblionumber => $biblionumber } );
1420
    my $suggestion = Koha::Suggestions->search( { biblionumber => $biblionumber } )->single;
1421
    if ($suggestion) {
1421
    if ($suggestion) {
1422
        ModSuggestion(
1422
        ModSuggestion(
1423
            {
1423
            {
1424
- 

Return to bug 39722