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

(-)a/acqui/addorderiso2709.pl (-1 / +12 lines)
Lines 287-292 if ($op eq ""){ Link Here
287
287
288
                    # remove uncertainprice flag if we have found a price in the MARC record
288
                    # remove uncertainprice flag if we have found a price in the MARC record
289
                    $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
289
                    $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
290
291
                    %orderinfo = %{
292
                        C4::Acquisition::populate_order_with_prices(
293
                            {
294
                                order        => \%orderinfo,
295
                                booksellerid => $booksellerid,
296
                                ordering     => 1,
297
                                receiving    => 1,
298
                            }
299
                        )
300
                    };
301
290
                    my $order = Koha::Acquisition::Order->new( \%orderinfo )->insert;
302
                    my $order = Koha::Acquisition::Order->new( \%orderinfo )->insert;
291
                }
303
                }
292
            }
304
            }
293
- 

Return to bug 15503