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

(-)a/acqui/lateorders.pl (-2 / +1 lines)
Lines 151-157 my @lateorders = Koha::Acquisition::Orders->filter_by_lates( Link Here
151
my $booksellers = Koha::Acquisition::Booksellers->search(
151
my $booksellers = Koha::Acquisition::Booksellers->search(
152
    {
152
    {
153
        id => {
153
        id => {
154
            -in => map { $_->basket->booksellerid } @lateorders
154
            -in => [ map { $_->basket->booksellerid } @lateorders ]
155
        },
155
        },
156
    }
156
    }
157
);
157
);
158
- 

Return to bug 25266