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

(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-3 / +10 lines)
Lines 18-23 use C4::Context; Link Here
18
use C4::Circulation qw( AddIssue GetIssuingCharges CanBookBeIssued ProcessOfflineIssue );
18
use C4::Circulation qw( AddIssue GetIssuingCharges CanBookBeIssued ProcessOfflineIssue );
19
use C4::Members;
19
use C4::Members;
20
use Koha::DateUtils qw( dt_from_string );
20
use Koha::DateUtils qw( dt_from_string );
21
use Koha::Items;
21
22
22
use parent qw(C4::SIP::ILS::Transaction);
23
use parent qw(C4::SIP::ILS::Transaction);
23
24
Lines 48-53 sub do_checkout { Link Here
48
    my $patron         = Koha::Patrons->find($self->{patron}->{borrowernumber});
49
    my $patron         = Koha::Patrons->find($self->{patron}->{borrowernumber});
49
    my $overridden_duedate; # usually passed as undef to AddIssue
50
    my $overridden_duedate; # usually passed as undef to AddIssue
50
    my $prevcheckout_block_checkout  = $account->{prevcheckout_block_checkout};
51
    my $prevcheckout_block_checkout  = $account->{prevcheckout_block_checkout};
52
    my $allow_additional_materials_checkout = $account->{allow_additional_materials_checkout};
51
    my ($issuingimpossible, $needsconfirmation) = _can_we_issue($patron, $barcode, 0);
53
    my ($issuingimpossible, $needsconfirmation) = _can_we_issue($patron, $barcode, 0);
52
54
53
    if ( $no_block_due_date ) {
55
    if ( $no_block_due_date ) {
Lines 105-113 sub do_checkout { Link Here
105
                $noerror = 0 if ($prevcheckout_block_checkout);
107
                $noerror = 0 if ($prevcheckout_block_checkout);
106
                last;
108
                last;
107
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
109
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
108
                $self->screen_msg('Item must be checked out at a circulation desk');
110
                if ( $allow_additional_materials_checkout ) {
109
                $noerror = 0;
111
                    my $item = Koha::Items->find({ barcode => $barcode });
110
                last;
112
                    $self->screen_msg( 'Item has additional materials: ' . $item->materials );
113
                } else {
114
                    $self->screen_msg('Item must be checked out at a circulation desk');
115
                    $noerror = 0;
116
                    last;
117
                }
111
            } else {
118
            } else {
112
                # We've been returned a case other than those above
119
                # We've been returned a case other than those above
113
                $self->screen_msg("Item cannot be issued: $confirmation");
120
                $self->screen_msg("Item cannot be issued: $confirmation");
(-)a/etc/SIPconfig.xml (+1 lines)
Lines 69-74 Link Here
69
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
69
             da_field_template="[% patron.surname %][% IF patron.firstname %], [% patron.firstname %][% END %]"
70
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]"
70
             av_field_template="[% accountline.description %] [% accountline.amountoutstanding | format('%.2f') %]"
71
             hide_fields="BD,BE,BF,PB"
71
             hide_fields="BD,BE,BF,PB"
72
             allow_additional_materials_checkout="1"
72
             register_id=''
73
             register_id=''
73
             holds_block_checkin="0"
74
             holds_block_checkin="0"
74
             holds_get_captured="1"
75
             holds_get_captured="1"
(-)a/t/db_dependent/SIP/Message.t (-2 / +67 lines)
Lines 21-27 Link Here
21
# along with Koha; if not, see <http://www.gnu.org/licenses>.
21
# along with Koha; if not, see <http://www.gnu.org/licenses>.
22
22
23
use Modern::Perl;
23
use Modern::Perl;
24
use Test::More tests => 16;
24
use Test::More tests => 17;
25
use Test::Exception;
25
use Test::Exception;
26
use Test::MockObject;
26
use Test::MockObject;
27
use Test::MockModule;
27
use Test::MockModule;
Lines 577-582 subtest 'SC status tests' => sub { Link Here
577
577
578
};
578
};
579
579
580
subtest 'test_allow_additional_materials_checkout' => sub {
581
    my $schema = Koha::Database->new->schema;
582
    $schema->storage->txn_begin;
583
584
    plan tests => 4;
585
586
    my $builder = t::lib::TestBuilder->new();
587
    my $branchcode  = $builder->build({ source => 'Branch' })->{branchcode};
588
    my $branchcode2 = $builder->build({ source => 'Branch' })->{branchcode};
589
    my ( $response, $findpatron );
590
    my $mocks = create_mocks( \$response, \$findpatron, \$branchcode );
591
592
    # create some data
593
    my $patron1 = $builder->build({
594
        source => 'Borrower',
595
        value  => {
596
            password => hash_password( PATRON_PW ),
597
        },
598
    });
599
    my $card1 = $patron1->{cardnumber};
600
    my $sip_patron1 = C4::SIP::ILS::Patron->new( $card1 );
601
    $findpatron = $sip_patron1;
602
    my $item_object = $builder->build_sample_item({
603
        damaged => 0,
604
        withdrawn => 0,
605
        itemlost => 0,
606
        restricted => 0,
607
        homebranch => $branchcode,
608
        holdingbranch => $branchcode,
609
        materials => "This is a materials note",
610
    });
611
612
    my $mockILS = $mocks->{ils};
613
    my $server = { ils => $mockILS, account => {} };
614
    $mockILS->mock( 'institution', sub { $branchcode; } );
615
    $mockILS->mock( 'supports', sub { return; } );
616
    $mockILS->mock( 'checkout', sub {
617
        shift;
618
        return C4::SIP::ILS->checkout(@_);
619
    });
620
    my $today = dt_from_string;
621
    t::lib::Mocks::mock_userenv({ branchcode => $branchcode, flags => 1 });
622
    t::lib::Mocks::mock_preference( 'CircConfirmItemParts',  '1' );
623
624
    my $siprequest = CHECKOUT . 'YN' . siprequestdate($today) .
625
    siprequestdate( $today->clone->add( days => 1) ) .
626
    FID_INST_ID . $branchcode . '|'.
627
    FID_PATRON_ID . $sip_patron1->id . '|' .
628
    FID_ITEM_ID . $item_object->barcode . '|' .
629
    FID_TERMINAL_PWD . 'ignored' . '|';
630
    undef $response;
631
632
    my $msg = C4::SIP::Sip::MsgType->new( $siprequest, 0 );
633
    $server->{account}->{allow_additional_materials_checkout} = 0;
634
    $msg->handle_checkout( $server );
635
    my $respcode = substr( $response, 0, 2 );
636
    check_field( $respcode, $response, FID_SCREEN_MSG, 'Item must be checked out at a circulation desk', 'Check screen msg', 'equals' );
637
    is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 0, "Item was not checked out (allow_additional_materials_checkout disabled)");
638
639
    $server->{account}->{allow_additional_materials_checkout} = 1;
640
    $msg->handle_checkout( $server );
641
    $respcode = substr( $response, 0, 2 );
642
    check_field( $respcode, $response, FID_SCREEN_MSG, 'Item has additional materials: This is a materials note', 'Check screen msg', 'equals' );
643
    is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 1, "Item was checked out (allow_additional_materials_checkout enabled");
644
};
645
580
# Here is room for some more subtests
646
# Here is room for some more subtests
581
647
582
# END of main code
648
# END of main code
583
- 

Return to bug 34153