Bug 18789: Use the patron variable in circulation.[pl|tt]
[koha.git] / members / deletemem.pl
blob86ba249621116c510a2fa9c413d4ef4d6b2a3b72
1 #!/usr/bin/perl
3 #script to delete items
4 #written 2/5/00
5 #by chris@katipo.co.nz
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use Modern::Perl;
26 use CGI qw ( -utf8 );
27 use C4::Context;
28 use C4::Output;
29 use C4::Auth;
30 use C4::Members;
31 use Module::Load;
32 use Koha::Patrons;
33 use Koha::Token;
35 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
36 load Koha::NorwegianPatronDB, qw( NLMarkForDeletion NLSync );
39 my $input = new CGI;
41 my ($template, $loggedinuser, $cookie)
42 = get_template_and_user({template_name => "members/deletemem.tt",
43 query => $input,
44 type => "intranet",
45 authnotrequired => 0,
46 flagsrequired => {borrowers => 'edit_borrowers'},
47 debug => 1,
48 });
50 #print $input->header;
51 my $member = $input->param('member');
53 #Do not delete yourself...
54 if ( $loggedinuser == $member ) {
55 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_YOURSELF");
56 exit 0; # Exit without error
59 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
60 my $patron = Koha::Patrons->find( $member );
61 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
63 # Handle deletion from the Norwegian national patron database, if it is enabled
64 # If the "deletelocal" parameter is set to "false", the regular deletion will be
65 # short circuited, and only a deletion from the national database can be carried
66 # out. If "deletelocal" is set to "true", or not set to anything normal
67 # deletion will be done.
68 my $deletelocal = $input->param('deletelocal') eq 'false' ? 0 : 1; # Deleting locally is the default
69 if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
70 if ( $input->param('deleteremote') eq 'true' ) {
71 # Mark for deletion, then try a live sync
72 NLMarkForDeletion( $member );
73 NLSync({ 'borrowernumber' => $member });
77 my $issues = GetPendingIssues($member); # FIXME: wasteful call when really, we only want the count
78 my $countissues = scalar(@$issues);
80 my $flags = C4::Members::patronflags( $patron->unblessed );
81 my $userenv = C4::Context->userenv;
85 if ($patron->category->category_type eq "S") {
86 unless(C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) {
87 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_STAFF");
88 exit 0; # Exit without error
90 } else {
91 unless(C4::Auth::haspermission($userenv->{'id'},{'borrowers'=>'edit_borrowers'})) {
92 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE");
93 exit 0; # Exit without error
97 if (C4::Context->preference("IndependentBranches")) {
98 my $userenv = C4::Context->userenv;
99 if ( !C4::Context->IsSuperLibrarian() && $patron->branchcode){
100 unless ($userenv->{branch} eq $patron->branchcode){
101 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_OTHERLIBRARY");
102 exit 0; # Exit without error
107 my $op = $input->param('op') || 'delete_confirm';
108 my $dbh = C4::Context->dbh;
109 my $is_guarantor = $dbh->selectrow_array("SELECT COUNT(*) FROM borrowers WHERE guarantorid=?", undef, $member);
110 if ( $op eq 'delete_confirm' or $countissues > 0 or $flags->{'CHARGES'} or $is_guarantor or $deletelocal == 0) {
112 $template->param(
113 patron => $patron,
115 if ($countissues >0) {
116 $template->param(ItemsOnIssues => $countissues);
118 if ($flags->{'CHARGES'} ne '') {
119 $template->param(charges => $flags->{'CHARGES'}->{'amount'});
121 if ($is_guarantor) {
122 $template->param(guarantees => 1);
124 if ($deletelocal == 0) {
125 $template->param(keeplocal => 1);
127 # This is silly written but reflect the same conditions as above
128 if ( not $countissues > 0 and not $flags->{CHARGES} ne '' and not $is_guarantor and not $deletelocal == 0 ) {
129 $template->param(
130 op => 'delete_confirm',
131 csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID') }),
134 } elsif ( $op eq 'delete_confirmed' ) {
136 die "Wrong CSRF token"
137 unless Koha::Token->new->check_csrf( {
138 session_id => $input->cookie('CGISESSID'),
139 token => scalar $input->param('csrf_token'),
141 my $patron = Koha::Patrons->find( $member );
142 $patron->move_to_deleted;
143 $patron->delete;
144 # TODO Tell the user everything went ok
145 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
146 exit 0; # Exit without error
149 output_html_with_http_headers $input, $cookie, $template->output;