X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Fmoremember.pl;h=dbe9896377369a8571e9bfcc002fbe9aa9e494bb;hb=b75d9dc25800fde1218ca9896e3a69a8da54de96;hp=3fc92cacd885c5dab3fb451788e886f2473dfa8d;hpb=1be9f1a0e70d55eeca841f2c3becbbbf9f988b39;p=koha.git diff --git a/members/moremember.pl b/members/moremember.pl index 3fc92cacd8..dbe9896377 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -6,18 +6,18 @@ # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . =head1 moremember.pl @@ -33,26 +33,28 @@ =cut -use strict; -#use warnings; FIXME - Bug 2505 -use CGI; +use Modern::Perl; +use CGI qw ( -utf8 ); +use HTML::Entities; use C4::Context; use C4::Auth; use C4::Output; use C4::Members; use C4::Members::Attributes; use C4::Members::AttributeTypes; -use C4::Dates; use C4::Reserves; use C4::Circulation; use C4::Koha; use C4::Letters; use C4::Biblio; -use C4::Branch; # GetBranchName use C4::Form::MessagingPreferences; use List::MoreUtils qw/uniq/; use C4::Members::Attributes qw(GetBorrowerAttributes); -use Koha::Borrower::Debarments qw(GetDebarments IsDebarred); +use Koha::Account::Lines; +use Koha::AuthorisedValues; +use Koha::CsvProfiles; +use Koha::Patron::Debarments qw(GetDebarments); +use Koha::Patron::Messages; use Module::Load; if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) { load Koha::NorwegianPatronDB, qw( NLGetSyncDataFromBorrowernumber ); @@ -62,6 +64,9 @@ if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preferen use DateTime; use Koha::DateUtils; use Koha::Database; +use Koha::Patrons; +use Koha::Patron::Categories; +use Koha::Token; use vars qw($debug); @@ -95,10 +100,10 @@ if (defined $print and $print eq "page") { $flagsrequired = { circulate => "circulate_remaining_permissions" }; } elsif (defined $print and $print eq "brief") { $template_name = "members/moremember-brief.tt"; - $flagsrequired = { borrowers => 1 }; + $flagsrequired = { borrowers => 'edit_borrowers' }; } else { $template_name = "members/moremember.tt"; - $flagsrequired = { borrowers => 1 }; + $flagsrequired = { borrowers => 'edit_borrowers' }; } my ( $template, $loggedinuser, $cookie ) = get_template_and_user( @@ -112,155 +117,127 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); my $borrowernumber = $input->param('borrowernumber'); +$borrowernumber = HTML::Entities::encode($borrowernumber); +my $error = $input->param('error'); +$template->param( error => $error ) if ( $error ); -my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber); -$template->param( issuecount => $issue ); +my $patron = Koha::Patrons->find( $borrowernumber ); +my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in"; +output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); -my $data = GetMember( 'borrowernumber' => $borrowernumber ); - -if ( not defined $data ) { - $template->param (unknowuser => 1); - output_html_with_http_headers $input, $cookie, $template->output; - exit; -} +my $issues = $patron->checkouts; +my $balance = $patron->account->balance; +$template->param( + issuecount => $issues->count, + fines => $balance, +); -my $category_type = $data->{'category_type'}; +my $category_type = $patron->category->category_type; +my $data = $patron->unblessed; $debug and printf STDERR "dates (enrolled,expiry,birthdate) raw: (%s, %s, %s)\n", map {$data->{$_}} qw(dateenrolled dateexpiry dateofbirth); -foreach (qw(dateenrolled dateexpiry dateofbirth)) { - my $userdate = $data->{$_}; - unless ($userdate) { - $debug and warn sprintf "Empty \$data{%12s}", $_; - $data->{$_} = ''; - next; - } - $userdate = C4::Dates->new($userdate,'iso')->output('syspref'); - $data->{$_} = $userdate || ''; - $template->param( $_ => $userdate ); +foreach (qw(dateenrolled dateexpiry dateofbirth)) { # FIXME This should be removed + my $userdate = $data->{$_}; + unless ($userdate) { + $debug and warn sprintf "Empty \$data{%12s}", $_; + $data->{$_} = ''; + next; + } + $data->{$_} = dt_from_string( $userdate ); } -$data->{'IS_ADULT'} = ( $data->{'categorycode'} ne 'I' ); for (qw(gonenoaddress lost borrowernotes)) { $data->{$_} and $template->param(flagged => 1) and last; } -if ( IsDebarred($borrowernumber) ) { - $template->param( 'userdebarred' => 1, 'flagged' => 1 ); +if ( $patron->is_debarred ) { + $template->param( + userdebarred => 1, # FIXME Template should use patron->is_debarred + flagged => 1, + debarments => scalar GetDebarments({ borrowernumber => $borrowernumber }), + ); my $debar = $data->{'debarred'}; if ( $debar ne "9999-12-31" ) { - $template->param( 'userdebarreddate' => C4::Dates::format_date($debar) ); + $template->param( 'userdebarreddate' => output_pref( { dt => dt_from_string( $debar ), dateonly => 1 } ) ); $template->param( 'debarredcomment' => $data->{debarredcomment} ); } } -$data->{'ethnicity'} = fixEthnicity( $data->{'ethnicity'} ); $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex}; -my $catcode; -if ( $category_type eq 'C') { - my ( $catcodes, $labels ) = GetborCatFromCatType( 'A', 'WHERE category_type = ?' ); - my $cnt = scalar(@$catcodes); - - $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1; - $template->param( 'catcode' => $catcodes->[0]) if $cnt == 1; +if ( $patron->is_child ) { + my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']}); + $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1; + $template->param( 'catcode' => $patron_categories->next->categorycode ) if $patron_categories->count == 1; } - -if ( $data->{'ethnicity'} || $data->{'ethnotes'} ) { - $template->param( printethnicityline => 1 ); -} -if ( $category_type eq 'A' || $category_type eq 'I') { - $template->param( isguarantee => 1 ); - - # FIXME - # It looks like the $i is only being returned to handle walking through - # the array, which is probably better done as a foreach loop. - # - my ( $count, $guarantees ) = GetGuarantees( $data->{'borrowernumber'} ); - my @guaranteedata; - for ( my $i = 0 ; $i < $count ; $i++ ) { - push(@guaranteedata, - { - borrowernumber => $guarantees->[$i]->{'borrowernumber'}, - cardnumber => $guarantees->[$i]->{'cardnumber'}, - name => $guarantees->[$i]->{'firstname'} . " " - . $guarantees->[$i]->{'surname'} - } - ); - } - $template->param( guaranteeloop => \@guaranteedata ); - ( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' || $category_type eq 'I' ); -} -else { - if ($data->{'guarantorid'}){ - my ($guarantor) = GetMember( 'borrowernumber' =>$data->{'guarantorid'}); - $template->param(guarantor => 1); - foreach (qw(borrowernumber cardnumber firstname surname)) { - $template->param("guarantor$_" => $guarantor->{$_}); +my @relatives; +if ( my $guarantor = $patron->guarantor ) { + $template->param( guarantor => $guarantor ); + push @relatives, $guarantor->borrowernumber; + push @relatives, $_->borrowernumber for $patron->siblings; +} elsif ( $patron->contactname || $patron->contactfirstname ) { + $template->param( + guarantor => { + firstname => $patron->contactfirstname, + surname => $patron->contactname, } - } - if ($category_type eq 'C'){ - $template->param('C' => 1); - } + ); +} else { + my @guarantees = $patron->guarantees; + $template->param( guarantees => \@guarantees ); + push @relatives, $_->borrowernumber for @guarantees; } +my $relatives_issues_count = + Koha::Database->new()->schema()->resultset('Issue') + ->count( { borrowernumber => \@relatives } ); + my %bor; $bor{'borrowernumber'} = $borrowernumber; # Converts the branchcode to the branch name my $samebranch; if ( C4::Context->preference("IndependentBranches") ) { - my $userenv = C4::Context->userenv; if ( C4::Context->IsSuperLibrarian() ) { $samebranch = 1; } else { + my $userenv = C4::Context->userenv; $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} ); } } else { $samebranch = 1; } -my $branchdetail = GetBranchDetail( $data->{'branchcode'}); -@{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns - -my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber ); -my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} ); -my $lib2 = &GetSortDetails( "Bsort2", $data->{'sort2'} ); -$template->param( lib1 => $lib1 ) if ($lib1); -$template->param( lib2 => $lib2 ) if ($lib2); +my $library = Koha::Libraries->find( $data->{branchcode})->unblessed; +@{$data}{keys %$library} = values %$library; # merge in all branch columns # FIXME This is really ugly, we should pass the library instead # If printing a page, send the account informations to the template -if ($print eq "page") { - foreach my $accountline (@$accts) { - $accountline->{amount} = sprintf '%.2f', $accountline->{amount}; - $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding}; - - if ($accountline->{accounttype} ne 'F' && $accountline->{accounttype} ne 'FU'){ - $accountline->{printtitle} = 1; - } - } +if (defined $print and $print eq "page") { + my $accts = Koha::Account::Lines->search( + { borrowernumber => $patron->borrowernumber, amountoutstanding => { '>' => 0 } }, + { order_by => { -desc => 'accountlines_id' } } + ); $template->param( accounts => $accts ); } # Show OPAC privacy preference is system preference is set -if ( C4::Context->preference('OPACPrivacy') ) { +if ( C4::Context->preference('OPACPrivacy') ) { # FIXME Should be moved the the template $template->param( OPACPrivacy => 1); $template->param( "privacy".$data->{'privacy'} => 1); } -my @relatives = GetMemberRelatives($borrowernumber); -my $relatives_issues_count = - Koha::Database->new()->schema()->resultset('Issue') - ->count( { borrowernumber => \@relatives } ); - -my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} ); my $today = DateTime->now( time_zone => C4::Context->tz); $today->truncate(to => 'day'); -my @borrowers_with_issues; my $overdues_exist = 0; my $totalprice = 0; +# Calculate and display patron's age +if ( $data->{dateofbirth} ) { + $template->param( age => Koha::Patron->new({ dateofbirth => $data->{dateofbirth} })->get_age ); +} + ### ############################################################################### # BUILD HTML # show all reserves of this borrower, and the position of the reservation .... @@ -270,30 +247,6 @@ if ($borrowernumber) { ->count( { borrowernumber => $borrowernumber } ) ); } -# current alert subscriptions -my $alerts = getalert($borrowernumber); -foreach (@$alerts) { - $_->{ $_->{type} } = 1; - $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} ); -} - -my $candeleteuser; -my $userenv = C4::Context->userenv; -if ( C4::Context->IsSuperLibrarian() ) { - $candeleteuser = 1; -} -elsif ( C4::Context->preference("IndependentBranches") ) { - $candeleteuser = ( $data->{'branchcode'} eq $userenv->{branch} ); -} -else { - if ( C4::Auth::getuserflags( $userenv->{flags}, $userenv->{number} )->{borrowers} ) { - $candeleteuser = 1; - } - else { - $candeleteuser = 0; - } -} - # Add sync data to the user data if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) { my $sync = NLGetSyncDataFromBorrowernumber( $borrowernumber ); @@ -304,15 +257,13 @@ if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preferen } } -# check to see if patron's image exists in the database -# basically this gives us a template var to condition the display of -# patronimage related interface on -my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'}); -$template->param( picture => 1 ) if $picture; +# Generate CSRF token for upload and delete image buttons +$template->param( + csrf_token => Koha::Token->new->generate_csrf({ session_id => $input->cookie('CGISESSID'),}), +); -my $branch=C4::Context->userenv->{'branch'}; -$template->param(%$data); +$template->param(%$data); # FIXME This should be removed and used $patron instead, but too many things are processed above if (C4::Context->preference('ExtendedPatronAttributes')) { my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber); @@ -325,7 +276,9 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { for my $attr (@$attributes) { push @items, $attr if $attr->{class} eq $class } - my $lib = GetAuthorisedValueByCode( 'PA_CLASS', $class ) || $class; + my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class }); + my $lib = $av->count ? $av->next->lib : $class; + push @attributes_loop, { class => $class, items => \@items, @@ -348,43 +301,52 @@ if (C4::Context->preference('EnhancedMessagingPreferences')) { C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template); $template->param(messaging_form_inactive => 1); $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver")); - $template->param(SMSnumber => defined $data->{'smsalertnumber'} ? $data->{'smsalertnumber'} : $data->{'mobile'}); $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification")); } -# Computes full borrower address -my $address = $data->{'streetnumber'} . " $roadtype " . $data->{'address'}; +if ( C4::Context->preference("ExportCircHistory") ) { + $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ]); +} + +my $patron_messages = Koha::Patron::Messages->search( + { + 'me.borrowernumber' => $borrowernumber, + }, + { + join => 'manager', + '+select' => ['manager.surname', 'manager.firstname' ], + '+as' => ['manager_surname', 'manager_firstname'], + } +); + +if( $patron_messages->count > 0 ){ + $template->param( patron_messages => $patron_messages ); +} + +# Display the language description instead of the code +# Note that this is certainly wrong +my ( $subtag, $region ) = split '-', $patron->lang; +my $translated_language = C4::Languages::language_get_description( $subtag, $subtag, 'language' ); -# in template => instutitional (A for Adult, C for children) -$template->param( $data->{'categorycode'} => 1 ); +my $total = $patron->account->balance; $template->param( - detailview => 1, - AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"), - CANDELETEUSER => $candeleteuser, - roadtype => $roadtype, - borrowernumber => $borrowernumber, - othernames => $data->{'othernames'}, - categoryname => $data->{'description'}, - was_renewed => $input->param('was_renewed') ? 1 : 0, - branch => $branch, - todaysdate => C4::Dates->today(), + patron => $patron, + translated_language => $translated_language, + detailview => 1, + was_renewed => scalar $input->param('was_renewed') ? 1 : 0, + todaysdate => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }), totalprice => sprintf("%.2f", $totalprice), totaldue => sprintf("%.2f", $total), totaldue_raw => $total, overdues_exist => $overdues_exist, - StaffMember => ($category_type eq 'S'), - is_child => ($category_type eq 'C'), - samebranch => $samebranch, - quickslip => $quickslip, - activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), - AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'), - SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'), - RoutingSerials => C4::Context->preference('RoutingSerials'), - debarments => GetDebarments({ borrowernumber => $borrowernumber }), + StaffMember => $category_type eq 'S', + $category_type => 1, # [% IF ( I ) %] = institutional/organisation + samebranch => $samebranch, + quickslip => $quickslip, + housebound_role => scalar $patron->housebound_role, PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, relatives_issues_count => $relatives_issues_count, relatives_borrowernumbers => \@relatives, - address => $address ); output_html_with_http_headers $input, $cookie, $template->output;