3 # Copyright 2006 SAN OUEST PROVENCE et Paul POULAIN
4 # Copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use List
::MoreUtils qw
/uniq/;
33 use C4
::Members
::Attributes
;
34 use C4
::Members
::AttributeTypes
;
38 use C4
::Form
::MessagingPreferences
;
40 use Koha
::AuthorisedValues
;
41 use Koha
::Patron
::Debarments
;
46 use Koha
::Patron
::Categories
;
47 use Koha
::Patron
::HouseboundRole
;
48 use Koha
::Patron
::HouseboundRoles
;
52 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
53 load Koha
::NorwegianPatronDB
, qw( NLGetSyncDataFromBorrowernumber );
55 use Koha
::SMS
::Providers
;
60 $debug = $ENV{DEBUG} || 0;
64 ($debug) or $debug = $input->param('debug') || 0;
67 my $dbh = C4::Context->dbh;
69 my ($template, $loggedinuser, $cookie)
70 = get_template_and_user({template_name => "members/memberentrygen.tt",
74 flagsrequired => {borrowers => 'edit_borrowers'},
75 debug => ($debug) ? 1 : 0,
78 my $borrowernumber = $input->param('borrowernumber');
79 my $patron = Koha::Patrons->find($borrowernumber);
81 if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) {
82 my @providers = Koha::SMS::Providers->search();
83 $template->param( sms_providers => \@providers );
86 my $guarantorid = $input->param('guarantorid');
87 my $actionType = $input->param('actionType') || '';
88 my $modify = $input->param('modify');
89 my $delete = $input->param('delete');
90 my $op = $input->param('op');
91 my $destination = $input->param('destination');
92 my $cardnumber = $input->param('cardnumber');
93 my $check_member = $input->param('check_member');
94 my $nodouble = $input->param('nodouble');
95 my $duplicate = $input->param('duplicate');
96 my $quickadd = $input->param('quickadd');
97 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate'); # FIXME hack to represent fact that if we're
98 # modifying an existing patron, it ipso facto
99 # isn't a duplicate. Marking FIXME because this
100 # script needs to be refactored.
101 my $nok = $input->param('nok');
102 my $guarantorinfo = $input->param('guarantorinfo');
103 my $step = $input->param('step') || 0;
107 my $userenv = C4::Context->userenv;
109 ## Deal with debarments
111 debarments => scalar GetDebarments( { borrowernumber => $borrowernumber } ) );
112 my @debarments_to_remove = $input->multi_param('remove_debarment');
113 foreach my $d ( @debarments_to_remove ) {
116 if ( $input->param('add_debarment') ) {
118 my $expiration = $input->param('debarred_expiration');
122 { 'dt' => dt_from_string($expiration), 'dateformat' => 'iso' } )
127 borrowernumber => $borrowernumber,
129 comment => scalar $input->param('debarred_comment'),
130 expiration => $expiration,
135 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
137 # function to designate mandatory fields (visually with css)
138 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
139 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
140 foreach (@field_check) {
141 $template->param( "mandatory$_" => 1);
143 # function to designate unwanted fields
144 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
145 @field_check=split(/\|/,$check_BorrowerUnwantedField);
146 foreach (@field_check) {
148 $template->param( "no$_" => 1);
150 $template->param( "add" => 1 ) if ( $op eq 'add' );
151 $template->param( "quickadd" => 1 ) if ( $quickadd );
152 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
153 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
154 if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' ) {
155 if ( $patron and $userenv and $userenv->{number} ) { # Allow DB user to create a superlibrarian patron
156 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
157 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
160 $borrower_data = $patron->unblessed;
161 $borrower_data->{category_type} = $patron->category->category_type;
163 my $categorycode = $input->param('categorycode') || $borrower_data->{'categorycode'};
164 my $category_type = $input->param('category_type') || '';
165 unless ($category_type or !($categorycode)){
166 my $borrowercategory = Koha::Patron::Categories->find($categorycode);
167 $category_type = $borrowercategory->category_type;
168 my $category_name = $borrowercategory->description;
169 $template->param("categoryname"=>$category_name);
171 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
173 # if a add or modify is requested => check validity of data.
174 %data = %$borrower_data if ($borrower_data);
176 # initialize %newdata
177 my %newdata; # comes from $input->param()
178 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
179 my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
180 foreach my $key (@names) {
181 if (defined $input->param($key)) {
182 $newdata{$key} = $input->param($key);
183 $newdata{$key} =~ s/\"/"/g unless $key eq 'borrowernotes' or $key eq 'opacnote';
187 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
188 next unless exists $newdata{$_};
189 my $userdate = $newdata{$_} or next;
191 my $formatteddate = eval { output_pref
({ dt
=> dt_from_string
( $userdate ), dateformat
=> 'iso', dateonly
=> 1 } ); };
192 if ( $formatteddate ) {
193 $newdata{$_} = $formatteddate;
195 ($userdate eq '0000-00-00') and warn "Data error: $_ is '0000-00-00'";
196 $template->param( "ERROR_$_" => 1 );
197 push(@errors,"ERROR_$_");
200 # check permission to modify login info.
201 if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4
::Auth
::haspermission
($userenv->{'id'},{'staffaccess'=>1})) ) {
206 # remove keys from %newdata that ModMember() doesn't like
208 my @keys_to_delete = (
209 qr/^BorrowerMandatoryField$/,
218 qr/^setting_extended_patron_attributes$/,
219 qr/^setting_messaging_prefs$/,
227 for my $regexp (@keys_to_delete) {
228 for (keys %newdata) {
229 delete($newdata{$_}) if /$regexp/;
234 # Test uniqueness of surname, firstname and dateofbirth
235 if ( ( $op eq 'insert' ) and !$nodouble ) {
237 $conditions->{surname
} = $newdata{surname
} if $newdata{surname
};
238 if ( $category_type ne 'I' ) {
239 $conditions->{firstname
} = $newdata{firstname
} if $newdata{firstname
};
240 $conditions->{dateofbirth
} = $newdata{dateofbirth
} if $newdata{dateofbirth
};
243 my $patrons = Koha
::Patrons
->search($conditions); # FIXME Should be search_limited?
244 if ( $patrons->count > 0) {
246 $check_member = $patrons->next->borrowernumber;
250 #recover all data from guarantor address phone ,fax...
251 if ( $guarantorid ) {
252 if (my $guarantor = Koha
::Patrons
->find( $guarantorid )) {
253 my $guarantordata = $guarantor->unblessed;
254 $category_type = $guarantordata->{categorycode
} eq 'I' ?
'P' : 'C';
255 $guarantorinfo=$guarantordata->{'surname'}." , ".$guarantordata->{'firstname'};
256 $newdata{'contactfirstname'}= $guarantordata->{'firstname'};
257 $newdata{'contactname'} = $guarantordata->{'surname'};
258 $newdata{'contacttitle'} = $guarantordata->{'title'};
259 if ( $op eq 'add' ) {
260 foreach (qw(streetnumber address streettype address2
261 zipcode country city state phone phonepro mobile fax email emailpro branchcode
262 B_streetnumber B_streettype B_address B_address2
263 B_city B_state B_zipcode B_country B_email B_phone)) {
264 $newdata{$_} = $guarantordata->{$_};
270 ###############test to take the right zipcode, country and city name ##############
271 # set only if parameter was passed from the form
272 $newdata{'city'} = $input->param('city') if defined($input->param('city'));
273 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
274 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
276 $newdata{'lang'} = $input->param('lang') if defined($input->param('lang'));
278 # builds default userid
279 # userid input text may be empty or missing because of syspref BorrowerUnwantedField
280 if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ && !defined $data{'userid'} ) {
281 if ( ( defined $newdata{'firstname'} ) && ( defined $newdata{'surname'} ) ) {
282 # Full page edit, firstname and surname input zones are present
283 $newdata{'userid'} = Generate_Userid
( $borrowernumber, $newdata{'firstname'}, $newdata{'surname'} );
285 elsif ( ( defined $data{'firstname'} ) && ( defined $data{'surname'} ) ) {
286 # Partial page edit (access through "Details"/"Library details" tab), firstname and surname input zones are not used
287 # Still, if the userid field is erased, we can create a new userid with available firstname and surname
288 $newdata{'userid'} = Generate_Userid
( $borrowernumber, $data{'firstname'}, $data{'surname'} );
291 $newdata{'userid'} = $data{'userid'};
295 $debug and warn join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
296 my $extended_patron_attributes = ();
297 if ($op eq 'save' || $op eq 'insert'){
299 die "Wrong CSRF token"
300 unless Koha
::Token
->new->check_csrf({
301 session_id
=> scalar $input->cookie('CGISESSID'),
302 token
=> scalar $input->param('csrf_token'),
305 # If the cardnumber is blank, treat it as null.
306 $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
308 if (my $error_code = checkcardnumber
($newdata{cardnumber
},$newdata{borrowernumber
})){
309 push @errors, $error_code == 1
310 ?
'ERROR_cardnumber_already_exists'
312 ?
'ERROR_cardnumber_length'
317 if ($op eq 'save' && $step == 3) {
318 $dateofbirth = $patron->dateofbirth;
321 $dateofbirth = $newdata{dateofbirth
};
324 if ( $dateofbirth ) {
325 my $patron = Koha
::Patron
->new({ dateofbirth
=> $dateofbirth });
326 my $age = $patron->get_age;
327 my $borrowercategory = Koha
::Patron
::Categories
->find($categorycode);
328 my ($low,$high) = ($borrowercategory->dateofbirthrequired, $borrowercategory->upperagelimit);
329 if (($high && ($age > $high)) or ($age < $low)) {
330 push @errors, 'ERROR_age_limitations';
331 $template->param( age_low
=> $low);
332 $template->param( age_high
=> $high);
336 if($newdata{surname
} && C4
::Context
->preference('uppercasesurnames')) {
337 $newdata{'surname'} = uc($newdata{'surname'});
340 if (C4
::Context
->preference("IndependentBranches")) {
341 unless ( C4
::Context
->IsSuperLibrarian() ){
342 $debug and print STDERR
" $newdata{'branchcode'} : ".$userenv->{flags
}.":".$userenv->{branch
};
343 unless (!$newdata{'branchcode'} || $userenv->{branch
} eq $newdata{'branchcode'}){
344 push @errors, "ERROR_branch";
348 # Check if the 'userid' is unique. 'userid' might not always be present in
349 # the edited values list when editing certain sub-forms. Get it straight
350 # from the DB if absent.
351 my $userid = $newdata{ userid
} // $borrower_data->{ userid
};
352 unless (Check_Userid
($userid,$borrowernumber)) {
353 push @errors, "ERROR_login_exist";
356 my $password = $input->param('password');
357 my $password2 = $input->param('password2');
358 push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
360 if ( $password and $password ne '****' ) {
361 my ( $is_valid, $error ) = Koha
::AuthUtils
::is_password_valid
( $password );
362 unless ( $is_valid ) {
363 push @errors, 'ERROR_password_too_short' if $error eq 'too_short';
364 push @errors, 'ERROR_password_too_weak' if $error eq 'too_weak';
365 push @errors, 'ERROR_password_has_whitespaces' if $error eq 'has_whitespaces';
370 my $emailprimary = $input->param('email');
371 my $emailsecondary = $input->param('emailpro');
372 my $emailalt = $input->param('B_email');
375 push (@errors, "ERROR_bad_email") if (!Email
::Valid
->address($emailprimary));
377 if ($emailsecondary) {
378 push (@errors, "ERROR_bad_email_secondary") if (!Email
::Valid
->address($emailsecondary));
381 push (@errors, "ERROR_bad_email_alternative") if (!Email
::Valid
->address($emailalt));
384 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
385 $extended_patron_attributes = parse_extended_patron_attributes
($input);
386 foreach my $attr (@
$extended_patron_attributes) {
387 unless (C4
::Members
::Attributes
::CheckUniqueness
($attr->{code
}, $attr->{value
}, $borrowernumber)) {
388 my $attr_info = C4
::Members
::AttributeTypes
->fetch($attr->{code
});
389 push @errors, "ERROR_extended_unique_id_failed";
391 ERROR_extended_unique_id_failed_code
=> $attr->{code
},
392 ERROR_extended_unique_id_failed_value
=> $attr->{value
},
393 ERROR_extended_unique_id_failed_description
=> $attr_info->description()
400 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
401 unless ($newdata{'dateexpiry'}){
402 my $patron_category = Koha
::Patron
::Categories
->find( $newdata{categorycode
} );
403 $newdata{'dateexpiry'} = $patron_category->get_expiry_date( $newdata{dateenrolled
} ) if $patron_category;
407 # BZ 14683: Do not mixup mobile [read: other phone] with smsalertnumber
408 my $sms = $input->param('SMSnumber');
409 if ( defined $sms ) {
410 $newdata{smsalertnumber
} = $sms;
413 ### Error checks should happen before this line.
414 $nok = $nok || scalar(@errors);
415 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
416 $debug and warn "$op dates: " . join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
417 if ($op eq 'insert'){
418 # we know it's not a duplicate borrowernumber or there would already be an error
419 $borrowernumber = &AddMember
(%newdata);
420 $newdata{'borrowernumber'} = $borrowernumber;
422 # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
423 if ( C4
::Context
->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'} && $newdata{'password'}) {
424 #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
426 if (C4
::Context
->preference("AutoEmailPrimaryAddress") ne 'OFF' &&
427 $newdata{C4
::Context
->preference("AutoEmailPrimaryAddress")} =~ /\w\@\w/ ) {
428 $emailaddr = $newdata{C4
::Context
->preference("AutoEmailPrimaryAddress")}
430 elsif ($newdata{email
} =~ /\w\@\w/) {
431 $emailaddr = $newdata{email
}
433 elsif ($newdata{emailpro
} =~ /\w\@\w/) {
434 $emailaddr = $newdata{emailpro
}
436 elsif ($newdata{B_email
} =~ /\w\@\w/) {
437 $emailaddr = $newdata{B_email
}
439 # if we manage to find a valid email address, send notice
441 $newdata{emailaddr
} = $emailaddr;
444 $err = SendAlerts
( 'members', \
%newdata, "ACCTDETAILS" );
447 $template->param(error_alert
=> $@
);
448 } elsif ( ref($err) eq "HASH" && defined $err->{error
} and $err->{error
} eq "no_email" ) {
449 $template->{VARS
}->{'error_alert'} = "no_email";
451 $template->{VARS
}->{'info_alert'} = 1;
456 if (C4
::Context
->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
457 C4
::Members
::Attributes
::SetBorrowerAttributes
($borrowernumber, $extended_patron_attributes);
459 if (C4
::Context
->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
460 C4
::Form
::MessagingPreferences
::handle_form_action
($input, { borrowernumber
=> $borrowernumber }, $template, 1, $newdata{'categorycode'});
462 # Try to do the live sync with the Norwegian national patron database, if it is enabled
463 if ( exists $data{'borrowernumber'} && C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
464 NLSync
({ 'borrowernumber' => $borrowernumber });
467 # Create HouseboundRole if necessary.
468 # Borrower did not exist, so HouseboundRole *cannot* yet exist.
469 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
470 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
471 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
472 # Only create a HouseboundRole if patron has a role.
473 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
474 Koha
::Patron
::HouseboundRole
->new({
475 borrowernumber_id
=> $borrowernumber,
476 housebound_chooser
=> $hsbnd_chooser,
477 housebound_deliverer
=> $hsbnd_deliverer,
481 } elsif ($op eq 'save') {
483 # Update or create our HouseboundRole if necessary.
484 my $housebound_role = Koha
::Patron
::HouseboundRoles
->find($borrowernumber);
485 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
486 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
487 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
488 if ( $housebound_role ) {
489 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
490 # Update our HouseboundRole.
492 ->housebound_chooser($hsbnd_chooser)
493 ->housebound_deliverer($hsbnd_deliverer)
496 $housebound_role->delete; # No longer needed.
499 # Only create a HouseboundRole if patron has a role.
500 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
501 $housebound_role = Koha
::Patron
::HouseboundRole
->new({
502 borrowernumber_id
=> $borrowernumber,
503 housebound_chooser
=> $hsbnd_chooser,
504 housebound_deliverer
=> $hsbnd_deliverer,
509 if ($NoUpdateLogin) {
510 delete $newdata{'password'};
511 delete $newdata{'userid'};
513 &ModMember
(%newdata) unless scalar(keys %newdata) <= 1; # bug 4508 - avoid crash if we're not
514 # updating any columns in the borrowers table,
515 # which can happen if we're only editing the
516 # patron attributes or messaging preferences sections
517 if (C4
::Context
->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
518 C4
::Members
::Attributes
::SetBorrowerAttributes
($borrowernumber, $extended_patron_attributes);
520 if (C4
::Context
->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
521 C4
::Form
::MessagingPreferences
::handle_form_action
($input, { borrowernumber
=> $borrowernumber }, $template);
525 if ( $destination eq 'circ' and not C4
::Auth
::haspermission
( C4
::Context
->userenv->{id
}, { circulate
=> 'circulate_remaining_permissions' } ) ) {
526 # If we want to redirect to circulation.pl and need to check if the logged in user has the necessary permission
527 $destination = 'not_circ';
529 print scalar( $destination eq "circ" )
531 "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber")
533 "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber"
535 exit; # You can only send 1 redirect! After that, content or other headers don't matter.
539 print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
540 exit; # same as above
543 if ($nok or !$nodouble){
544 $op="add" if ($op eq "insert");
545 $op="modify" if ($op eq "save");
547 $template->param( updtype
=> ($op eq 'add' ?
'I':'M')); # used to check for $op eq "insert"... but we just changed $op!
549 $template->param( step_1
=> 1,step_2
=> 1,step_3
=> 1, step_4
=> 1, step_5
=> 1, step_6
=> 1);
552 if (C4
::Context
->preference("IndependentBranches")) {
553 my $userenv = C4
::Context
->userenv;
554 if ( !C4
::Context
->IsSuperLibrarian() && $data{'branchcode'} ) {
555 unless ($userenv->{branch
} eq $data{'branchcode'}){
556 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
562 $template->param( updtype
=> 'I', step_1
=>1, step_2
=>1, step_3
=>1, step_4
=>1, step_5
=> 1, step_6
=> 1);
564 if ($op eq "modify") {
565 $template->param( updtype
=> 'M',modify
=> 1 );
566 $template->param( step_1
=>1, step_2
=>1, step_3
=>1, step_4
=>1, step_5
=> 1, step_6
=> 1) unless $step;
568 $template->param( categorycode
=> $borrower_data->{'categorycode'} );
570 # Add sync data to the user data
571 if ( C4
::Context
->preference('NorwegianPatronDBEnable') && C4
::Context
->preference('NorwegianPatronDBEnable') == 1 ) {
572 my $sync = NLGetSyncDataFromBorrowernumber
( $borrowernumber );
580 if ( $op eq "duplicate" ) {
581 $template->param( updtype
=> 'I' );
582 $template->param( step_1
=> 1, step_2
=> 1, step_3
=> 1, step_4
=> 1, step_5
=> 1, step_6
=> 1 ) unless $step;
583 $data{'cardnumber'} = "";
586 if(!defined($data{'sex'})){
587 $template->param( none
=> 1);
588 } elsif($data{'sex'} eq 'F'){
589 $template->param( female
=> 1);
590 } elsif ($data{'sex'} eq 'M'){
591 $template->param( male
=> 1);
593 $template->param( none
=> 1);
596 ##Now all the data to modify a member.
599 my $no_categories = 1;
601 foreach my $category_type (qw(C A S P I X)) {
602 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> $category_type }, {order_by
=> ['categorycode']});
603 $no_categories = 0 if $patron_categories->count > 0;
606 while ( my $patron_category = $patron_categories->next ) {
608 { 'categorycode' => $patron_category->categorycode,
609 'categoryname' => $patron_category->description,
610 'categorycodeselected' =>
611 ( ( defined( $borrower_data->{'categorycode'} ) && $patron_category->categorycode eq $borrower_data->{'categorycode'} ) || ( defined($categorycode) && $patron_category->categorycode eq $categorycode ) ),
615 $typehash{'typename'} = $category_type;
616 my $typedescription = "typename_" . $typehash{'typename'};
617 $typehash{'categoryloop'} = \
@categoryloop;
619 { 'typename' => $category_type,
620 $typedescription => 1,
621 'categoryloop' => \
@categoryloop
625 $template->param('typeloop' => \
@typeloop,
626 no_categories
=> $no_categories);
627 if($no_categories){ $no_add = 1; }
630 my $cities = Koha
::Cities
->search( {}, { order_by
=> 'city_name' } );
631 my $roadtypes = C4
::Koha
::GetAuthorisedValues
( 'ROADTYPE' );
633 roadtypes
=> $roadtypes,
637 my $default_borrowertitle = '';
638 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
640 my @relationships = split /,|\|/, C4
::Context
->preference('borrowerRelationship');
642 while (@relationships) {
643 my $relship = shift @relationships || '';
644 my %row = ('relationship' => $relship);
645 if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
646 $row{'selected'}=' selected';
650 push(@relshipdata, \
%row);
653 my %flags = ( 'gonenoaddress' => ['gonenoaddress' ],
658 foreach (keys(%flags)) {
660 my %row = ('key' => $key,
661 'name' => $flags{$key}[0]);
663 $row{'yes'}=' checked';
668 $row{'no'}=' checked';
670 push @flagdata,\
%row;
674 # in modify mod: userbranch value comes from borrowers table
675 # in add mod: userbranch value comes from branches table (ip correspondence)
678 if (C4
::Context
->userenv && C4
::Context
->userenv->{'branch'}) {
679 $userbranch = C4
::Context
->userenv->{'branch'};
682 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) {
683 $userbranch = $data{'branchcode'};
685 $template->param( userbranch
=> $userbranch );
687 if ( Koha
::Libraries
->search->count < 1 ){
689 $template->param(no_branches
=> 1);
693 $template->param(no_categories
=> 1);
695 $template->param(no_add
=> $no_add);
696 # --------------------------------------------------------------------------------------------------------
698 $template->param( sort1
=> $data{'sort1'});
699 $template->param( sort2
=> $data{'sort2'});
702 foreach my $error (@errors) {
703 $template->param($error) || $template->param( $error => 1);
705 $template->param(nok
=> 1);
708 #Formatting data for display
710 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
711 $data{'dateenrolled'} = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
713 if ( $op eq 'duplicate' ) {
714 $data{'dateenrolled'} = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
715 my $patron_category = Koha
::Patron
::Categories
->find( $data{categorycode
} );
716 $data{dateexpiry
} = $patron_category->get_expiry_date( $data{dateenrolled
} );
718 if (C4
::Context
->preference('uppercasesurnames')) {
719 $data{'surname'} &&= uc( $data{'surname'} );
720 $data{'contactname'} &&= uc( $data{'contactname'} );
723 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
725 $data{$_} = eval { output_pref
({ dt
=> dt_from_string
( $data{$_} ), dateonly
=> 1 } ); }; # back to syspref for display
727 $template->param( $_ => $data{$_});
730 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
731 $template->param(ExtendedPatronAttributes
=> 1);
732 patron_attributes_form
($template, $borrowernumber);
735 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
737 C4
::Form
::MessagingPreferences
::set_form_values
({ categorycode
=> $categorycode }, $template);
739 C4
::Form
::MessagingPreferences
::set_form_values
({ borrowernumber
=> $borrowernumber }, $template);
741 $template->param(SMSSendDriver
=> C4
::Context
->preference("SMSSendDriver"));
742 $template->param(SMSnumber
=> $data{'smsalertnumber'} );
743 $template->param(TalkingTechItivaPhone
=> C4
::Context
->preference("TalkingTechItivaPhoneNotification"));
746 $template->param( "showguarantor" => ($category_type=~/A|I|S|X/) ?
0 : 1); # associate with step to know where you are
747 $debug and warn "memberentry step: $step";
748 $template->param(%data);
749 $template->param( "step_$step" => 1) if $step; # associate with step to know where u are
750 $template->param( step
=> $step ) if $step; # associate with step to know where u are
753 BorrowerMandatoryField
=> C4
::Context
->preference("BorrowerMandatoryField"),#field to test with javascript
754 category_type
=> $category_type,#to know the category type of the borrower
755 "$category_type" => 1,# associate with step to know where u are
756 destination
=> $destination,#to know wher u come from and wher u must go in redirect
757 check_member
=> $check_member,#to know if the borrower already exist(=>1) or not (=>0)
760 $guarantorid = $borrower_data->{'guarantorid'} || $guarantorid;
761 my $guarantor = $guarantorid ? Koha
::Patrons
->find( $guarantorid ) : undef;
763 patron
=> $patron, # Used by address include templates now
764 nodouble
=> $nodouble,
765 borrowernumber
=> $borrowernumber, #register number
766 guarantor
=> $guarantor,
767 guarantorid
=> $guarantorid,
768 relshiploop
=> \
@relshipdata,
769 btitle
=> $default_borrowertitle,
770 guarantorinfo
=> $guarantorinfo,
771 flagloop
=> \
@flagdata,
772 category_type
=>$category_type,
774 nok
=> $nok,#flag to know if an error
775 NoUpdateLogin
=> $NoUpdateLogin,
778 # Generate CSRF token
779 $template->param( csrf_token
=>
780 Koha
::Token
->new->generate_csrf( { session_id
=> scalar $input->cookie('CGISESSID'), } ),
783 # HouseboundModule data
785 housebound_role
=> scalar Koha
::Patron
::HouseboundRoles
->find($borrowernumber),
788 if(defined($data{'flags'})){
789 $template->param(flags
=>$data{'flags'});
791 if(defined($data{'contacttitle'})){
792 $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
796 my ( $min, $max ) = C4
::Members
::get_cardnumber_length
();
797 if ( defined $min ) {
799 minlength_cardnumber
=> $min,
800 maxlength_cardnumber
=> $max
804 if ( C4
::Context
->preference('TranslateNotices') ) {
805 my $translated_languages = C4
::Languages
::getTranslatedLanguages
( 'opac', C4
::Context
->preference('template') );
806 $template->param( languages
=> $translated_languages );
809 output_html_with_http_headers
$input, $cookie, $template->output;
811 sub parse_extended_patron_attributes
{
813 my @patron_attr = grep { /^patron_attr_\d+$/ } $input->multi_param();
817 foreach my $key (@patron_attr) {
818 my $value = $input->param($key);
819 next unless defined($value) and $value ne '';
820 my $code = $input->param("${key}_code");
821 next if exists $dups{$code}->{$value};
822 $dups{$code}->{$value} = 1;
823 push @attr, { code
=> $code, value
=> $value };
828 sub patron_attributes_form
{
829 my $template = shift;
830 my $borrowernumber = shift;
832 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
833 if (scalar(@types) == 0) {
834 $template->param(no_patron_attribute_types
=> 1);
837 my $attributes = C4
::Members
::Attributes
::GetBorrowerAttributes
($borrowernumber);
838 my @classes = uniq
( map {$_->{class}} @
$attributes );
839 @classes = sort @classes;
841 # map patron's attributes into a more convenient structure
843 foreach my $attr (@
$attributes) {
844 push @
{ $attr_hash{$attr->{code
}} }, $attr;
847 my @attribute_loop = ();
850 foreach my $type_code (map { $_->{code
} } @types) {
851 my $attr_type = C4
::Members
::AttributeTypes
->fetch($type_code);
853 class => $attr_type->class(),
854 code
=> $attr_type->code(),
855 description
=> $attr_type->description(),
856 repeatable
=> $attr_type->repeatable(),
857 category
=> $attr_type->authorised_value_category(),
858 category_code
=> $attr_type->category_code(),
860 if (exists $attr_hash{$attr_type->code()}) {
861 foreach my $attr (@
{ $attr_hash{$attr_type->code()} }) {
862 my $newentry = { %$entry };
863 $newentry->{value
} = $attr->{value
};
864 $newentry->{use_dropdown
} = 0;
865 if ($attr_type->authorised_value_category()) {
866 $newentry->{use_dropdown
} = 1;
867 $newentry->{auth_val_loop
} = GetAuthorisedValues
($attr_type->authorised_value_category(), $attr->{value
});
870 $newentry->{form_id
} = "patron_attr_$i";
871 push @
{$items_by_class{$attr_type->class()}}, $newentry;
875 my $newentry = { %$entry };
876 if ($attr_type->authorised_value_category()) {
877 $newentry->{use_dropdown
} = 1;
878 $newentry->{auth_val_loop
} = GetAuthorisedValues
($attr_type->authorised_value_category());
880 $newentry->{form_id
} = "patron_attr_$i";
881 push @
{$items_by_class{$attr_type->class()}}, $newentry;
884 while ( my ($class, @items) = each %items_by_class ) {
885 my $av = Koha
::AuthorisedValues
->search({ category
=> 'PA_CLASS', authorised_value
=> $class });
886 my $lib = $av->count ?
$av->next->lib : $class;
887 push @attribute_loop, {
894 $template->param(patron_attributes
=> \
@attribute_loop);