Fix for Bug 3918 - Add to order lists inconsistent
[koha.git] / members / messaging.pl
blobef9cfa442ee2ddc0a2fab8cbe76db81085c95385
1 #!/usr/bin/perl
3 # Copyright 2008 LibLime
5 # This file is part of Koha.
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.
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.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 use warnings;
24 use CGI;
25 use C4::Context;
26 use C4::Auth;
27 use C4::Output;
28 use C4::Members;
29 use C4::Members::Messaging;
30 use C4::Dates;
31 use C4::Reserves;
32 use C4::Circulation;
33 use C4::Koha;
34 use C4::Letters;
35 use C4::Biblio;
36 use C4::Reserves;
37 use C4::Branch; # GetBranchName
39 use Data::Dumper;
41 use vars qw($debug);
43 BEGIN {
44 $debug = $ENV{DEBUG} || 0;
47 my $dbh = C4::Context->dbh;
49 my $query = CGI->new();
51 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
53 template_name => 'members/messaging.tmpl',
54 query => $query,
55 type => "intranet",
56 authnotrequired => 0,
57 flagsrequired => { borrowers => 1 },
58 debug => 1,
61 my $borrowernumber = $query->param('borrowernumber');
62 my $borrower = GetMember( 'borrowernumber' => $borrowernumber );
63 my $branch = C4::Context->userenv->{'branch'};
65 $template->param( $borrower );
67 $borrower = GetMemberDetails( $borrowernumber );
70 if ( $borrower->{'category_type'} eq 'C') {
71 my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
72 my $cnt = scalar(@$catcodes);
73 $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
74 $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1;
77 my ($picture, $dberror) = GetPatronImage($borrower->{'cardnumber'});
78 $template->param( picture => 1 ) if $picture;
80 # get some recent messages sent to this borrower for display:
81 my $message_queue = C4::Letters::GetQueuedMessages( { borrowernumber => $query->param('borrowernumber') } );
83 $template->param( messagingview => 1,
84 message_queue => $message_queue,
85 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
86 borrowernumber => $borrowernumber,
87 branchcode => $borrower->{'branchcode'},
88 branchname => GetBranchName($borrower->{'branchcode'}),
89 dateformat => C4::Context->preference("dateformat"),
90 categoryname => $borrower->{'description'},
91 $borrower->{'categorycode'} => 1,
94 #$messaging_preferences->{'SMSnumber'}{'value'} = defined $borrower->{'smsalertnumber'}
95 # ? $borrower->{'smsalertnumber'} : $borrower->{'mobile'};
97 $template->param( BORROWER_INFO => [ $borrower ],
98 messagingview => 1,
99 is_child => ($borrower->{'category_type'} eq 'C'),
102 output_html_with_http_headers $query, $cookie, $template->output;