adding calendar popup to member entry
[koha.git] / members / deletemem.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #script to delete items
6 #written 2/5/00
7 #by chris@katipo.co.nz
8
9
10 # Copyright 2000-2002 Katipo Communications
11 #
12 # This file is part of Koha.
13 #
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
17 # version.
18 #
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License along with
24 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
25 # Suite 330, Boston, MA  02111-1307 USA
26
27 use strict;
28
29 use CGI;
30 use C4::Context;
31 use C4::Interface::CGI::Output;
32 use C4::Output;
33 use C4::Circulation::Circ2;
34 use C4::Auth;
35 use C4::Members;
36
37
38 my $input = new CGI;
39
40 my $flagsrequired;
41 $flagsrequired->{borrowers}=1;
42 my ($loggedinuser, $cookie, $sessionID) = checkauth($input, 0, $flagsrequired);
43
44
45
46 #print $input->header;
47 my $member=$input->param('member');
48 my %env;
49 $env{'nottodayissues'}=1;
50 my %member2;
51 $member2{'borrowernumber'}=$member;
52 my $issues=currentissues(\%env,\%member2);
53 my $i=0;
54 foreach (sort keys %$issues) {
55         $i++;
56 }
57 my ($bor,$flags)=getpatroninformation(\%env, $member,'');
58 if (C4::Context->preference("IndependantBranches")) {
59         my $userenv = C4::Context->userenv;
60         unless ($userenv->{flags} == 1){
61                 unless ($userenv->{'branch'} eq $bor->{'branchcode'}){
62 #                       warn "user ".$userenv->{'branch'} ."borrower :". $bor->{'branchcode'};
63                         print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$member");
64                         exit 1;
65                 }
66         }
67 }
68 my $dbh = C4::Context->dbh;
69 my $sth=$dbh->prepare("Select * from borrowers where guarantorid=?");
70 $sth->execute($member);
71 my $data=$sth->fetchrow_hashref;
72 $sth->finish;
73 if ($i > 0 or $flags->{'CHARGES'}  or $data->{'borrowernumber'}){
74 warn"je suis rentre dans la boucle";
75         my ($template, $borrowernumber, $cookie)
76                 = get_template_and_user({template_name => "members/deletemem.tmpl",
77                                         query => $input,
78                                         type => "intranet",
79                                         authnotrequired => 0,
80                                         flagsrequired => {borrowers => 1},
81                                         debug => 1,
82                                         });
83         #   print $input->header;
84         $template->param(borrowernumber => $member);
85         if ($i >0) {
86                 $template->param(ItemsOnIssues => $i);
87         }
88         if ($flags->{'CHARGES'} ne '') {
89                 $template->param(charges => $flags->{'CHARGES'}->{'message'});
90         }
91         if ($data ne '') {
92                 $template->param(guarantees => 1);
93         }
94 #       print "<table border=1>";
95 #       if ($i > 0){
96 #               print "<TR><TD>Items on Issue</td><td align=right>$i</td></tr>";
97 #       }
98 #       if ($flags->{'CHARGES'} ne ''){
99 #               print "<TR><TD>Charges</td><td>$flags->{'CHARGES'}->{'message'}</tr>";
100 #       }
101 #       if ($data ne ''){
102 #               print "<TR><TD>Guarantees</td></tr>";
103 #       }
104 #       print "</table>";
105 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
106                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
107                 IntranetNav => C4::Context->preference("IntranetNav"),
108                 );
109 output_html_with_http_headers $input, $cookie, $template->output;
110
111 } else {
112         DeleteBorrower($member);
113         print $input->redirect("/cgi-bin/koha/members/members-home.pl");
114 }
115
116