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

(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-31 / +34 lines)
Lines 40-56 sub new { Link Here
40
}
40
}
41
41
42
sub do_checkout {
42
sub do_checkout {
43
	my $self = shift;
43
        my $self              = shift;
44
    my $account = shift;
44
        my $account           = shift;
45
    my $no_block_due_date = shift;
45
        my $no_block_due_date = shift;
46
	siplog('LOG_DEBUG', "ILS::Transaction::Checkout performing checkout...");
46
        siplog( 'LOG_DEBUG', "ILS::Transaction::Checkout performing checkout..." );
47
    my $shelf          = $self->{item}->hold_attached;
47
        my $shelf   = $self->{item}->hold_attached;
48
	my $barcode        = $self->{item}->id;
48
        my $barcode = $self->{item}->id;
49
    my $patron         = Koha::Patrons->find($self->{patron}->{borrowernumber});
49
        my $patron  = Koha::Patrons->find( $self->{patron}->{borrowernumber} );
50
    my $overridden_duedate; # usually passed as undef to AddIssue
50
        my $overridden_duedate;    # usually passed as undef to AddIssue
51
    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};
52
        my $allow_additional_materials_checkout = $account->{allow_additional_materials_checkout};
53
    my ($issuingimpossible, $needsconfirmation, $messages) = _can_we_issue($patron, $barcode, 0);
53
        my ( $issuingimpossible, $needsconfirmation, $messages ) = _can_we_issue( $patron, $barcode, 0 );
54
54
55
    if ( $no_block_due_date ) {
55
    if ( $no_block_due_date ) {
56
        my $year = substr($no_block_due_date,0,4);
56
        my $year = substr($no_block_due_date,0,4);
Lines 65-114 sub do_checkout { Link Here
65
    }
65
    }
66
66
67
    my $noerror=1;  # If set to zero we block the issue
67
    my $noerror=1;  # If set to zero we block the issue
68
    if (keys %{$issuingimpossible}) {
68
    if ( keys %{$issuingimpossible} ) {
69
        foreach (keys %{$issuingimpossible}) {
69
        foreach ( keys %{$issuingimpossible} ) {
70
70
            # do something here so we pass these errors
71
            # do something here so we pass these errors
71
            $self->screen_msg("Issue failed : $_");
72
            $self->screen_msg("Issue failed : $_");
72
            $noerror = 0;
73
            $noerror = 0;
73
            last;
74
            last;
74
        }
75
        }
75
    } else {
76
    } else {
76
        foreach my $confirmation (keys %{$needsconfirmation}) {
77
        foreach my $confirmation ( keys %{$needsconfirmation} ) {
77
            if ($confirmation eq 'RENEW_ISSUE'){
78
            if ( $confirmation eq 'RENEW_ISSUE' ) {
78
                $self->screen_msg("Item already checked out to you: renewing item.");
79
                $self->screen_msg("Item already checked out to you: renewing item.");
79
            } elsif ($confirmation eq 'RESERVED' and !C4::Context->preference("AllowItemsOnHoldCheckoutSIP")) {
80
            } elsif ( $confirmation eq 'RESERVED' and !C4::Context->preference("AllowItemsOnHoldCheckoutSIP") ) {
80
                $self->screen_msg("Item is reserved for another patron upon return.");
81
                $self->screen_msg("Item is reserved for another patron upon return.");
81
                $noerror = 0;
82
                $noerror = 0;
82
            } elsif ($confirmation eq 'RESERVED' and C4::Context->preference("AllowItemsOnHoldCheckoutSIP")) {
83
            } elsif ( $confirmation eq 'RESERVED' and C4::Context->preference("AllowItemsOnHoldCheckoutSIP") ) {
83
                next;
84
                next;
84
            } elsif ($confirmation eq 'RESERVE_WAITING'
85
            } elsif ( $confirmation eq 'RESERVE_WAITING'
85
                      or $confirmation eq 'TRANSFERRED'
86
                or $confirmation eq 'TRANSFERRED'
86
                      or $confirmation eq 'PROCESSING') {
87
                or $confirmation eq 'PROCESSING' )
87
               $self->screen_msg("Item is on hold for another patron.");
88
            {
88
               $noerror = 0;
89
                $self->screen_msg("Item is on hold for another patron.");
89
            } elsif ($confirmation eq 'ISSUED_TO_ANOTHER') {
90
                $noerror = 0;
91
            } elsif ( $confirmation eq 'ISSUED_TO_ANOTHER' ) {
90
                $self->screen_msg("Item already checked out to another patron.  Please return item for check-in.");
92
                $self->screen_msg("Item already checked out to another patron.  Please return item for check-in.");
91
                $noerror = 0;
93
                $noerror = 0;
92
                last;
94
                last;
93
            } elsif ($confirmation eq 'DEBT') {
95
            } elsif ( $confirmation eq 'DEBT' ) {
94
                $self->screen_msg('Outstanding Fines block issue');
96
                $self->screen_msg('Outstanding Fines block issue');
95
                $noerror = 0;
97
                $noerror = 0;
96
                last;
98
                last;
97
            } elsif ($confirmation eq 'HIGHHOLDS') {
99
            } elsif ( $confirmation eq 'HIGHHOLDS' ) {
98
                $overridden_duedate = $needsconfirmation->{$confirmation}->{returndate};
100
                $overridden_duedate = $needsconfirmation->{$confirmation}->{returndate};
99
                $self->screen_msg('Loan period reduced for high-demand item');
101
                $self->screen_msg('Loan period reduced for high-demand item');
100
            } elsif ($confirmation eq 'RENTALCHARGE') {
102
            } elsif ( $confirmation eq 'RENTALCHARGE' ) {
101
                if ($self->{fee_ack} ne 'Y') {
103
                if ( $self->{fee_ack} ne 'Y' ) {
102
                    $noerror = 0;
104
                    $noerror = 0;
103
                    last;
105
                    last;
104
                }
106
                }
105
            } elsif ($confirmation eq 'PREVISSUE') {
107
            } elsif ( $confirmation eq 'PREVISSUE' ) {
106
                $self->screen_msg("This item was previously checked out by you");
108
                $self->screen_msg("This item was previously checked out by you");
107
                $noerror = 0 if ($prevcheckout_block_checkout);
109
                $noerror = 0 if ($prevcheckout_block_checkout);
108
                last;
110
                last;
109
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
111
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
110
                if ( $allow_additional_materials_checkout ) {
112
                if ($allow_additional_materials_checkout) {
111
                    my $item = Koha::Items->find({ barcode => $barcode });
113
                    my $item = Koha::Items->find( { barcode => $barcode } );
112
                    $self->screen_msg( 'Item has additional materials: ' . $item->materials );
114
                    $self->screen_msg( 'Item has additional materials: ' . $item->materials );
113
                } else {
115
                } else {
114
                    $self->screen_msg('Item must be checked out at a circulation desk');
116
                    $self->screen_msg('Item must be checked out at a circulation desk');
Lines 120-129 sub do_checkout { Link Here
120
                $noerror = 0;
122
                $noerror = 0;
121
                last;
123
                last;
122
            } else {
124
            } else {
125
123
                # We've been returned a case other than those above
126
                # We've been returned a case other than those above
124
                $self->screen_msg("Item cannot be issued: $confirmation");
127
                $self->screen_msg("Item cannot be issued: $confirmation");
125
                $noerror = 0;
128
                $noerror = 0;
126
                siplog('LOG_DEBUG', "Blocking checkout Reason:$confirmation");
129
                siplog( 'LOG_DEBUG', "Blocking checkout Reason:$confirmation" );
127
                last;
130
                last;
128
            }
131
            }
129
        }
132
        }
(-)a/t/db_dependent/SIP/Message.t (-42 / +66 lines)
Lines 599-662 subtest 'test_allow_additional_materials_checkout' => sub { Link Here
599
599
600
    plan tests => 4;
600
    plan tests => 4;
601
601
602
    my $builder = t::lib::TestBuilder->new();
602
    my $builder     = t::lib::TestBuilder->new();
603
    my $branchcode  = $builder->build({ source => 'Branch' })->{branchcode};
603
    my $branchcode  = $builder->build( { source => 'Branch' } )->{branchcode};
604
    my $branchcode2 = $builder->build({ source => 'Branch' })->{branchcode};
604
    my $branchcode2 = $builder->build( { source => 'Branch' } )->{branchcode};
605
    my ( $response, $findpatron );
605
    my ( $response, $findpatron );
606
    my $mocks = create_mocks( \$response, \$findpatron, \$branchcode );
606
    my $mocks = create_mocks( \$response, \$findpatron, \$branchcode );
607
607
608
    # create some data
608
    # create some data
609
    my $patron1 = $builder->build({
609
    my $patron1 = $builder->build(
610
        source => 'Borrower',
610
        {
611
        value  => {
611
            source => 'Borrower',
612
            password => hash_password( PATRON_PW ),
612
            value  => {
613
        },
613
                password => hash_password(PATRON_PW),
614
    });
614
            },
615
    my $card1 = $patron1->{cardnumber};
615
        }
616
    my $sip_patron1 = C4::SIP::ILS::Patron->new( $card1 );
616
    );
617
    my $card1       = $patron1->{cardnumber};
618
    my $sip_patron1 = C4::SIP::ILS::Patron->new($card1);
617
    $findpatron = $sip_patron1;
619
    $findpatron = $sip_patron1;
618
    my $item_object = $builder->build_sample_item({
620
    my $item_object = $builder->build_sample_item(
619
        damaged => 0,
621
        {
620
        withdrawn => 0,
622
            damaged       => 0,
621
        itemlost => 0,
623
            withdrawn     => 0,
622
        restricted => 0,
624
            itemlost      => 0,
623
        homebranch => $branchcode,
625
            restricted    => 0,
624
        holdingbranch => $branchcode,
626
            homebranch    => $branchcode,
625
        materials => "This is a materials note",
627
            holdingbranch => $branchcode,
626
    });
628
            materials     => "This is a materials note",
629
        }
630
    );
627
631
628
    my $mockILS = $mocks->{ils};
632
    my $mockILS = $mocks->{ils};
629
    my $server = { ils => $mockILS, account => {} };
633
    my $server  = { ils => $mockILS, account => {} };
630
    $mockILS->mock( 'institution', sub { $branchcode; } );
634
    $mockILS->mock( 'institution', sub { $branchcode; } );
631
    $mockILS->mock( 'supports', sub { return; } );
635
    $mockILS->mock( 'supports',    sub { return; } );
632
    $mockILS->mock( 'checkout', sub {
636
    $mockILS->mock(
633
        shift;
637
        'checkout',
634
        return C4::SIP::ILS->checkout(@_);
638
        sub {
635
    });
639
            shift;
640
            return C4::SIP::ILS->checkout(@_);
641
        }
642
    );
636
    my $today = dt_from_string;
643
    my $today = dt_from_string;
637
    t::lib::Mocks::mock_userenv({ branchcode => $branchcode, flags => 1 });
644
    t::lib::Mocks::mock_userenv( { branchcode => $branchcode, flags => 1 } );
638
    t::lib::Mocks::mock_preference( 'CircConfirmItemParts',  '1' );
645
    t::lib::Mocks::mock_preference( 'CircConfirmItemParts', '1' );
639
646
640
    my $siprequest = CHECKOUT . 'YN' . siprequestdate($today) .
647
    my $siprequest =
641
    siprequestdate( $today->clone->add( days => 1) ) .
648
          CHECKOUT . 'YN'
642
    FID_INST_ID . $branchcode . '|'.
649
        . siprequestdate($today)
643
    FID_PATRON_ID . $sip_patron1->id . '|' .
650
        . siprequestdate( $today->clone->add( days => 1 ) )
644
    FID_ITEM_ID . $item_object->barcode . '|' .
651
        . FID_INST_ID
645
    FID_TERMINAL_PWD . 'ignored' . '|';
652
        . $branchcode . '|'
653
        . FID_PATRON_ID
654
        . $sip_patron1->id . '|'
655
        . FID_ITEM_ID
656
        . $item_object->barcode . '|'
657
        . FID_TERMINAL_PWD
658
        . 'ignored' . '|';
646
    undef $response;
659
    undef $response;
647
660
648
    my $msg = C4::SIP::Sip::MsgType->new( $siprequest, 0 );
661
    my $msg = C4::SIP::Sip::MsgType->new( $siprequest, 0 );
649
    $server->{account}->{allow_additional_materials_checkout} = 0;
662
    $server->{account}->{allow_additional_materials_checkout} = 0;
650
    $msg->handle_checkout( $server );
663
    $msg->handle_checkout($server);
651
    my $respcode = substr( $response, 0, 2 );
664
    my $respcode = substr( $response, 0, 2 );
652
    check_field( $respcode, $response, FID_SCREEN_MSG, 'Item must be checked out at a circulation desk', 'Check screen msg', 'equals' );
665
    check_field(
653
    is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 0, "Item was not checked out (allow_additional_materials_checkout disabled)");
666
        $respcode,          $response, FID_SCREEN_MSG, 'Item must be checked out at a circulation desk',
667
        'Check screen msg', 'equals'
668
    );
669
    is(
670
        Koha::Checkouts->search( { itemnumber => $item_object->id } )->count, 0,
671
        "Item was not checked out (allow_additional_materials_checkout disabled)"
672
    );
654
673
655
    $server->{account}->{allow_additional_materials_checkout} = 1;
674
    $server->{account}->{allow_additional_materials_checkout} = 1;
656
    $msg->handle_checkout( $server );
675
    $msg->handle_checkout($server);
657
    $respcode = substr( $response, 0, 2 );
676
    $respcode = substr( $response, 0, 2 );
658
    check_field( $respcode, $response, FID_SCREEN_MSG, 'Item has additional materials: This is a materials note', 'Check screen msg', 'equals' );
677
    check_field(
659
    is( Koha::Checkouts->search({ itemnumber => $item_object->id })->count, 1, "Item was checked out (allow_additional_materials_checkout enabled");
678
        $respcode,          $response, FID_SCREEN_MSG, 'Item has additional materials: This is a materials note',
679
        'Check screen msg', 'equals'
680
    );
681
    is(
682
        Koha::Checkouts->search( { itemnumber => $item_object->id } )->count, 1,
683
        "Item was checked out (allow_additional_materials_checkout enabled"
684
    );
660
};
685
};
661
686
662
# Here is room for some more subtests
687
# Here is room for some more subtests
663
- 

Return to bug 34153