Bug 23916: Add "RecordIssuer" syspref
[koha.git] / members / deletemem.pl
bloba5084981824307263f10702b033d6a54e354e7b3
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 );
28 use Try::Tiny;
30 use C4::Context;
31 use C4::Output;
32 use C4::Auth;
33 use C4::Members;
34 use C4::Suggestions qw( SearchSuggestion );
35 use Koha::Patrons;
36 use Koha::Token;
37 use Koha::Patron::Categories;
39 my $input = CGI->new;
41 my ($template, $loggedinuser, $cookie)
42 = get_template_and_user({template_name => "members/deletemem.tt",
43 query => $input,
44 type => "intranet",
45 flagsrequired => {borrowers => 'edit_borrowers'},
46 debug => 1,
47 });
49 #print $input->header;
50 my $member = $input->param('member');
52 #Do not delete yourself...
53 if ( $loggedinuser == $member ) {
54 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_YOURSELF");
55 exit 0; # Exit without error
58 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
59 my $patron = Koha::Patrons->find( $member );
60 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
62 my $debits = $patron->account->outstanding_debits->total_outstanding;
63 my $credits = abs $patron->account->outstanding_credits->total_outstanding;
64 my $countissues = $patron->checkouts->count;
65 my $userenv = C4::Context->userenv;
67 if ($patron->category->category_type eq "S") {
68 unless(C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) {
69 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_STAFF");
70 exit 0; # Exit without error
72 } else {
73 unless(C4::Auth::haspermission($userenv->{'id'},{'borrowers'=>'edit_borrowers'})) {
74 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE");
75 exit 0; # Exit without error
79 if (C4::Context->preference("IndependentBranches")) {
80 my $userenv = C4::Context->userenv;
81 if ( !C4::Context->IsSuperLibrarian() && $patron->branchcode){
82 unless ($userenv->{branch} eq $patron->branchcode){
83 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_OTHERLIBRARY");
84 exit 0; # Exit without error
89 if ( my $anonymous_patron = C4::Context->preference("AnonymousPatron") ) {
90 if ( $patron->id eq $anonymous_patron ) {
91 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_ANONYMOUS_PATRON");
92 exit 0; # Exit without error
96 my $op = $input->param('op') || 'delete_confirm';
97 my $dbh = C4::Context->dbh;
98 my $is_guarantor = $patron->guarantee_relationships->count;
99 my $countholds = $dbh->selectrow_array("SELECT COUNT(*) FROM reserves WHERE borrowernumber=?", undef, $member);
101 # Add warning if patron has pending suggestions
102 $template->param(
103 pending_suggestions => scalar @{
104 C4::Suggestions::SearchSuggestion(
105 { suggestedby => $member, STATUS => 'ASKED' }
110 $template->param(
111 patron => $patron,
112 ItemsOnIssues => $countissues,
113 debits => $debits,
114 credits => $credits,
115 is_guarantor => $is_guarantor,
116 ItemsOnHold => $countholds,
119 if ( $op eq 'delete_confirm' or $countissues > 0 or $debits or $is_guarantor ) {
120 $template->param(
121 op => 'delete_confirm',
122 csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID') }),
125 } elsif ( $op eq 'delete_confirmed' ) {
126 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
127 unless Koha::Token->new->check_csrf( {
128 session_id => $input->cookie('CGISESSID'),
129 token => scalar $input->param('csrf_token'),
131 my $patron = Koha::Patrons->find( $member );
132 $patron->move_to_deleted;
133 try {
134 $patron->delete;
135 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
136 } catch {
137 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member&error=CANT_DELETE_ANONYMOUS_PATRON");
139 # TODO Tell the user everything went ok
140 exit 0; # Exit without error
143 output_html_with_http_headers $input, $cookie, $template->output;