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

(-)a/C4/Circulation.pm (+6 lines)
Lines 2941-2946 sub CanBookBeRenewed { Link Here
2941
2941
2942
    return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
2942
    return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
2943
2943
2944
    # Check pending article requests on item or biblio level
2945
    if( C4::Context->preference('CheckArticleRequestsOnRenewal') && $item->has_pending_article_requests ) {
2946
        # TODO Can be improved. Currently we act like there is a reserve found. Same effect ;)
2947
        return ( 0, "on_reserve" );
2948
    }
2949
2944
    return ( 1, undef );
2950
    return ( 1, undef );
2945
}
2951
}
2946
2952
(-)a/Koha/Item.pm (+41 lines)
Lines 46-51 use Koha::Plugins; Link Here
46
use Koha::Libraries;
46
use Koha::Libraries;
47
use Koha::StockRotationItem;
47
use Koha::StockRotationItem;
48
use Koha::StockRotationRotas;
48
use Koha::StockRotationRotas;
49
use Koha::ArticleRequests;
49
50
50
use base qw(Koha::Object);
51
use base qw(Koha::Object);
51
52
Lines 1198-1203 sub _after_item_action_hooks { Link Here
1198
    );
1199
    );
1199
}
1200
}
1200
1201
1202
=head3 has_pending_article_requests
1203
1204
=cut
1205
1206
sub has_pending_article_requests {
1207
    my ( $self, $params ) = @_;
1208
    return if !C4::Context->preference('ArticleRequests');
1209
1210
    # First check item level requests
1211
    my $rs_1 = Koha::ArticleRequests->search({
1212
        status => { -in => [ 'PENDING', 'PROCESSING' ] },
1213
        itemnumber => $self->id,
1214
    });
1215
    return 1 if $rs_1->count;
1216
1217
    # Now check biblio level requests
1218
    my $rs_2 = Koha::ArticleRequests->search({
1219
        status => { -in => [ 'PENDING', 'PROCESSING' ] },
1220
        itemnumber => undef,
1221
        biblionumber => $self->biblionumber,
1222
    });
1223
    return if !$rs_2->count;
1224
1225
    # Is another item available for biblio level requests?
1226
    # Only one item should be enough.
1227
    # Note: NOT looking at notforloan (yet?)
1228
    my $rs_3 = Koha::Items->search({
1229
        'me.biblionumber' => $self->biblionumber,
1230
        itemlost => 0,
1231
        withdrawn => 0,
1232
        damaged => 0,
1233
        onloan => undef,
1234
        'reserves.found' => undef,
1235
    }, {
1236
        join => 'reserves',
1237
    });
1238
    return 1 if !$rs_3->count;
1239
    return;
1240
}
1241
1201
=head3 _type
1242
=head3 _type
1202
1243
1203
=cut
1244
=cut
(-)a/t/db_dependent/Circulation.t (-1 / +23 lines)
Lines 51-56 use Koha::Subscriptions; Link Here
51
use Koha::Account::Lines;
51
use Koha::Account::Lines;
52
use Koha::Account::Offsets;
52
use Koha::Account::Offsets;
53
use Koha::ActionLogs;
53
use Koha::ActionLogs;
54
use Koha::ArticleRequests;
54
55
55
sub set_userenv {
56
sub set_userenv {
56
    my ( $library ) = @_;
57
    my ( $library ) = @_;
Lines 415-421 subtest "GetIssuingCharges tests" => sub { Link Here
415
416
416
my ( $reused_itemnumber_1, $reused_itemnumber_2 );
417
my ( $reused_itemnumber_1, $reused_itemnumber_2 );
417
subtest "CanBookBeRenewed tests" => sub {
418
subtest "CanBookBeRenewed tests" => sub {
418
    plan tests => 95;
419
    plan tests => 99;
419
420
420
    C4::Context->set_preference('ItemsDeniedRenewal','');
421
    C4::Context->set_preference('ItemsDeniedRenewal','');
421
    # Generate test biblio
422
    # Generate test biblio
Lines 1444-1449 subtest "CanBookBeRenewed tests" => sub { Link Here
1444
            $item_3->itemcallnumber || '' ),
1445
            $item_3->itemcallnumber || '' ),
1445
        "Account line description must not contain 'Lost Items ', but be title, barcode, itemcallnumber"
1446
        "Account line description must not contain 'Lost Items ', but be title, barcode, itemcallnumber"
1446
    );
1447
    );
1448
1449
    # Optional test on pending article requests
1450
    t::lib::Mocks::mock_preference( 'OverduesBlockRenewing', 'allow' ); # allow again
1451
    t::lib::Mocks::mock_preference( 'CheckArticleRequestsOnRenewal', 0 );
1452
    LostItem( $item_3->itemnumber, 'test', 1 ); # returned again
1453
    AddIssue( $renewing_borrower, $item_3->barcode );
1454
    Koha::CirculationRules->set_rules({
1455
        categorycode => undef, branchcode => undef, itemtype => undef, rules => { renewalsallowed => 10 },
1456
    });
1457
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1458
    is( $renewokay, 1, 'Renewal possible again' );
1459
    my $artreq1 = $builder->build_object({ class => 'Koha::ArticleRequests',
1460
        value => { borrowernumber => $renewing_borrowernumber, itemnumber => $item_3->itemnumber, biblionumber => $item_3->biblionumber, status => 'PENDING' },
1461
    });
1462
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1463
    is( $renewokay, 1, 'Renewal still possible, still need to enable pref' );
1464
    t::lib::Mocks::mock_preference( 'CheckArticleRequestsOnRenewal', 1 );
1465
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1466
    is( $renewokay, 0, 'Renewal not possible, pref enabled' );
1467
    is( $error, 'on_reserve', 'Error message currently resembles presence of holds' );
1468
1447
};
1469
};
1448
1470
1449
subtest "GetUpcomingDueIssues" => sub {
1471
subtest "GetUpcomingDueIssues" => sub {
(-)a/t/db_dependent/Koha/Item/has_pending_article_requests.t (-1 / +81 lines)
Line 0 Link Here
0
- 
1
#!/usr/bin/perl
2
3
# Copyright 2021 Rijksmuseum
4
#
5
# This file is part of Koha
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
use Modern::Perl;
21
use Data::Dumper qw/Dumper/;
22
23
use Test::More tests => 1;
24
25
use t::lib::TestBuilder;
26
use t::lib::Mocks;
27
28
use Koha::Database;
29
use Koha::ArticleRequests;
30
use Koha::DateUtils qw/dt_from_string/;
31
use Koha::Holds;
32
use Koha::Items;
33
use Koha::Patrons;
34
use C4::Circulation ();
35
use C4::Reserves ();
36
37
my $schema  = Koha::Database->new->schema;
38
my $builder = t::lib::TestBuilder->new;
39
40
subtest 'has_pending_article_requests' => sub {
41
    plan tests => 8;
42
    $schema->storage->txn_begin;
43
44
    t::lib::Mocks::mock_preference( 'ArticleRequests', 1 );
45
46
    my $item1  = $builder->build_sample_item;
47
    my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
48
    t::lib::Mocks::mock_userenv({ branchcode => $patron1->branchcode });
49
50
    my $artreq1 = $builder->build_object({ class => 'Koha::ArticleRequests',
51
        value => { borrowernumber => $patron1->borrowernumber, itemnumber => $item1->itemnumber, biblionumber => $item1->biblionumber, status => 'PENDING' },
52
    });
53
    C4::Circulation::AddIssue( $patron1->unblessed, $item1->barcode, dt_from_string() );
54
    is( $item1->has_pending_article_requests, 1, 'Expect true for item level request' );
55
56
    $artreq1->status('COMPLETED')->store;
57
    is( $item1->has_pending_article_requests, undef, 'Expect false for completed item level request' );
58
59
    $artreq1->itemnumber(undef);
60
    $artreq1->status('PROCESSING')->store;
61
    is( $item1->has_pending_article_requests, 1, 'Expect true for biblio level request with no other items' );
62
63
    my $item2 = $builder->build_sample_item;
64
    $item2->biblionumber( $item1->biblionumber )->store;
65
    is( $item1->has_pending_article_requests, undef, 'Expect false for biblio level request with another available item' );
66
67
    $item2->damaged(1)->store;
68
    is( $item1->has_pending_article_requests, 1, 'Expect true for biblio level request with only another damaged item' );
69
    $item2->damaged(0)->store;
70
    is( $item1->has_pending_article_requests, undef, 'Expect false again when clearing damaged status' );
71
72
    C4::Reserves::AddReserve({
73
        branchcode => $patron1->branchcode, borrowernumber => $patron1->borrowernumber, biblionumber => $item2->biblionumber,
74
        priority => 1, itemnumber => $item2->itemnumber,
75
    });
76
    is( $item1->has_pending_article_requests, undef, 'Expect false for biblio level request with only another item and a reserve' );
77
    Koha::Holds->search({ itemnumber => $item2->itemnumber })->next->set_waiting;
78
    is( $item1->has_pending_article_requests, 1, 'Expect true for biblio level request with only another item on hold and waiting' );
79
80
    $schema->storage->txn_rollback;
81
};

Return to bug 28705