Add Staff member type. Add permissions checks for bug# 1269
[koha.git] / members / moremember.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 =head1 moremember.pl
22
23  script to do a borrower enquiry/bring up borrower details etc
24  Displays all the details about a borrower
25  written 20/12/99 by chris@katipo.co.nz
26  last modified 21/1/2000 by chris@katipo.co.nz
27  modified 31/1/2001 by chris@katipo.co.nz
28    to not allow items on request to be renewed
29
30  needs html removed and to use the C4::Output more, but its tricky
31
32 =cut
33
34 use strict;
35 use CGI;
36 use C4::Context;
37 use C4::Auth;
38 use C4::Output;
39 use C4::Members;
40 use C4::Dates;
41 use C4::Reserves;
42 use C4::Circulation;
43 use C4::Koha;
44 use C4::Letters;
45 use C4::Biblio;
46 use C4::Reserves;
47 use C4::Branch; # GetBranchName
48
49 my $dbh = C4::Context->dbh;
50
51 my $input = new CGI;
52 my $print = $input->param('print');
53 my @failedrenews = $input->param('failedrenew');
54 my $error = $input->param('error');
55 my @renew_failed;
56 for (@failedrenews) { $renew_failed[$_] = 1; }
57
58 my $template_name;
59
60 if    ($print eq "page") { $template_name = "members/moremember-print.tmpl";   }
61 elsif ($print eq "slip") { $template_name = "members/moremember-receipt.tmpl"; }
62 else {                     $template_name = "members/moremember.tmpl";         }
63
64 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
65     {
66         template_name   => $template_name,
67         query           => $input,
68         type            => "intranet",
69         authnotrequired => 0,
70         flagsrequired   => { borrowers => 1 },
71         debug           => 1,
72     }
73 );
74 my $borrowernumber = $input->param('borrowernumber');
75
76 #start the page and read in includes
77 my $data           = GetMember( $borrowernumber ,'borrowernumber');
78 my $reregistration = $input->param('reregistration');
79
80 if ( not defined $data ) {
81     $template->param (unknowuser => 1);
82     exit;
83 }
84
85 # re-reregistration function to automatic calcul of date expiry
86 (
87 #     $data->{'dateexpiry'} = GetMembeReregistration(
88  $data->{'dateexpiry'} = ExtendMemberSubscriptionTo(
89         $data->{'categorycode'},
90         $borrowernumber, $data->{'dateenrolled'}
91     )
92 ) if ( $reregistration eq 'y' );
93 my $borrowercategory = GetBorrowercategory( $data->{'categorycode'} );
94 my $category_type = $borrowercategory->{'category_type'};
95
96 # in template <TMPL_IF name="I"> => instutitional (A for Adult& C for children) 
97 $template->param( $data->{'categorycode'} => 1 ); 
98
99 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
100                 my $tempdate = C4::Dates->new($data->{$_},'iso')->output
101                         or warn ("Invalid $_ = " . $data->{$_});
102                 $data->{$_} = $tempdate || '';
103 }
104 $data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' );
105
106 for (qw(debarred gonenoaddress lost borrowernotes)) {
107          $data->{$_} and $template->param(flagged => 1) and last;
108 }
109
110 $data->{'ethnicity'} = fixEthnicity( $data->{'ethnicity'} );
111
112 $data->{ "sex_".$data->{'sex'}."_p" } = 1;
113
114 if ( $category_type eq 'C' and $data->{'guarantorid'} ne '0' ) {
115     my $data2 = GetMember( $data->{'guarantorid'} ,'borrowernumber');
116         foreach (qw(address city B_address B_city phone mobilezipcode)) {
117         $data->{$_} = $data2->{$_};
118         }
119 }
120
121 if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) {
122     $template->param( printethnicityline => 1 );
123 }
124 if ( $category_type eq 'A' ) {
125     $template->param( isguarantee => 1 );
126
127     # FIXME
128     # It looks like the $i is only being returned to handle walking through
129     # the array, which is probably better done as a foreach loop.
130     #
131     my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} );
132     my @guaranteedata;
133     for ( my $i = 0 ; $i < $count ; $i++ ) {
134         push(@guaranteedata,
135             {
136                 borrowernumber => $guarantees->[$i]->{'borrowernumber'},
137                 cardnumber     => $guarantees->[$i]->{'cardnumber'},
138                 name           => $guarantees->[$i]->{'firstname'} . " "
139                                 . $guarantees->[$i]->{'surname'}
140             }
141         );
142     }
143     $template->param( guaranteeloop => \@guaranteedata );
144     ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' );
145 }
146 else {
147     if ($data->{'guarantorid'}){
148             my ($guarantor) = GetMember( $data->{'guarantorid'},'biblionumber');
149                 $template->param(guarantor => 1);
150                 foreach (qw(borrowernumber cardnumber firstname surname)) {        
151                           $template->param("guarantor$_" => $guarantor->{$_});
152         }
153     }
154 }
155
156 #Independant branches management
157 my $unvalidlibrarian =
158   (      ( C4::Context->preference("IndependantBranches") )
159       && ( C4::Context->userenv->{flags} != 1 )
160       && ( $data->{'branchcode'} ne C4::Context->userenv->{branch} ) );
161
162 my %bor;
163 $bor{'borrowernumber'} = $borrowernumber;
164
165 # Converts the branchcode to the branch name
166 my $samebranch;
167 if ( C4::Context->preference("IndependantBranches") ) {
168     my $userenv = C4::Context->userenv;
169     unless ( $userenv->{flags} == 1 ) {
170         $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
171     }
172     $samebranch = 1 if ( $userenv->{flags} == 1 );
173 }
174 my $branchdetail = GetBranchDetail( $data->{'branchcode'});
175 $data->{'branchname'} = $branchdetail->{branchname};
176
177
178 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
179 my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} );
180 my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} );
181 ( $template->param( lib1 => $lib1 ) ) if ($lib1);
182 ( $template->param( lib2 => $lib2 ) ) if ($lib2);
183
184 # current issues
185 #
186 my ( $count, $issue ) = GetPendingIssues($borrowernumber);
187 my $roaddetails = &GetRoadTypeDetails( $data->{'streettype'} );
188 my $today       = POSIX::strftime("%Y%m%d", localtime); # iso format
189 my @issuedata;
190 my $totalprice = 0;
191 my $toggle     = 0;
192 for ( my $i = 0 ; $i < $count ; $i++ ) {
193     my $datedue = $issue->[$i]{'date_due'};
194     $issue->[$i]{'date_due'} = C4::Dates->new($issue->[$i]{'date_due'},'iso')->output(C4::Context->preference('dateformat'));
195     my %row = %{ $issue->[$i] };
196     $totalprice += $issue->[$i]{'replacementprice'};
197     $row{'replacementprice'} = $issue->[$i]{'replacementprice'};
198     if ( $datedue < $today ) {
199         $row{'red'} = 1;    #print "<font color=red>";
200     }
201     $row{toggle} = $toggle++ % 2;
202
203     #find the charge for an item
204     my ( $charge, $itemtype ) =
205       GetIssuingCharges( $issue->[$i]{'itemnumber'}, $borrowernumber );
206
207     my $itemtypeinfo = getitemtypeinfo($itemtype);
208     $row{'itemtype_description'} = $itemtypeinfo->{description};
209     $row{'itemtype_image'}       = $itemtypeinfo->{imageurl};
210
211     $row{'charge'} = sprintf( "%.2f", $charge );
212
213     #check item is not reserved
214     my ( $restype, $reserves ) = CheckReserves( $issue->[$i]{'itemnumber'} );
215     $row{'norenew'} = ($restype) ? 1 : 0;
216         $row{'renew_failed'} = $renew_failed[$issue->[$i]{'itemnumber'}];               
217     push( @issuedata, \%row );
218 }
219
220 ##################################################################################
221 # BUILD HTML
222 # show all reserves of this borrower, and the position of the reservation ....
223 if ($borrowernumber) {
224
225     # new op dev
226     # now we show the status of the borrower's reservations
227     my @borrowerreserv = GetReservesFromBorrowernumber($borrowernumber );
228     my @reservloop;
229     foreach my $num_res (@borrowerreserv) {
230         my %getreserv;
231         my $getiteminfo  = GetBiblioFromItemNumber( $num_res->{'itemnumber'} );
232         my $itemtypeinfo = getitemtypeinfo( $getiteminfo->{'itemtype'} );
233         my ( $transfertwhen, $transfertfrom, $transfertto ) =
234             GetTransfers( $num_res->{'itemnumber'} );
235
236                 foreach (qw(waiting transfered nottransfered)) {
237                                 $getreserv{$_} = 0;
238                 }
239         $getreserv{reservedate}  = C4::Dates->new($num_res->{'reservedate'},'iso')->output(C4::Context->preference('dateformat'));
240                 foreach (qw(biblionumber title author barcodereserv itemcallnumber )) {
241                                 $getreserv{$_} = $getiteminfo->{$_};
242                 }
243         $getreserv{itemtype}  = $itemtypeinfo->{'description'};
244
245         #               check if we have a waitin status for reservations
246         if ( $num_res->{'found'} eq 'W' ) {
247             $getreserv{color}   = 'reserved';
248             $getreserv{waiting} = 1;
249         }
250
251         #               check transfers with the itemnumber foud in th reservation loop
252         if ($transfertwhen) {
253             $getreserv{color}      = 'transfered';
254             $getreserv{transfered} = 1;
255             $getreserv{datesent}   = C4::Dates->new($transfertwhen, 'iso')->output() or die "Cannot get new($transfertwhen, 'iso') from C4::Dates";
256             $getreserv{frombranch} = GetBranchName($transfertfrom);
257         }
258
259         if ( ( $getiteminfo->{'holdingbranch'} ne $num_res->{'branchcode'} )
260             and not $transfertwhen )
261         {
262             $getreserv{nottransfered}   = 1;
263             $getreserv{nottransferedby} =
264                 GetBranchName( $getiteminfo->{'holdingbranch'} );
265         }
266
267 #               if we don't have a reserv on item, we put the biblio infos and the waiting position
268         if ( $getiteminfo->{'title'} eq '' ) {
269             my $getbibinfo = GetBiblioItemData( $num_res->{'biblionumber'} );
270             my $getbibtype = getitemtypeinfo( $getbibinfo->{'itemtype'} );
271             $getreserv{color}           = 'inwait';
272             $getreserv{title}           = $getbibinfo->{'title'};
273             $getreserv{waitingposition} = $num_res->{'priority'};
274             $getreserv{nottransfered}   = 0;
275             $getreserv{itemtype}        = $getbibtype->{'description'};
276             $getreserv{author}          = $getbibinfo->{'author'};
277             $getreserv{itemcallnumber}  = '----------';
278             $getreserv{biblionumber}  = $num_res->{'biblionumber'};     
279         }
280
281         push( @reservloop, \%getreserv );
282     }
283
284     # return result to the template
285     $template->param( reservloop => \@reservloop );
286 }
287
288 # current alert subscriptions
289 my $alerts = getalert($borrowernumber);
290 foreach (@$alerts) {
291     $_->{ $_->{type} } = 1;
292     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
293 }
294 my $picture;
295 my $htdocs = C4::Context->config('intrahtdocs');
296 $picture = "/borrowerimages/" . $borrowernumber . ".jpg";
297 if ( -e $htdocs . "$picture" ) {
298     $template->param( picture => $picture );
299 }
300 my $branch=C4::Context->userenv->{'branch'};
301
302 $template->param($data);
303
304 $template->param(
305     roaddetails      => $roaddetails,
306     borrowernumber   => $borrowernumber,
307     reregistration   => $reregistration,
308     branch           => $branch,        
309     totalprice       => sprintf( "%.2f", $totalprice ),
310     totaldue         => sprintf( "%.2f", $total ),
311     issueloop        => \@issuedata,
312     unvalidlibrarian => $unvalidlibrarian,
313         error            => $error,
314         $error                  => 1,
315     #            reserveloop     => \@reservedata,
316 );
317
318 output_html_with_http_headers $input, $cookie, $template->output;