Bug 11932: Move delete checkbox on patron modification to right
[koha.git] / opac / sco / sco-main.pl
blobfadb63395a0b4725238984393be37ee33afd3516
1 #!/usr/bin/perl
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)
7 # This file is part of Koha.
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.
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.
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>.
22 # We're going to authenticate a self-check user. we'll add a flag to borrowers 'selfcheck'
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!
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.
32 # FIXME: inputfocus not really used in TMPL
34 use Modern::Perl;
36 use CGI qw ( -utf8 );
37 use Digest::MD5 qw(md5_base64);
39 use C4::Auth qw(get_template_and_user checkpw);
40 use C4::Koha;
41 use C4::Circulation;
42 use C4::Reserves;
43 use C4::Output;
44 use C4::Members;
45 use C4::Biblio;
46 use C4::Items;
47 use Koha::Acquisition::Currencies;
48 use Koha::Patron::Images;
49 use Koha::Patron::Messages;
51 my $query = new CGI;
53 unless (C4::Context->preference('WebBasedSelfCheck')) {
54 # redirect to OPAC home if self-check is not enabled
55 print $query->redirect("/cgi-bin/koha/opac-main.pl");
56 exit;
59 if (C4::Context->preference('AutoSelfCheckAllowed'))
61 my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
62 my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
63 $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
64 $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
65 $query->param(-name=>'koha_login_context',-values=>['sco']);
67 $query->param(-name=>'sco_user_login',-values=>[1]);
68 my ($template, $loggedinuser, $cookie) = get_template_and_user({
69 template_name => "sco/sco-main.tt",
70 authnotrequired => 0,
71 flagsrequired => { circulate => "self_checkout" },
72 query => $query,
73 type => "opac",
74 debug => 1,
75 });
77 if (C4::Context->preference('SelfCheckoutByLogin'))
79 $template->param(authbylogin => 1);
82 # Get the self checkout timeout preference, or use 120 seconds as a default
83 my $selfchecktimeout = 120000;
84 if (C4::Context->preference('SelfCheckTimeout')) {
85 $selfchecktimeout = C4::Context->preference('SelfCheckTimeout') * 1000;
87 $template->param(SelfCheckTimeout => $selfchecktimeout);
89 # Checks policy laid out by AllowSelfCheckReturns, defaults to 'on' if preference is undefined
90 my $allowselfcheckreturns = 1;
91 if (defined C4::Context->preference('AllowSelfCheckReturns')) {
92 $allowselfcheckreturns = C4::Context->preference('AllowSelfCheckReturns');
94 $template->param(AllowSelfCheckReturns => $allowselfcheckreturns);
97 my $issuerid = $loggedinuser;
98 my ($op, $patronid, $patronlogin, $patronpw, $barcode, $confirmed) = (
99 $query->param("op") || '',
100 $query->param("patronid") || '',
101 $query->param("patronlogin")|| '',
102 $query->param("patronpw") || '',
103 $query->param("barcode") || '',
104 $query->param("confirmed") || '',
107 my $issuenoconfirm = 1; #don't need to confirm on issue.
108 #warn "issuerid: " . $issuerid;
109 my $issuer = GetMember( borrowernumber => $issuerid );
110 my $item = GetItem(undef,$barcode);
111 if (C4::Context->preference('SelfCheckoutByLogin') && !$patronid) {
112 my $dbh = C4::Context->dbh;
113 my $resval;
114 ($resval, $patronid) = checkpw($dbh, $patronlogin, $patronpw);
116 my $borrower = GetMember( cardnumber => $patronid );
118 my $currencySymbol = "";
119 if ( my $active_currency = Koha::Acquisition::Currencies->get_active ) {
120 $currencySymbol = $active_currency->symbol;
123 my $branch = $issuer->{branchcode};
124 my $confirm_required = 0;
125 my $return_only = 0;
126 #warn "issuer cardnumber: " . $issuer->{cardnumber};
127 #warn "patron cardnumber: " . $borrower->{cardnumber};
128 if ($op eq "logout") {
129 $query->param( patronid => undef, patronlogin => undef, patronpw => undef );
131 elsif ( $op eq "returnbook" && $allowselfcheckreturns ) {
132 my ($doreturn) = AddReturn( $barcode, $branch );
133 #warn "returnbook: " . $doreturn;
134 $borrower = GetMember( cardnumber => $patronid );
136 elsif ( $op eq "checkout" ) {
137 my $impossible = {};
138 my $needconfirm = {};
139 if ( !$confirmed ) {
140 ( $impossible, $needconfirm ) = CanBookBeIssued(
141 $borrower,
142 $barcode,
143 undef,
145 C4::Context->preference("AllowItemsOnHoldCheckoutSCO")
148 $confirm_required = scalar keys %$needconfirm;
150 #warn "confirm_required: " . $confirm_required ;
151 if (scalar keys %$impossible) {
153 # warn "impossible: numkeys: " . scalar (keys(%$impossible));
154 #warn join " ", keys %$impossible;
155 my $issue_error = (keys %$impossible)[0];
157 # FIXME we assume only one error.
158 $template->param(
159 impossible => $issue_error,
160 "circ_error_$issue_error" => 1,
161 title => $item->{title},
162 hide_main => 1,
164 if ($issue_error eq 'DEBT') {
165 $template->param(amount => $currencySymbol.$impossible->{DEBT});
167 #warn "issue_error: " . $issue_error ;
168 if ( $issue_error eq "NO_MORE_RENEWALS" ) {
169 $return_only = 1;
170 $template->param(
171 returnitem => 1,
172 barcode => $barcode,
175 } elsif ( $needconfirm->{RENEW_ISSUE} ) {
176 if ($confirmed) {
177 #warn "renewing";
178 AddRenewal( $borrower, $item->{itemnumber} );
179 } else {
180 #warn "renew confirmation";
181 $template->param(
182 renew => 1,
183 barcode => $barcode,
184 confirm => 1,
185 confirm_renew_issue => 1,
186 hide_main => 1,
189 } elsif ( $confirm_required && !$confirmed ) {
190 #warn "failed confirmation";
191 my $issue_error = (keys %$needconfirm)[0];
192 $template->param(
193 impossible => (keys %$needconfirm)[0],
194 "circ_error_$issue_error" => 1,
195 hide_main => 1,
197 if ($issue_error eq 'DEBT') {
198 $template->param(amount => $currencySymbol.$needconfirm->{DEBT});
200 } else {
201 if ( $confirmed || $issuenoconfirm ) { # we'll want to call getpatroninfo again to get updated issues.
202 # warn "issuing book?";
203 AddIssue( $borrower, $barcode );
204 # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
205 # $template->param(
206 # patronid => $patronid,
207 # validuser => 1,
208 # );
209 } else {
210 $confirm_required = 1;
211 #warn "issue confirmation";
212 $template->param(
213 confirm => "Issuing title: " . $item->{title},
214 barcode => $barcode,
215 hide_main => 1,
216 inputfocus => 'confirm',
220 } # $op
222 if ($borrower->{cardnumber}) {
223 # warn "issuer's branchcode: " . $issuer->{branchcode};
224 # warn "user's branchcode: " . $borrower->{branchcode};
225 my $borrowername = sprintf "%s %s", ($borrower->{firstname} || ''), ($borrower->{surname} || '');
226 my @issues;
227 my ($issueslist) = GetPendingIssues( $borrower->{'borrowernumber'} );
228 foreach my $it (@$issueslist) {
229 my ($can_be_renewed, $renew_error) = CanBookBeRenewed(
230 $borrower->{borrowernumber},
231 $it->{itemnumber},
233 $it->{can_be_renewed} = $can_be_renewed;
234 $it->{renew_error} = $renew_error;
235 $it->{date_due} = $it->{date_due_sql};
236 push @issues, $it;
239 $template->param(
240 validuser => 1,
241 borrowername => $borrowername,
242 issues_count => scalar(@issues),
243 ISSUES => \@issues,
244 patronid => $patronid,
245 patronlogin => $patronlogin,
246 patronpw => $patronpw,
247 noitemlinks => 1 ,
248 borrowernumber => $borrower->{'borrowernumber'},
251 my $patron_messages = Koha::Patron::Messages->search(
253 borrowernumber => $borrower->{'borrowernumber'},
254 message_type => 'B',
257 $template->param(
258 patron_messages => $patron_messages,
259 opacnote => $borrower->{opacnote},
262 my $inputfocus = ($return_only == 1) ? 'returnbook' :
263 ($confirm_required == 1) ? 'confirm' : 'barcode' ;
264 $template->param(
265 inputfocus => $inputfocus,
266 nofines => 1,
269 if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) {
270 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
271 $template->param(
272 display_patron_image => 1,
273 cardnumber => $borrower->{cardnumber},
274 ) if $patron_image;
276 } else {
277 $template->param(
278 patronid => $patronid,
279 nouser => $patronid,
283 $template->param(
284 SCOUserJS => C4::Context->preference('SCOUserJS'),
285 SCOUserCSS => C4::Context->preference('SCOUserCSS'),
288 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };