BUG 17414 Add new GIR codes in Edifact
[koha.git] / opac / sco / sco-main.pl
1 #!/usr/bin/perl
2 #
3 # This code has been modified by Trendsetters (originally from opac-user.pl)
4 # This code has been modified by rch
5 # Parts Copyright 2010-2011, ByWater Solutions (those related to username/password auth)
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 # We're going to authenticate a self-check user.  we'll add a flag to borrowers 'selfcheck'
23 #
24 # We're in a controlled environment; we trust the user.
25 # So the selfcheck station will accept a patronid and issue items to that borrower.
26 # FIXME: NOT really a controlled environment...  We're on the internet!
27 #
28 # The checkout permission comes form the CGI cookie/session of a staff user.
29 # The patron is not really logging in here in the same way as they do on the
30 # rest of the OPAC.  So don't confuse loggedinuser with the patron user.
31 #
32 # FIXME: inputfocus not really used in TMPL
33
34 use strict;
35 use warnings;
36
37 use CGI qw ( -utf8 );
38 use Digest::MD5 qw(md5_base64);
39
40 use C4::Auth qw(get_template_and_user checkpw);
41 use C4::Koha;
42 use C4::Circulation;
43 use C4::Reserves;
44 use C4::Output;
45 use C4::Members;
46 use C4::Biblio;
47 use C4::Items;
48 use Koha::Acquisition::Currencies;
49 use Koha::Patron::Images;
50 use Koha::Patron::Messages;
51
52 my $query = new CGI;
53
54 unless (C4::Context->preference('WebBasedSelfCheck')) {
55     # redirect to OPAC home if self-check is not enabled
56     print $query->redirect("/cgi-bin/koha/opac-main.pl");
57     exit;
58 }
59
60 if (C4::Context->preference('AutoSelfCheckAllowed')) 
61 {
62     my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
63     my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
64     $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
65     $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
66     $query->param(-name=>'koha_login_context',-values=>['sco']);
67 }
68 $query->param(-name=>'sco_user_login',-values=>[1]);
69 my ($template, $loggedinuser, $cookie) = get_template_and_user({
70     template_name   => "sco/sco-main.tt",
71     authnotrequired => 0,
72     flagsrequired => { circulate => "self_checkout" },
73     query => $query,
74     type  => "opac",
75     debug => 1,
76 });
77
78 if (C4::Context->preference('SelfCheckoutByLogin'))
79 {
80     $template->param(authbylogin  => 1);
81 }
82
83 # Get the self checkout timeout preference, or use 120 seconds as a default
84 my $selfchecktimeout = 120000;
85 if (C4::Context->preference('SelfCheckTimeout')) { 
86     $selfchecktimeout = C4::Context->preference('SelfCheckTimeout') * 1000;
87 }
88 $template->param(SelfCheckTimeout => $selfchecktimeout);
89
90 # Checks policy laid out by AllowSelfCheckReturns, defaults to 'on' if preference is undefined
91 my $allowselfcheckreturns = 1;
92 if (defined C4::Context->preference('AllowSelfCheckReturns')) {
93     $allowselfcheckreturns = C4::Context->preference('AllowSelfCheckReturns');
94 }
95 $template->param(AllowSelfCheckReturns => $allowselfcheckreturns);
96
97
98 my $issuerid = $loggedinuser;
99 my ($op, $patronid, $patronlogin, $patronpw, $barcode, $confirmed) = (
100     $query->param("op")         || '',
101     $query->param("patronid")   || '',
102     $query->param("patronlogin")|| '',
103     $query->param("patronpw")   || '',
104     $query->param("barcode")    || '',
105     $query->param("confirmed")  || '',
106 );
107
108 my $issuenoconfirm = 1; #don't need to confirm on issue.
109 #warn "issuerid: " . $issuerid;
110 my $issuer   = GetMemberDetails($issuerid);
111 my $item     = GetItem(undef,$barcode);
112 if (C4::Context->preference('SelfCheckoutByLogin') && !$patronid) {
113     my $dbh = C4::Context->dbh;
114     my $resval;
115     ($resval, $patronid) = checkpw($dbh, $patronlogin, $patronpw);
116 }
117 my $borrower = GetMemberDetails(undef,$patronid);
118
119 my $currencySymbol = "";
120 if ( my $active_currency = Koha::Acquisition::Currencies->get_active ) {
121     $currencySymbol = $active_currency->symbol;
122 }
123
124 my $branch = $issuer->{branchcode};
125 my $confirm_required = 0;
126 my $return_only = 0;
127 #warn "issuer cardnumber: " .   $issuer->{cardnumber};
128 #warn "patron cardnumber: " . $borrower->{cardnumber};
129 if ($op eq "logout") {
130     $query->param( patronid => undef, patronlogin => undef, patronpw => undef );
131 }
132 elsif ( $op eq "returnbook" && $allowselfcheckreturns ) {
133     my ($doreturn) = AddReturn( $barcode, $branch );
134     #warn "returnbook: " . $doreturn;
135     $borrower = GetMemberDetails(undef,$patronid);
136 }
137 elsif ( $op eq "checkout" ) {
138     my $impossible  = {};
139     my $needconfirm = {};
140     if ( !$confirmed ) {
141         ( $impossible, $needconfirm ) = CanBookBeIssued(
142             $borrower,
143             $barcode,
144             undef,
145             0,
146             C4::Context->preference("AllowItemsOnHoldCheckout")
147         );
148     }
149     $confirm_required = scalar keys %$needconfirm;
150
151     #warn "confirm_required: " . $confirm_required ;
152     if (scalar keys %$impossible) {
153
154         #  warn "impossible: numkeys: " . scalar (keys(%$impossible));
155         #warn join " ", keys %$impossible;
156         my $issue_error = (keys %$impossible)[0];
157
158         # FIXME  we assume only one error.
159         $template->param(
160             impossible                => $issue_error,
161             "circ_error_$issue_error" => 1,
162             title                     => $item->{title},
163             hide_main                 => 1,
164         );
165         if ($issue_error eq 'DEBT') {
166             $template->param(amount => $currencySymbol.$impossible->{DEBT});
167         }
168         #warn "issue_error: " . $issue_error ;
169         if ( $issue_error eq "NO_MORE_RENEWALS" ) {
170             $return_only = 1;
171             $template->param(
172                 returnitem => 1,
173                 barcode    => $barcode,
174             );
175         }
176     } elsif ( $needconfirm->{RENEW_ISSUE} ) {
177         if ($confirmed) {
178             #warn "renewing";
179             AddRenewal( $borrower, $item->{itemnumber} );
180         } else {
181             #warn "renew confirmation";
182             $template->param(
183                 renew               => 1,
184                 barcode             => $barcode,
185                 confirm             => 1,
186                 confirm_renew_issue => 1,
187                 hide_main           => 1,
188             );
189         }
190     } elsif ( $confirm_required && !$confirmed ) {
191         #warn "failed confirmation";
192         my $issue_error = (keys %$needconfirm)[0];
193         $template->param(
194             impossible                => (keys %$needconfirm)[0],
195             "circ_error_$issue_error" => 1,
196             hide_main                 => 1,
197         );
198         if ($issue_error eq 'DEBT') {
199             $template->param(amount => $currencySymbol.$needconfirm->{DEBT});
200         }
201     } else {
202         if ( $confirmed || $issuenoconfirm ) {    # we'll want to call getpatroninfo again to get updated issues.
203             # warn "issuing book?";
204             AddIssue( $borrower, $barcode );
205             # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
206             # $template->param(
207             #   patronid => $patronid,
208             #   validuser => 1,
209             # );
210         } else {
211             $confirm_required = 1;
212             #warn "issue confirmation";
213             $template->param(
214                 confirm    => "Issuing title: " . $item->{title},
215                 barcode    => $barcode,
216                 hide_main  => 1,
217                 inputfocus => 'confirm',
218             );
219         }
220     }
221 } # $op
222
223 if ($borrower->{cardnumber}) {
224 #   warn "issuer's  branchcode: " .   $issuer->{branchcode};
225 #   warn   "user's  branchcode: " . $borrower->{branchcode};
226     my $borrowername = sprintf "%s %s", ($borrower->{firstname} || ''), ($borrower->{surname} || '');
227     my @issues;
228     my ($issueslist) = GetPendingIssues( $borrower->{'borrowernumber'} );
229     foreach my $it (@$issueslist) {
230         my ($renewokay, $renewerror) = CanBookBeIssued(
231             $borrower,
232             $it->{'barcode'},
233             undef,
234             0,
235             C4::Context->preference("AllowItemsOnHoldCheckout")
236         );
237         $it->{'norenew'} = 1 if $renewokay->{'NO_MORE_RENEWALS'};
238         $it->{date_due}  = $it->{date_due_sql};
239         push @issues, $it;
240     }
241
242     $template->param(
243         validuser => 1,
244         borrowername => $borrowername,
245         issues_count => scalar(@issues),
246         ISSUES => \@issues,
247         patronid => $patronid,
248         patronlogin => $patronlogin,
249         patronpw => $patronpw,
250         noitemlinks => 1 ,
251         borrowernumber => $borrower->{'borrowernumber'},
252     );
253
254     my $patron_messages = Koha::Patron::Messages->search(
255         {
256             borrowernumber => $borrower->{'borrowernumber'},
257             message_type => 'B',
258         }
259     );
260     $template->param(
261         patron_messages => $patron_messages,
262         opacnote => $borrower->{opacnote},
263     );
264
265     my $inputfocus = ($return_only      == 1) ? 'returnbook' :
266                      ($confirm_required == 1) ? 'confirm'    : 'barcode' ;
267     $template->param(
268         inputfocus => $inputfocus,
269         nofines => 1,
270
271     );
272     if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) {
273         my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
274         $template->param(
275             display_patron_image => 1,
276             cardnumber           => $borrower->{cardnumber},
277         ) if $patron_image;
278     }
279 } else {
280     $template->param(
281         patronid   => $patronid,
282         nouser     => $patronid,
283     );
284 }
285
286 $template->param(
287     SCOUserJS  => C4::Context->preference('SCOUserJS'),
288     SCOUserCSS => C4::Context->preference('SCOUserCSS'),
289 );
290
291 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };