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

(-)a/circ/returns.pl (-131 / +48 lines)
Lines 98-143 my $overduecharges = ( C4::Context->preference('finesMode') && C4::Context->pref Link Here
98
my $returned_counter = C4::Context->preference('numReturnedItemsToShow') || 8;
98
my $returned_counter = C4::Context->preference('numReturnedItemsToShow') || 8;
99
99
100
# Set up the item stack ....
100
# Set up the item stack ....
101
my %returneditems;
101
my @checkins;
102
my %riduedate;
102
my $i;
103
my %riborrowernumber;
103
for my $counter ( $query->multi_param("checkin_counter") ) {
104
my %rinot_returned;
104
    push @checkins, {
105
my @inputloop;
105
        barcode        => scalar $query->param("checkin_barcode_$counter"),
106
foreach ( $query->param ) {
106
        duedate        => scalar $query->param("checkin_duedate_$counter"),
107
    my $counter;
107
        borrowernumber => scalar $query->param("checkin_borrowernumber_$counter"),
108
    if (/ri-(\d*)/) {
108
        not_returned   => scalar $query->param("checkin_not_returned_$counter"),
109
        $counter = $1;
109
    };
110
        if ( $counter > $returned_counter ) {
110
111
            next;
111
    last if ++$i >= $returned_counter;
112
        }
113
    } else {
114
        next;
115
    }
116
117
    my %input;
118
    my $barcode        = $query->param("ri-$counter");
119
    my $duedate        = $query->param("dd-$counter");
120
    my $borrowernumber = $query->param("bn-$counter");
121
    my $not_returned   = $query->param("nr-$counter");
122
    $counter++;
123
124
    # decode barcode    ## Didn't we already decode them before passing them back last time??
125
    $barcode = barcodedecode($barcode) if $barcode;
126
127
    ######################
128
    #Are these lines still useful ?
129
    $returneditems{$counter}    = $barcode;
130
    $riduedate{$counter}        = $duedate;
131
    $riborrowernumber{$counter} = $borrowernumber;
132
    $rinot_returned{$counter}   = $not_returned;
133
134
    #######################
135
    $input{counter}        = $counter;
136
    $input{barcode}        = $barcode;
137
    $input{duedate}        = $duedate;
138
    $input{borrowernumber} = $borrowernumber;
139
    $input{not_returned}   = $not_returned;
140
    push( @inputloop, \%input );
141
}
112
}
142
113
143
my $op = $query->param('op') // '';
114
my $op = $query->param('op') // '';
Lines 384-405 if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { Link Here
384
        unless ( $needs_confirm || $bundle_confirm );
355
        unless ( $needs_confirm || $bundle_confirm );
385
356
386
    if ($returned) {
357
    if ($returned) {
387
        my $time_now    = dt_from_string()->truncate( to => 'minute' );
388
        my $date_due_dt = dt_from_string( $issue->date_due, 'sql' );
358
        my $date_due_dt = dt_from_string( $issue->date_due, 'sql' );
389
        my $duedate     = $date_due_dt->strftime('%Y-%m-%d %H:%M');
390
        $returneditems{0}      = $barcode;
391
        $riborrowernumber{0}   = $borrower->{'borrowernumber'};
392
        $riduedate{0}          = $duedate;
393
        $rinot_returned{0}     = 0;
394
        $input{borrowernumber} = $borrower->{'borrowernumber'};
395
        $input{duedate}        = $duedate;
396
359
397
        unless ($dropboxmode) {
360
        unshift @checkins, {
398
            $input{return_overdue} = 1 if ( DateTime->compare( $date_due_dt, dt_from_string() ) == -1 );
361
            barcode        => $barcode,
399
        } else {
362
            duedate        => $issue ? $issue->date_due       : undef,
400
            $input{return_overdue} = 1 if ( DateTime->compare( $date_due_dt, $dropboxdate ) == -1 );
363
            borrowernumber => $issue ? $issue->borrowernumber : undef,
401
        }
364
            not_returned   => 0,
402
        push( @inputloop, \%input );
365
        };
403
366
404
        if ( C4::Context->preference("FineNotifyAtCheckin") ) {
367
        if ( C4::Context->preference("FineNotifyAtCheckin") ) {
405
            my $patron  = Koha::Patrons->find( $borrower->{borrowernumber} );
368
            my $patron  = Koha::Patrons->find( $borrower->{borrowernumber} );
Lines 431-449 if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { Link Here
431
        and !$needs_confirm
394
        and !$needs_confirm
432
        and !$bundle_confirm )
395
        and !$bundle_confirm )
433
    {
396
    {
434
        my $duedate = 0;
397
        unshift @checkins, {
435
        if ($issue) {
398
            barcode        => $barcode,
436
            my $date_due_dt = dt_from_string( $issue->date_due, 'sql' );
399
            duedate        => $issue ? $issue->date_due       : undef,
437
            $duedate               = $date_due_dt->strftime('%Y-%m-%d %H:%M');
400
            borrowernumber => $issue ? $issue->borrowernumber : undef,
438
            $input{borrowernumber} = $issue->borrowernumber;
401
            not_returned   => 1,
439
            $riborrowernumber{0}   = $borrower->{'borrowernumber'};
402
        };
440
        }
441
        $input{duedate}      = $duedate;
442
        $input{not_returned} = 1;
443
        $rinot_returned{0}   = 1;
444
        $returneditems{0}    = $barcode;
445
        $riduedate{0}        = $duedate;
446
        push( @inputloop, \%input );
447
    }
403
    }
448
    $template->param( privacy => $borrower->{privacy} );
404
    $template->param( privacy => $borrower->{privacy} );
449
405
Lines 543-549 if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) { Link Here
543
        );
499
        );
544
    }
500
    }
545
}
501
}
546
$template->param( inputloop => \@inputloop );
502
$template->param( checkins => \@checkins );
547
503
548
my $found    = 0;
504
my $found    = 0;
549
my $waiting  = 0;
505
my $waiting  = 0;
Lines 788-868 foreach my $code ( keys %$messages ) { Link Here
788
}
744
}
789
$template->param( errmsgloop => \@errmsgloop );
745
$template->param( errmsgloop => \@errmsgloop );
790
746
791
my $count = 0;
792
my @riloop;
793
my $shelflocations = {
747
my $shelflocations = {
794
    map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field(
748
    map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field(
795
        { frameworkcode => '', kohafield => 'items.location' }
749
        { frameworkcode => '', kohafield => 'items.location' }
796
    )
750
    )
797
};
751
};
798
foreach ( sort { $a <=> $b } keys %returneditems ) {
752
for my $checkin (@checkins) {
799
    my %ri;
753
    my $item = Koha::Items->find( { barcode => $checkin->{barcode} } );
800
    if ( $count++ < $returned_counter ) {
754
    next unless $item;    # FIXME The item has been deleted in the meantime,
801
        my $bar_code = $returneditems{$_};
755
                          # we could handle that better displaying a message in the template
802
        if ( $riduedate{$_} ) {
803
            my $duedate = dt_from_string( $riduedate{$_}, 'sql' );
804
            $ri{year}    = $duedate->year();
805
            $ri{month}   = $duedate->month();
806
            $ri{day}     = $duedate->day();
807
            $ri{hour}    = $duedate->hour();
808
            $ri{minute}  = $duedate->minute();
809
            $ri{duedate} = $duedate;
810
            my $patron = Koha::Patrons->find( $riborrowernumber{$_} );
811
812
            unless ($dropboxmode) {
813
                $ri{return_overdue} = 1 if ( DateTime->compare( $duedate, dt_from_string() ) == -1 );
814
            } else {
815
                $ri{return_overdue} = 1 if ( DateTime->compare( $duedate, $dropboxdate ) == -1 );
816
            }
817
            $ri{patron} = $patron,
818
                $ri{borissuescount} = $patron->checkouts->count;
819
        } else {
820
            $ri{borrowernumber} = $riborrowernumber{$_};
821
        }
822
756
823
        my $item = Koha::Items->find( { barcode => $bar_code } );
757
    if ( $checkin->{duedate} ) {
824
        next unless $item;    # FIXME The item has been deleted in the meantime,
758
        my $duedate = dt_from_string( $checkin->{duedate}, 'sql' );
825
                              # we could handle that better displaying a message in the template
759
        my $patron  = Koha::Patrons->find( $checkin->{borrowernumber} );
826
760
827
        $ri{not_returned} = $rinot_returned{$_};
761
        my $return_overdue;
828
        my $biblio = $item->biblio;
762
        unless ($dropboxmode) {
763
            $return_overdue = 1 if ( DateTime->compare( $duedate, dt_from_string() ) == -1 );
764
        } else {
765
            $return_overdue = 1 if ( DateTime->compare( $duedate, $dropboxdate ) == -1 );
766
        }
767
        $checkin->{return_overdue} = $return_overdue;
768
        $checkin->{patron}         = $patron;
769
    }
829
770
830
        # FIXME pass $item to the template and we are done here...
771
    my $biblio = $item->biblio;
831
        $ri{itembiblionumber}    = $biblio->biblionumber;
772
    $checkin->{biblio} = $item->biblio;
832
        $ri{itemtitle}           = $biblio->title;
833
        $ri{subtitle}            = $biblio->subtitle;
834
        $ri{part_name}           = $biblio->part_name;
835
        $ri{part_number}         = $biblio->part_number;
836
        $ri{itemauthor}          = $biblio->author;
837
        $ri{itemcallnumber}      = $item->itemcallnumber;
838
        $ri{dateaccessioned}     = $item->dateaccessioned;
839
        $ri{recordtype}          = $biblio->itemtype;
840
        $ri{itemtype}            = $item->itype;
841
        $ri{itemnote}            = $item->itemnotes;
842
        $ri{itemnotes_nonpublic} = $item->itemnotes_nonpublic;
843
        $ri{ccode}               = $item->ccode;
844
        $ri{enumchron}           = $item->enumchron;
845
        $ri{itemnumber}          = $item->itemnumber;
846
        $ri{barcode}             = $bar_code;
847
        $ri{homebranch}          = $item->homebranch;
848
        $ri{transferbranch}      = $item->get_transfer ? $item->get_transfer->tobranch : '';
849
        $ri{damaged}             = $item->damaged;
850
        $ri{withdrawn}           = $item->withdrawn;
851
        $ri{transferreason}      = $item->get_transfer ? $item->get_transfer->reason : '';
852
853
        $ri{location} = $item->location;
854
        my $shelfcode = $ri{'location'};
855
        $ri{'location'} = $shelflocations->{$shelfcode}
856
            if ( defined($shelfcode) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
857
773
858
    } else {
774
    # TODO Move this logic somewhere else
859
        last;
775
    $checkin->{item_location} = $item->location;
860
    }
776
    my $shelfcode = $checkin->{item_location};
861
    push @riloop, \%ri;
777
    $checkin->{item_location} = $shelflocations->{$shelfcode}
778
        if ( defined($shelfcode) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
862
}
779
}
863
780
864
$template->param(
781
$template->param(
865
    riloop                   => \@riloop,
782
    checkins                 => \@checkins,
866
    errmsgloop               => \@errmsgloop,
783
    errmsgloop               => \@errmsgloop,
867
    exemptfine               => $exemptfine,
784
    exemptfine               => $exemptfine,
868
    dropboxmode              => $dropboxmode,
785
    dropboxmode              => $dropboxmode,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-106 / +120 lines)
Lines 447-457 Link Here
447
                            <input type="hidden" name="multiple_confirm" value="1" />
447
                            <input type="hidden" name="multiple_confirm" value="1" />
448
                            <input type="hidden" name="dropboxmode" value="[% dropboxmode | html %]" />
448
                            <input type="hidden" name="dropboxmode" value="[% dropboxmode | html %]" />
449
                            <input type="hidden" name="exemptfine" value="[% exemptfine | html %]" />
449
                            <input type="hidden" name="exemptfine" value="[% exemptfine | html %]" />
450
                            [% FOREACH inputloo IN inputloop %]
450
                            [% FOREACH checkin IN checkins %]
451
                                <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
451
                                <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
452
                                <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
452
                                <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
453
                                <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
453
                                <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
454
                                <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
454
                                <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
455
                                <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
455
                            [% END %]
456
                            [% END %]
456
                            <button type="submit" class="btn btn-default approve" accesskey="y"><i class="fa fa-check"></i> Yes, checkin (Y)</button>
457
                            <button type="submit" class="btn btn-default approve" accesskey="y"><i class="fa fa-check"></i> Yes, checkin (Y)</button>
457
                        </form>
458
                        </form>
Lines 531-541 Link Here
531
                            <input type="hidden" name="barcode" value="[% item.barcode | html %]" />
532
                            <input type="hidden" name="barcode" value="[% item.barcode | html %]" />
532
                            <input type="hidden" name="op" value="cud-checkin" />
533
                            <input type="hidden" name="op" value="cud-checkin" />
533
                            <input type="hidden" name="confirm_items_bundle_return" value="1" />
534
                            <input type="hidden" name="confirm_items_bundle_return" value="1" />
534
                            [% FOREACH inputloo IN inputloop %]
535
                            [% FOREACH checkin IN checkins %]
535
                                <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
536
                                <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
536
                                <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
537
                                <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
537
                                <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
538
                                <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
538
                                <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
539
                                <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
540
                                <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
539
                            [% END %]
541
                            [% END %]
540
                            [% IF item.onloan %]
542
                            [% IF item.onloan %]
541
                                <button type="submit" class="btn btn-default"><i class="fa fa-check"></i> Confirm checkin and mark missing items as lost</button>
543
                                <button type="submit" class="btn btn-default"><i class="fa fa-check"></i> Confirm checkin and mark missing items as lost</button>
Lines 601-611 Link Here
601
                            <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember | html %]" />
603
                            <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember | html %]" />
602
                            <input type="hidden" name="itemnumber" value="[% itemnumber | html %]" />
604
                            <input type="hidden" name="itemnumber" value="[% itemnumber | html %]" />
603
                            <input type="hidden" name="transit" value="[% NewTransfer | html %]" />
605
                            <input type="hidden" name="transit" value="[% NewTransfer | html %]" />
604
                            [% FOREACH inputloo IN inputloop %]
606
                            [% FOREACH checkin IN checkins %]
605
                                <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
607
                                <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
606
                                <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
608
                                <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
607
                                <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
609
                                <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
608
                                <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
610
                                <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
611
                                <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
609
                            [% END %]
612
                            [% END %]
610
613
611
                            <div class="modal-header">
614
                            <div class="modal-header">
Lines 701-711 Link Here
701
                                    <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) | html %]</h4>
704
                                    <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) | html %]</h4>
702
                                [% END %]
705
                                [% END %]
703
706
704
                                [% FOREACH inputloo IN inputloop %]
707
                                [% FOREACH checkin IN checkins %]
705
                                    <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
708
                                    <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
706
                                    <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
709
                                    <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
707
                                    <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
710
                                    <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
708
                                    <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
711
                                    <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
712
                                    <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
709
                                [% END %]
713
                                [% END %]
710
714
711
                                <input type="hidden" name="op" value="cud-affect_reserve" />
715
                                <input type="hidden" name="op" value="cud-affect_reserve" />
Lines 815-825 Link Here
815
                                <input type="hidden" name="exemptfine" value="[% exemptfine | html %]" />
819
                                <input type="hidden" name="exemptfine" value="[% exemptfine | html %]" />
816
                                <input type="hidden" name="dropboxmode" value="[% dropboxmode | html %]" />
820
                                <input type="hidden" name="dropboxmode" value="[% dropboxmode | html %]" />
817
                                <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire | html %]" />
821
                                <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire | html %]" />
818
                                [% FOREACH inputloo IN inputloop %]
822
819
                                    <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
823
                                [% FOREACH checkin IN checkins %]
820
                                    <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
824
                                    <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
821
                                    <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
825
                                    <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
822
                                    <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
826
                                    <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
827
                                    <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
828
                                    <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
823
                                [% END %]
829
                                [% END %]
824
                            </div>
830
                            </div>
825
                            <!-- /.modal-footer -->
831
                            <!-- /.modal-footer -->
Lines 919-929 Link Here
919
                                    <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) | html %]</h4>
925
                                    <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) | html %]</h4>
920
                                [% END %]
926
                                [% END %]
921
927
922
                                [% FOREACH inputloo IN inputloop %]
928
                                [% FOREACH checkin IN checkins %]
923
                                    <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
929
                                    <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
924
                                    <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
930
                                    <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
925
                                    <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
931
                                    <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
926
                                    <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
932
                                    <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
933
                                    <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
927
                                [% END %]
934
                                [% END %]
928
935
929
                                <input type="hidden" name="op" value="cud-affect_reserve" />
936
                                <input type="hidden" name="op" value="cud-affect_reserve" />
Lines 1175-1187 Link Here
1175
                            <a href="#" title="Checkin settings"><i class="fa-solid fa-sliders"></i></a>
1182
                            <a href="#" title="Checkin settings"><i class="fa-solid fa-sliders"></i></a>
1176
                        </div>
1183
                        </div>
1177
1184
1178
                        <button type="submit" class="btn btn-primary">Check in</button>
1185
                        [% FOREACH checkin IN checkins %]
1179
                        [% FOREACH inputloo IN inputloop %]
1186
                            <input type="hidden" name="checkin_counter" value="[% loop.count | html %]" />
1180
                            <input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" />
1187
                            <input type="hidden" name="checkin_barcode_[% loop.count | html %]" value="[% checkin.barcode | html %]" />
1181
                            <input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" />
1188
                            <input type="hidden" name="checkin_duedate_[% loop.count | html %]" value="[% checkin.duedate | html %]" />
1182
                            <input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" />
1189
                            <input type="hidden" name="checkin_borrowernumber_[% loop.count | html %]" value="[% checkin.borrowernumber | html %]" />
1183
                            <input type="hidden" name="nr-[% inputloo.counter | html %]" value="[% inputloo.not_returned | html %]" />
1190
                            <input type="hidden" name="checkin_not_returned_[% loop.count | html %]" value="[% checkin.not_returned | html %]" />
1184
                        [% END %]
1191
                        [% END %]
1192
1193
                        <button type="submit" class="btn btn-primary">Check in</button>
1185
                    </div>
1194
                    </div>
1186
                </div>
1195
                </div>
1187
                <div class="col-sm-6">
1196
                <div class="col-sm-6">
Lines 1271-1277 Link Here
1271
    </form>
1280
    </form>
1272
    <!-- /#checkin-form -->
1281
    <!-- /#checkin-form -->
1273
1282
1274
    [% IF ( riloop ) %]
1283
    [% IF ( checkins.size ) %]
1275
        <div class="page-section">
1284
        <div class="page-section">
1276
            <h2>Checked-in items</h2>
1285
            <h2>Checked-in items</h2>
1277
            <table id="checkedintable">
1286
            <table id="checkedintable">
Lines 1295-1415 Link Here
1295
                    </tr>
1304
                    </tr>
1296
                </thead>
1305
                </thead>
1297
1306
1298
                [% FOREACH riloo IN riloop %]
1307
                [% FOREACH checkin IN checkins %]
1299
                    <tr>
1308
                    <tr>
1300
                        <td class="ci-duedate">
1309
                        <td class="ci-duedate">
1301
                            [% IF ( riloo.not_returned AND riloo.duedate ) %]
1310
                            [% IF ( checkin.not_returned AND checkin.duedate ) %]
1302
                                <span class="problem not_returned">Item was not checked in</span>
1311
                                <span class="problem not_returned">Item was not checked in</span>
1303
                            [% END %]
1312
                            [% END %]
1304
                            [% IF ( riloo.duedate ) %]
1313
                            [% IF ( checkin.duedate ) %]
1305
                                [% IF ( riloo.return_overdue ) %]
1314
                                [% IF ( checkin.return_overdue ) %]
1306
                                    <span class="overdue">[% riloo.duedate | $KohaDates as_due_date => 1 %] (overdue)</span>
1315
                                    <span class="overdue">[% checkin.duedate | $KohaDates as_due_date => 1 %] (overdue)</span>
1307
                                [% ELSE %]
1316
                                [% ELSE %]
1308
                                    [% riloo.duedate | $KohaDates as_due_date => 1 %]
1317
                                    [% checkin.duedate | $KohaDates as_due_date => 1 %]
1309
                                [% END %]
1318
                                [% END %]
1310
                            [% ELSE %]
1319
                            [% ELSE %]
1311
                                <span>Not checked out</span>
1320
                                <span>Not checked out</span>
1312
                            [% END %]
1321
                            [% END %]
1313
                            [% IF ( riloo.damaged ) %]
1322
                            [% IF ( checkin.item.damaged ) %]
1314
                                <span class="dmg">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.damaged', authorised_value => riloo.damaged ) | html %]</span>
1323
                                <span class="dmg">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.damaged', authorised_value => checkin.item.damaged ) | html %]</span>
1315
                            [% END %]
1324
                            [% END %]
1316
                            [% IF ( riloo.withdrawn ) %]
1325
                            [% IF ( checkin.item.withdrawn ) %]
1317
                                <span class="withdrawn">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => riloo.withdrawn ) | html %]</span>
1326
                                <span class="withdrawn">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => checkin.item.withdrawn ) | html %]</span>
1318
                            [% END %]
1327
                            [% END %]
1319
                        </td>
1328
                        </td>
1320
                        <td class="ci-title">
1329
                        <td class="ci-title">
1321
                            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber | uri %]">
1330
                            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkin.biblio.biblionumber | uri %]">
1322
                                [% riloo.itemtitle | html %]
1331
                                [% checkin.biblio.title | html %]
1323
                                <!-- prettier-ignore-start -->
1332
                                <!-- prettier-ignore-start -->
1324
                                                    [% FOREACH subtitle IN riloo.subtitle.split(' \\| ') %] <span class="subtitle">[% subtitle | html %]</span>[% END %]
1333
                                [% FOREACH subtitle IN checkin.biblio.subtitle.split(' \\| ') %] <span class="subtitle">[% subtitle | html %]</span>[% END %]
1325
                                                    [% FOREACH part_number IN riloo.part_number.split(' \\| ') %] <span class="part_number">[% part_number | html %]</span>[% END %]
1334
                                [% FOREACH part_number IN checkin.biblio.part_number.split(' \\| ') %] <span class="part_number">[% part_number | html %]</span>[% END %]
1326
                                                    [% FOREACH part_name IN riloo.part_name.split(' \\| ') %] <span class="part_name">[% part_name | html %]<span>[% END %]
1335
                                [% FOREACH part_name IN checkin.biblio.part_name.split(' \\| ') %] <span class="part_name">[% part_name | html %]<span>[% END %]
1327
                                                    <!-- prettier-ignore-end -->
1336
                                <!-- prettier-ignore-end -->
1328
                            </a>
1337
                            </a>
1329
                            [% IF ( riloo.enumchron ) %]
1338
                            [% IF ( checkin.item.enumchron ) %]
1330
                                <br />
1339
                                <br />
1331
                                <span class="item_enumeration" style="white-space: nowrap;">[% riloo.enumchron | html %]</span>
1340
                                <span class="item_enumeration" style="white-space: nowrap;">[% checkin.item.enumchron | html %]</span>
1332
                            [% END %]
1341
                            [% END %]
1333
                        </td>
1342
                        </td>
1334
                        <td class="ci-author">[% riloo.itemauthor | html %]</td>
1343
                        <td class="ci-author">[% checkin.biblio.author | html %]</td>
1335
                        <td class="ci-barcode">
1344
                        <td class="ci-barcode">
1336
                            <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% riloo.itembiblionumber | uri %]&amp;itemnumber=[% riloo.itemnumber | uri %]#item[% riloo.itemnumber | uri %]">[% riloo.barcode | html %]</a>
1345
                            <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% checkin.biblio.biblionumber | uri %]&amp;itemnumber=[% checkin.item.itemnumber | uri %]#item[% checkin.item.itemnumber | uri %]"
1346
                                >[% checkin.barcode | html %]</a
1347
                            >
1337
                        </td>
1348
                        </td>
1338
                        <td class="ci-homelibrary"> [% Branches.GetName( riloo.homebranch ) | html %] </td>
1349
                        <td class="ci-homelibrary"> [% Branches.GetName( checkin.item.homebranch ) | html %] </td>
1339
                        <td class="ci-transferlibrary"> [% Branches.GetName( riloo.transferbranch ) | html %] </td>
1350
                        [% SET transfer = checkin.item.get_transfer %]
1351
                        <td class="ci-transferlibrary"> [% IF transfer %][% Branches.GetName( transfer.tobranch ) | html %][% END %]</td>
1340
                        <td class="ci-transferreason">
1352
                        <td class="ci-transferreason">
1341
                            [%- SWITCH riloo.transferreason -%]
1353
                            [% IF transfer %]
1342
1354
                                [%- SWITCH transfer.reason -%]
1343
                            [%- CASE 'Manual' -%]
1355
1344
                                <span>Manual</span>
1356
                                [%- CASE 'Manual' -%]
1345
                            [%- CASE 'StockrotationAdvance' -%]
1357
                                    <span>Manual</span>
1346
                                <span>Stock rotation advance</span>
1358
                                [%- CASE 'StockrotationAdvance' -%]
1347
                            [%- CASE 'StockrotationRepatriation' -%]
1359
                                    <span>Stock rotation advance</span>
1348
                                <span>Stock rotation repatriation</span>
1360
                                [%- CASE 'StockrotationRepatriation' -%]
1349
                            [%- CASE 'ReturnToHome' -%]
1361
                                    <span>Stock rotation repatriation</span>
1350
                                <span>Return to home library</span>
1362
                                [%- CASE 'ReturnToHome' -%]
1351
                            [%- CASE 'ReturnToHolding' -%]
1363
                                    <span>Return to home library</span>
1352
                                <span>Return to holding library</span>
1364
                                [%- CASE 'ReturnToHolding' -%]
1353
                            [%- CASE 'RotatingCollection' -%]
1365
                                    <span>Return to holding library</span>
1354
                                <span>Rotating collection</span>
1366
                                [%- CASE 'RotatingCollection' -%]
1355
                            [%- CASE 'Reserve' -%]
1367
                                    <span>Rotating collection</span>
1356
                                <span>Hold</span>
1368
                                [%- CASE 'Reserve' -%]
1357
                            [%- CASE 'LostReserve' -%]
1369
                                    <span>Hold</span>
1358
                                <span>Lost hold</span>
1370
                                [%- CASE 'LostReserve' -%]
1359
                            [%- CASE 'CancelReserve' -%]
1371
                                    <span>Lost hold</span>
1360
                                <span>Cancelled hold</span>
1372
                                [%- CASE 'CancelReserve' -%]
1361
                            [%- CASE 'TransferCancellation' -%]
1373
                                    <span>Cancelled hold</span>
1362
                                <span>Transfer was cancelled whilst in transit</span>
1374
                                [%- CASE 'TransferCancellation' -%]
1363
                            [%- CASE 'Recall' -%]
1375
                                    <span>Transfer was cancelled whilst in transit</span>
1364
                                <span>Recall</span>
1376
                                [%- CASE 'Recall' -%]
1365
                            [%- CASE 'RecallCancellation' -%]
1377
                                    <span>Recall</span>
1366
                                <span>Cancelled recall</span>
1378
                                [%- CASE 'RecallCancellation' -%]
1379
                                    <span>Cancelled recall</span>
1380
                                [%- END -%]
1367
                            [%- END -%]
1381
                            [%- END -%]
1368
                        </td>
1382
                        </td>
1369
                        <td class="ci-shelvinglocation">
1383
                        <td class="ci-shelvinglocation">
1370
                            <span class="shelvingloc">[% riloo.location | html %]</span>
1384
                            <span class="shelvingloc">[% checkin.item_location | html %]</span>
1371
                        </td>
1385
                        </td>
1372
                        <td class="ci-callnumber"> [% riloo.itemcallnumber | html %] </td>
1386
                        <td class="ci-callnumber"> [% checkin.item.itemcallnumber | html %] </td>
1373
                        <td class="ci-dateaccessioned"> [% riloo.dateaccessioned | $KohaDates %] </td>
1387
                        <td class="ci-dateaccessioned"> [% checkin.item.dateaccessioned | $KohaDates %] </td>
1374
                        <td class="ci-recordlevelitemtype"> [% ItemTypes.GetDescription( riloo.recordtype ) | html %] </td>
1388
                        <td class="ci-recordlevelitemtype"> [% ItemTypes.GetDescription( checkin.biblio.itemtype ) | html %] </td>
1375
                        <td class="ci-itemtype"> [% ItemTypes.GetDescription( riloo.itemtype ) | html %] </td>
1389
                        <td class="ci-itemtype"> [% ItemTypes.GetDescription( checkin.item.itype ) | html %] </td>
1376
                        <td class="ci-collection"> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => riloo.ccode) | html %] </td>
1390
                        <td class="ci-collection"> [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => checkin.item.ccode) | html %] </td>
1377
                        <td class="ci-patron">
1391
                        <td class="ci-patron">
1378
                            [% IF ( riloo.duedate ) %]
1392
                            [% IF ( checkin.duedate ) %]
1379
                                [% INCLUDE 'patron-title.inc' patron=riloo.patron hide_patron_infos_if_needed=1 invert_name=1 %]
1393
                                [% INCLUDE 'patron-title.inc' patron=checkin.patron hide_patron_infos_if_needed=1 invert_name=1 %]
1380
                                [% IF riloo.borissuescount %]
1394
                                [% SET issues_count = checkin.patron.checkouts.count %]
1395
                                [% IF issues_count %]
1381
                                    <span class="results_summary nowrap">
1396
                                    <span class="results_summary nowrap">
1382
                                        <span class="label">Checkouts:</span>
1397
                                        <span class="label">Checkouts:</span>
1383
                                        <span class="badge text-bg-info">
1398
                                        <span class="badge text-bg-info">
1384
                                            <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% riloo.patron.borrowernumber | uri %]">[% riloo.borissuescount | html %]</a>
1399
                                            <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% checkin.patron.borrowernumber | uri %]">[% issues_count | html %]</a>
1385
                                        </span>
1400
                                        </span>
1386
                                    </span>
1401
                                    </span>
1387
                                [% END %]
1402
                                [% END %]
1388
                                [% IF riloo.patron.privacy < 2 %]
1403
                                [% IF checkin.patron.privacy < 2 %]
1389
                                    [%# 2 is the privacy rule "Never" (Delete my history immediately) %]
1404
                                    [%# 2 is the privacy rule "Never" (Delete my history immediately) %]
1390
                                    <a class="btn btn-default btn-xs printcheckinslip" href="#" data-borrowernumber="[% riloo.patron.borrowernumber | html %]"><i class="fa fa-print"></i> Print checkin slip</a>
1405
                                    <a class="btn btn-default btn-xs printcheckinslip" href="#" data-borrowernumber="[% checkin.patron.borrowernumber | html %]"><i class="fa fa-print"></i> Print checkin slip</a>
1391
                                [% END %]
1406
                                [% END %]
1392
                            [% ELSE %]
1407
                            [% ELSE %]
1393
                                Not checked out
1408
                                Not checked out
1394
                            [% END %]
1409
                            [% END %]
1395
                        </td>
1410
                        </td>
1396
                        <td class="ci-note">
1411
                        <td class="ci-note">
1397
                            [% IF ( riloo.patron.borrowernotes ) %]
1412
                            [% IF ( checkin.patron.borrowernotes ) %]
1398
                                <p><span class="circ-hlt patron-note">[% riloo.patron.borrowernotes | $raw | html_line_break %]</span></p>
1413
                                <p><span class="circ-hlt patron-note">[% checkin.patron.borrowernotes | $raw | html_line_break %]</span></p>
1399
                            [% END %]
1414
                            [% END %]
1400
                            [% IF ( riloo.itemnote ) %]
1415
                            [% IF ( checkin.item.itemnotes ) %]
1401
                                <p><span class="circ-hlt item-note-public">[% riloo.itemnote | html %]</span></p>
1416
                                <p><span class="circ-hlt item-note-public">[% checkin.item.itemnotes | html %]</span></p>
1402
                            [% END %]
1417
                            [% END %]
1403
                            [% IF ( riloo.itemnotes_nonpublic ) %]
1418
                            [% IF ( checkin.item.itemnotes_nonpublic ) %]
1404
                                <p><span class="circ-hlt item-note-nonpublic">[% riloo.itemnotes_nonpublic | html %]</span></p>
1419
                                <p><span class="circ-hlt item-note-nonpublic">[% checkin.item.itemnotes_nonpublic | html %]</span></p>
1405
                            [% END %]
1420
                            [% END %]
1406
                        </td>
1421
                        </td>
1407
                    </tr>
1422
                    </tr>
1408
                [% END # /FOREACH riloo %]
1423
                [% END # /FOREACH checkins %]
1409
            </table>
1424
            </table>
1410
            <!-- /#checkedintable --> </div
1425
            <!-- /#checkedintable --> </div
1411
        ><!-- /.page-section -->
1426
        ><!-- /.page-section -->
1412
    [% END # /IF riloop %]
1427
    [% END # /IF checkins.count %]
1413
[% END %]
1428
[% END %]
1414
1429
1415
[% IF ( ReturnClaims ) %]
1430
[% IF ( ReturnClaims ) %]
1416
- 

Return to bug 39302