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

(-)a/C4/Circulation.pm (+6 lines)
Lines 2868-2873 sub CanBookBeRenewed { Link Here
2868
2868
2869
    return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
2869
    return ( 0, "auto_renew" ) if $auto_renew eq "ok" && !$override_limit; # 0 if auto-renewal should not succeed
2870
2870
2871
    # Check current article requests on item or biblio level
2872
    if( C4::Context->preference('CheckArticleRequestsOnRenewal') && $item->has_current_article_requests ) {
2873
        # TODO Can be improved. Currently we act like there is a reserve found. Same effect ;)
2874
        return ( 0, "on_reserve" );
2875
    }
2876
2871
    return ( 1, undef );
2877
    return ( 1, undef );
2872
}
2878
}
2873
2879
(-)a/Koha/Item.pm (+46 lines)
Lines 30-35 use C4::Reserves; Link Here
30
use C4::ClassSource qw( GetClassSort );
30
use C4::ClassSource qw( GetClassSort );
31
use C4::Log qw( logaction );
31
use C4::Log qw( logaction );
32
32
33
use Koha::ArticleRequests;
33
use Koha::Checkouts;
34
use Koha::Checkouts;
34
use Koha::CirculationRules;
35
use Koha::CirculationRules;
35
use Koha::CoverImages;
36
use Koha::CoverImages;
Lines 1427-1432 sub _after_item_action_hooks { Link Here
1427
    );
1428
    );
1428
}
1429
}
1429
1430
1431
=head3 has_current_article_requests
1432
1433
    Checks if an item has current item or biblio level
1434
    requests. For biblio level requests the result depends
1435
    on another item being available.
1436
    Returns true or undef.
1437
1438
=cut
1439
1440
sub has_current_article_requests {
1441
    my ( $self, $params ) = @_;
1442
    return if !C4::Context->preference('ArticleRequests');
1443
1444
    # First check item level requests
1445
    my $rs_1 = Koha::ArticleRequests->search({
1446
        status => { -in => [ 'PENDING', 'PROCESSING' ] },
1447
        itemnumber => $self->id,
1448
    });
1449
    return 1 if $rs_1->count;
1450
1451
    # Now check biblio level requests
1452
    my $rs_2 = Koha::ArticleRequests->search({
1453
        status => { -in => [ 'PENDING', 'PROCESSING' ] },
1454
        itemnumber => undef,
1455
        biblionumber => $self->biblionumber,
1456
    });
1457
    return if !$rs_2->count;
1458
1459
    # Is another item available for biblio level requests?
1460
    # Only one item should be enough.
1461
    # Note: NOT looking at notforloan (yet?)
1462
    my $rs_3 = Koha::Items->search({
1463
        'me.biblionumber' => $self->biblionumber,
1464
        itemlost => 0,
1465
        withdrawn => 0,
1466
        damaged => 0,
1467
        onloan => undef,
1468
        'reserves.found' => undef,
1469
    }, {
1470
        join => 'reserves',
1471
    });
1472
    return 1 if !$rs_3->count;
1473
    return;
1474
}
1475
1430
=head3 _type
1476
=head3 _type
1431
1477
1432
=cut
1478
=cut
(-)a/t/db_dependent/Circulation.t (-1 / +23 lines)
Lines 53-58 use Koha::Subscriptions; Link Here
53
use Koha::Account::Lines;
53
use Koha::Account::Lines;
54
use Koha::Account::Offsets;
54
use Koha::Account::Offsets;
55
use Koha::ActionLogs;
55
use Koha::ActionLogs;
56
use Koha::ArticleRequests;
56
use Koha::Notice::Messages;
57
use Koha::Notice::Messages;
57
58
58
sub set_userenv {
59
sub set_userenv {
Lines 418-424 subtest "GetIssuingCharges tests" => sub { Link Here
418
419
419
my ( $reused_itemnumber_1, $reused_itemnumber_2 );
420
my ( $reused_itemnumber_1, $reused_itemnumber_2 );
420
subtest "CanBookBeRenewed tests" => sub {
421
subtest "CanBookBeRenewed tests" => sub {
421
    plan tests => 95;
422
    plan tests => 99;
422
423
423
    C4::Context->set_preference('ItemsDeniedRenewal','');
424
    C4::Context->set_preference('ItemsDeniedRenewal','');
424
    # Generate test biblio
425
    # Generate test biblio
Lines 1447-1452 subtest "CanBookBeRenewed tests" => sub { Link Here
1447
            $item_3->itemcallnumber || '' ),
1448
            $item_3->itemcallnumber || '' ),
1448
        "Account line description must not contain 'Lost Items ', but be title, barcode, itemcallnumber"
1449
        "Account line description must not contain 'Lost Items ', but be title, barcode, itemcallnumber"
1449
    );
1450
    );
1451
1452
    # Optional test on pending article requests
1453
    t::lib::Mocks::mock_preference( 'OverduesBlockRenewing', 'allow' ); # allow again
1454
    t::lib::Mocks::mock_preference( 'CheckArticleRequestsOnRenewal', 0 );
1455
    LostItem( $item_3->itemnumber, 'test', 1 ); # returned again
1456
    AddIssue( $renewing_borrower, $item_3->barcode );
1457
    Koha::CirculationRules->set_rules({
1458
        categorycode => undef, branchcode => undef, itemtype => undef, rules => { renewalsallowed => 10 },
1459
    });
1460
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1461
    is( $renewokay, 1, 'Renewal possible again' );
1462
    my $artreq1 = $builder->build_object({ class => 'Koha::ArticleRequests',
1463
        value => { borrowernumber => $renewing_borrowernumber, itemnumber => $item_3->itemnumber, biblionumber => $item_3->biblionumber, status => 'PENDING' },
1464
    });
1465
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1466
    is( $renewokay, 1, 'Renewal still possible, still need to enable pref' );
1467
    t::lib::Mocks::mock_preference( 'CheckArticleRequestsOnRenewal', 1 );
1468
    ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_3->itemnumber );
1469
    is( $renewokay, 0, 'Renewal not possible, pref enabled' );
1470
    is( $error, 'on_reserve', 'Error message currently resembles presence of holds' );
1471
1450
};
1472
};
1451
1473
1452
subtest "GetUpcomingDueIssues" => sub {
1474
subtest "GetUpcomingDueIssues" => sub {
(-)a/t/db_dependent/Koha/Item/has_current_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_current_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_current_article_requests, 1, 'Expect true for item level request' );
55
56
    $artreq1->status('COMPLETED')->store;
57
    is( $item1->has_current_article_requests, undef, 'Expect false for completed item level request' );
58
59
    $artreq1->itemnumber(undef);
60
    $artreq1->status('PROCESSING')->store;
61
    is( $item1->has_current_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_current_article_requests, undef, 'Expect false for biblio level request with another available item' );
66
67
    $item2->damaged(1)->store;
68
    is( $item1->has_current_article_requests, 1, 'Expect true for biblio level request with only another damaged item' );
69
    $item2->damaged(0)->store;
70
    is( $item1->has_current_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_current_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_current_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