Show card number (non-editable) on opac-userupdate.pl. Also correctly formatting...
[koha.git] / opac / opac-userupdate.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 use strict;
21
22 use CGI;
23 use Mail::Sendmail;
24
25 use C4::Auth;    # checkauth, getborrowernumber.
26 use C4::Context;
27 use C4::Koha;
28 use C4::Circulation;
29 use C4::Output;
30 use C4::Dates qw/format_date/;
31 use C4::Members;
32 use C4::Members::Attributes;
33 use C4::Branch;
34
35 my $query = new CGI;
36
37 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
38     {
39         template_name   => "opac-userupdate.tmpl",
40         query           => $query,
41         type            => "opac",
42         authnotrequired => 0,
43         flagsrequired   => { borrow => 1 },
44         debug           => 1,
45     }
46 );
47
48 # get borrower information ....
49 my ( $borr ) = GetMemberDetails( $borrowernumber );
50 my $lib = GetBranchDetail($borr->{'branchcode'});
51
52 # handle the new information....
53 # collect the form values and send an email.
54 my @fields = (
55     'surname',       'firstname',    'phone',
56     'fax', 'address','address2','city','zipcode','phone','mobile','fax','phonepro', 'emailaddress','B_streetaddress','B_city','B_zipcode','dateofbirth','sex'
57 );
58 my $update;
59 my $updateemailaddress = $lib->{'branchemail'};
60 $updateemailaddress = C4::Context->preference('KohaAdminEmailAddress') unless( $updateemailaddress =~ /\w+@\w+/);
61 if ( $updateemailaddress eq '' ) {
62     warn
63 "KohaAdminEmailAddress system preference not set.  Couldn't send patron update information for $borr->{'firstname'} $borr->{'surname'} (#$borrowernumber)\n";
64     my ($template) = get_template_and_user(
65         {
66             template_name   => "kohaerror.tmpl",
67             query           => $query,
68             type            => "opac",
69             authnotrequired => 1,
70             flagsrequired   => { borrow => 1 },
71             debug           => 1,
72         }
73     );
74
75     $template->param(
76         errormessage => 'KohaAdminEmailAddress system preference
77     is not set.  Please visit the library to update your user record'
78     );
79
80     output_html_with_http_headers $query, $cookie, $template->output;
81     exit;
82 }
83
84 if ( $query->{'modify'} ) {
85
86     # get all the fields:
87     my $message = <<"EOF";
88 Borrower $borr->{'cardnumber'}
89
90 has requested to change her/his personal details.
91 Please check these new details and make the changes:
92 EOF
93     foreach my $field (@fields) {
94         my $newfield = $query->param($field);
95         $message .= "$field : $borr->{$field}  -->  $newfield\n";
96     }
97     $message .= "\n\nThanks,\nKoha\n\n";
98     my %mail = (
99         To      => $updateemailaddress,
100         From    => $updateemailaddress,
101         Subject => "User Request for update of Record.",
102         Message => $message,
103         'Content-Type' => 'text/plain; charset="utf8"',
104     );
105
106     if ( sendmail %mail ) {
107
108         # do something if it works....
109         warn "Mail sent ok\n";
110         print $query->redirect('/cgi-bin/koha/opac-user.pl?patronupdate=sent');
111         exit;
112     }
113     else {
114
115         # do something if it doesnt work....
116         warn "Error sending mail: $Mail::Sendmail::error \n";
117     }
118 }
119
120 $borr->{'dateenrolled'} = format_date( $borr->{'dateenrolled'} );
121 $borr->{'dateexpiry'}       = format_date( $borr->{'dateexpiry'} );
122 $borr->{'dateofbirth'}  = format_date( $borr->{'dateofbirth'} );
123 $borr->{'ethnicity'}    = fixEthnicity( $borr->{'ethnicity'} );
124
125 if (C4::Context->preference('ExtendedPatronAttributes')) {
126     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber, 'opac');
127     if (scalar(@$attributes) > 0) {
128         $borr->{ExtendedPatronAttributes} = 1;
129         $borr->{patron_attributes} = $attributes;
130     }
131 }
132
133 my @bordat;
134 $bordat[0] = $borr;
135
136 $template->param( 
137     BORROWER_INFO => \@bordat,
138     userupdateview => 1,
139 );
140
141 output_html_with_http_headers $query, $cookie, $template->output;