Bug 15253: Add Koha::Logger based logging for SIP2
[koha-equinox.git] / C4 / SIP / ILS / Transaction / Checkout.pm
1 #
2 # An object to handle checkout status
3 #
4
5 package C4::SIP::ILS::Transaction::Checkout;
6
7 use warnings;
8 use strict;
9
10 use POSIX qw(strftime);
11 use C4::SIP::Sip qw(syslog);
12 use Data::Dumper;
13 use CGI qw ( -utf8 );
14
15 use C4::SIP::ILS::Transaction;
16
17 use C4::Context;
18 use C4::Circulation;
19 use C4::Members;
20 use C4::Reserves qw(ModReserveFill);
21 use C4::Debug;
22 use Koha::DateUtils;
23
24 use parent qw(C4::SIP::ILS::Transaction);
25
26 our $debug;
27
28
29 # Most fields are handled by the Transaction superclass
30 my %fields = (
31               security_inhibit => 0,
32               due              => undef,
33               renew_ok         => 0,
34         );
35
36 sub new {
37     my $class = shift;;
38     my $self = $class->SUPER::new();
39     foreach my $element (keys %fields) {
40                 $self->{_permitted}->{$element} = $fields{$element};
41     }
42     @{$self}{keys %fields} = values %fields;
43 #    $self->{'due'} = time() + (60*60*24*14); # two weeks hence
44         $debug and warn "new ILS::Transaction::Checkout : " . Dumper $self;
45     return bless $self, $class;
46 }
47
48 sub do_checkout {
49         my $self = shift;
50         syslog('LOG_DEBUG', "ILS::Transaction::Checkout performing checkout...");
51         my $shelf          = $self->{item}->hold_shelf;
52         my $barcode        = $self->{item}->id;
53         my $patron_barcode = $self->{patron}->id;
54         my $overridden_duedate; # usually passed as undef to AddIssue
55         $debug and warn "do_checkout: patron (" . $patron_barcode . ")";
56     my $patron = Koha::Patrons->find( { cardnumber => $patron_barcode } );
57     my $borrower = $patron->unblessed;
58         $debug and warn "do_checkout borrower: . " . Dumper $borrower;
59     my ($issuingimpossible, $needsconfirmation) = _can_we_issue($patron, $barcode,
60         C4::Context->preference("AllowItemsOnHoldCheckout")
61     );
62
63     my $noerror=1;  # If set to zero we block the issue
64     if (keys %{$issuingimpossible}) {
65         foreach (keys %{$issuingimpossible}) {
66             # do something here so we pass these errors
67             $self->screen_msg("Issue failed : $_");
68             $noerror = 0;
69             last;
70         }
71     } else {
72         foreach my $confirmation (keys %{$needsconfirmation}) {
73             if ($confirmation eq 'RENEW_ISSUE'){
74                 $self->screen_msg("Item already checked out to you: renewing item.");
75             } elsif ($confirmation eq 'RESERVED' or $confirmation eq 'RESERVE_WAITING') {
76                 my $x = $self->{item}->available($patron_barcode);
77                 if ($x) {
78                     $self->screen_msg("Item was reserved for you.");
79                 } else {
80                     $self->screen_msg("Item is reserved for another patron upon return.");
81                     $noerror = 0;
82                 }
83             } elsif ($confirmation eq 'ISSUED_TO_ANOTHER') {
84                 $self->screen_msg("Item already checked out to another patron.  Please return item for check-in.");
85                 $noerror = 0;
86                 last;
87             } elsif ($confirmation eq 'DEBT') {
88                 $self->screen_msg('Outstanding Fines block issue');
89                 $noerror = 0;
90                 last;
91             } elsif ($confirmation eq 'HIGHHOLDS') {
92                 $overridden_duedate = $needsconfirmation->{$confirmation}->{returndate};
93                 $self->screen_msg('Loan period reduced for high-demand item');
94             } elsif ($confirmation eq 'RENTALCHARGE') {
95                 if ($self->{fee_ack} ne 'Y') {
96                     $noerror = 0;
97                     last;
98                 }
99             } else {
100                 # We've been returned a case other than those above
101                 $self->screen_msg("Item cannot be issued: $confirmation");
102                 $noerror = 0;
103                 syslog('LOG_DEBUG', "Blocking checkout Reason:$confirmation");
104                 last;
105             }
106         }
107     }
108     my $itemnumber = $self->{item}->{itemnumber};
109     foreach (@$shelf) {
110         $debug and warn "shelf has ($_->{itemnumber} for $_->{borrowernumber}). this is ($itemnumber, $self->{patron}->{borrowernumber})";
111         ($_->{itemnumber} eq $itemnumber) or next;    # skip it if not this item
112         ($_->{borrowernumber} == $self->{patron}->{borrowernumber}) and last;
113             # if item was waiting for this patron, we're done.  AddIssue takes care of the "W" hold.
114         $debug and warn "Item is on hold shelf for another patron.";
115         $self->screen_msg("Item is on hold shelf for another patron.");
116         $noerror = 0;
117     }
118     my ($fee, undef) = GetIssuingCharges($itemnumber, $self->{patron}->{borrowernumber});
119     if ( $fee > 0 ) {
120         $self->{sip_fee_type} = '06';
121         $self->{fee_amount} = sprintf '%.2f', $fee;
122         if ($self->{fee_ack} eq 'N' ) {
123             $noerror = 0;
124         }
125     }
126         unless ($noerror) {
127                 $debug and warn "cannot issue: " . Dumper($issuingimpossible) . "\n" . Dumper($needsconfirmation);
128                 $self->ok(0);
129                 return $self;
130         }
131         # can issue
132         $debug and warn "do_checkout: calling AddIssue(\$borrower,$barcode, $overridden_duedate, 0)\n"
133                 # . "w/ \$borrower: " . Dumper($borrower)
134                 . "w/ C4::Context->userenv: " . Dumper(C4::Context->userenv);
135     my $issue = AddIssue( $borrower, $barcode, $overridden_duedate, 0 );
136     $self->{due} = $self->duedatefromissue($issue, $itemnumber);
137
138         $self->ok(1);
139         return $self;
140 }
141
142 sub _can_we_issue {
143     my ( $patron, $barcode, $pref ) = @_;
144
145     my ( $issuingimpossible, $needsconfirmation, $alerts ) =
146       CanBookBeIssued( $patron, $barcode, undef, 0, $pref );
147     for my $href ( $issuingimpossible, $needsconfirmation ) {
148
149         # some data is returned using lc keys we only
150         foreach my $key ( keys %{$href} ) {
151             if ( $key =~ m/[^A-Z_]/ ) {
152                 delete $href->{$key};
153             }
154         }
155     }
156     return ( $issuingimpossible, $needsconfirmation );
157 }
158
159 1;
160 __END__