Bug 3638 Self Check Should Capture Hold Items
[koha.git] / C4 / SIP / ILS / Transaction / Checkin.pm
index fd5f861..a705f57 100644 (file)
@@ -13,6 +13,8 @@ use ILS;
 use ILS::Transaction;
 
 use C4::Circulation;
+use C4::Reserves qw( ModReserveAffect );
+use C4::Debug;
 
 our @ISA = qw(ILS::Transaction);
 
@@ -45,28 +47,57 @@ sub do_checkin {
     my $self = shift;
     my $branch = @_ ? shift : 'SIP2' ;
     my $barcode = $self->{item}->id;
+    $debug and warn "do_checkin() calling AddReturn($barcode, $branch)";
     my ($return, $messages, $iteminformation, $borrower) = AddReturn($barcode, $branch);
     $self->alert(!$return);
+    # ignoring messages: NotIssued, IsPermanent, WasLost, WasTransfered
+
+    # biblionumber, biblioitemnumber, itemnumber
+    # borrowernumber, reservedate, branchcode
+    # cancellationdate, found, reservenotes, priority, timestamp
+
     if ($messages->{BadBarcode}) {
         $self->alert_type('99');
     }
-    # ignoring: NotIssued, IsPermanent
     if ($messages->{wthdrawn}) {
         $self->alert_type('99');
     }
+    if ($messages->{Wrongbranch}) {
+        $self->destination_loc($messages->{Wrongbranch}->{Rightbranch});
+        $self->alert_type('04');            # send to other branch
+    }
+    if ($messages->{WrongTransfer}) {
+        $self->destination_loc($messages->{WrongTransfer});
+        $self->alert_type('04');            # send to other branch
+    }
+    if ($messages->{NeedsTransfer}) {
+        $self->destination_loc($iteminformation->{homebranch});
+        $self->alert_type('04');            # send to other branch
+    }
     if ($messages->{ResFound}) {
-        if ($self->hold($messages->{ResFound}->{ResFound})) {
-            $self->alert_type('99');
+        $self->hold($messages->{ResFound});
+        if ($branch eq $messages->{ResFound}->{branchcode}) {
+            $self->alert_type('01');
+            ModReserveAffect( $messages->{ResFound}->{itemnumber},
+                $messages->{ResFound}->{borrowernumber}, 0);
+
+        } else {
+            $self->alert_type('02');
+            ModReserveAffect( $messages->{ResFound}->{itemnumber},
+                $messages->{ResFound}->{borrowernumber}, 1);
+
         }
+        $self->{item}->hold_patron_id( $messages->{ResFound}->{borrowernumber} );
+        $self->{item}->destination_loc( $messages->{ResFound}->{branchcode} );
     }
-    $self->alert(1) if defined $self->alert_type;  # alert_type could be "00"
+    $self->alert(1) if defined $self->alert_type;  # alert_type could be "00", hypothetically
     $self->ok($return);
 }
 
 sub resensitize {
        my $self = shift;
        unless ($self->{item}) {
-               warn "no item found in object to resensitize";
+               warn "resensitize(): no item found in object to resensitize";
                return;
        }
        return !$self->{item}->magnetic_media;
@@ -75,7 +106,7 @@ sub resensitize {
 sub patron_id {
        my $self = shift;
        unless ($self->{patron}) {
-               warn "no patron found in object";
+               warn "patron_id(): no patron found in object";
                return;
        }
        return $self->{patron}->id;