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>.
28 use C4::Auth qw( get_template_and_user haspermission );
30 use C4::Output qw( output_and_exit output_and_exit_if_error output_html_with_http_headers );
31 use C4::Members qw( checkcardnumber get_cardnumber_length );
32 use C4::Koha qw( GetAuthorisedValues );
33 use C4::Letters qw( SendAlerts );
34 use C4::Form::MessagingPreferences;
36 use Koha::AuthorisedValues;
38 use Koha::Patron::Debarments qw( AddDebarment DelDebarment GetDebarments );
40 use Koha::DateUtils qw( dt_from_string output_pref );
43 use Koha::Patron::Attribute::Types;
44 use Koha::Patron::Categories;
45 use Koha::Patron::HouseboundRole;
46 use Koha::Patron::HouseboundRoles;
49 use Koha::SMS::Providers;
54 my $dbh = C4::Context->dbh;
56 my ($template, $loggedinuser, $cookie)
57 = get_template_and_user({template_name => "members/memberentrygen.tt",
60 flagsrequired => {borrowers => 'edit_borrowers'},
63 my $borrowernumber = $input->param('borrowernumber');
64 my $patron = Koha::Patrons->find($borrowernumber);
66 if ( $borrowernumber and not $patron ) {
67 output_and_exit( $input, $cookie, $template, 'unknown_patron' );
70 if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) {
71 my @providers = Koha::SMS::Providers->search();
72 $template->param( sms_providers => \@providers );
75 my $actionType = $input->param('actionType') || '';
76 my $modify = $input->param('modify');
77 my $delete = $input->param('delete');
78 my $op = $input->param('op');
79 my $destination = $input->param('destination');
80 my $cardnumber = $input->param('cardnumber');
81 my $check_member = $input->param('check_member');
82 my $nodouble = $input->param('nodouble');
83 my $duplicate = $input->param('duplicate');
84 my $quickadd = $input->param('quickadd');
85 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate'); # FIXME hack to represent fact that if we're
86 # modifying an existing patron, it ipso facto
87 # isn't a duplicate. Marking FIXME because this
88 # script needs to be refactored.
89 my $nok = $input->param('nok');
90 my $step = $input->param('step') || 0;
95 my $userenv = C4::Context->userenv;
98 ## Deal with guarantor stuff
99 $template->param( relationships => scalar $patron->guarantor_relationships ) if $patron;
101 my @relations = split /\|/, C4::Context->preference('borrowerRelationship'), -1;
102 @relations = ('') unless @relations;
103 my $empty_relationship_allowed = grep {$_ eq ""} @relations;
104 $template->param( empty_relationship_allowed => $empty_relationship_allowed );
106 my $guarantor_id = $input->param('guarantor_id');
107 my $guarantor = undef;
108 $guarantor = Koha::Patrons->find( $guarantor_id ) if $guarantor_id;
109 $template->param( guarantor => $guarantor );
111 my @delete_guarantor = $input->multi_param('delete_guarantor');
112 foreach my $id ( @delete_guarantor ) {
113 my $r = Koha::Patron::Relationships->find( $id );
117 ## Deal with debarments
119 debarments => scalar GetDebarments( { borrowernumber => $borrowernumber } ) );
120 my @debarments_to_remove = $input->multi_param('remove_debarment');
121 foreach my $d ( @debarments_to_remove ) {
124 if ( $input->param('add_debarment') ) {
126 my $expiration = $input->param('debarred_expiration');
129 ? dt_from_string($expiration)->ymd
134 borrowernumber => $borrowernumber,
136 comment => scalar $input->param('debarred_comment'),
137 expiration => $expiration,
142 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
144 # function to designate mandatory fields (visually with css)
145 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
146 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
147 foreach (@field_check) {
148 $template->param( "mandatory$_" => 1 );
150 # function to designate unwanted fields
151 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
152 @field_check=split(/\|/,$check_BorrowerUnwantedField);
153 foreach (@field_check) {
155 $template->param( "no$_" => 1 );
157 $template->param( "add" => 1 ) if ( $op eq 'add' );
158 $template->param( "quickadd" => 1 ) if ( $quickadd );
159 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
160 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
161 if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' ) {
162 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
163 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
165 # check permission to modify email info.
166 if ( $patron->is_superlibrarian && !$logged_in_user->is_superlibrarian ) {
170 $borrower_data = $patron->unblessed;
171 $borrower_data->{category_type} = $patron->category->category_type;
174 my $categorycode = $input->param('categorycode') || $borrower_data->{'categorycode'};
175 my $category_type = $input->param('category_type') || '';
176 unless ($category_type or !($categorycode)){
177 my $borrowercategory = Koha::Patron::Categories->find($categorycode);
178 $category_type = $borrowercategory->category_type;
179 my $category_name = $borrowercategory->description;
180 $template->param("categoryname"=>$category_name);
182 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
184 # if a add or modify is requested => check validity of data.
185 %data = %$borrower_data if ($borrower_data);
187 # initialize %newdata
188 my %newdata; # comes from $input->param()
189 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
190 my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
191 foreach my $key (@names) {
192 if (defined $input->param($key)) {
193 $newdata{$key} = $input->param($key);
197 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
198 next unless exists $newdata{$_};
199 my $userdate = $newdata{$_} or next;
201 my $formatteddate = eval { output_pref({ dt => dt_from_string( $userdate ), dateformat => 'iso', dateonly => 1 } ); };
202 if ( $formatteddate ) {
203 $newdata{$_} = $formatteddate;
205 $template->param( "ERROR_$_" => 1 );
206 push(@errors,"ERROR_$_");
210 # check permission to modify login info.
211 if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) ) {
216 # remove keys from %newdata that is not part of patron's attributes
218 my @keys_to_delete = (
219 qr/^(borrowernumber|date_renewed|debarred|debarredcomment|flags|privacy|updated_on|lastseen|login_attempts|overdrive_auth_token|anonymized)$/, # Bug 28935
220 qr/^BorrowerMandatoryField$/,
229 qr/^setting_extended_patron_attributes$/,
230 qr/^setting_messaging_prefs$/,
238 qr/^add_debarment$/, qr/^debarred_comment$/,qr/^debarred_expiration$/, qr/^remove_debarment$/, # We already dealt with debarments previously
239 qr/^housebound_chooser$/, qr/^housebound_deliverer$/,
242 qr/^guarantor_firstname$/,
243 qr/^guarantor_surname$/,
244 qr/^delete_guarantor$/,
246 push @keys_to_delete, map { qr/^$_$/ } split( /\s*\|\s*/, C4::Context->preference('BorrowerUnwantedField') || q{} );
247 for my $regexp (@keys_to_delete) {
248 for (keys %newdata) {
249 delete($newdata{$_}) if /$regexp/;
254 # Test uniqueness of surname, firstname and dateofbirth
255 if ( ( $op eq 'insert' ) and !$nodouble ) {
256 my @dup_fields = split '\|', C4::Context->preference('PatronDuplicateMatchingAddFields');
258 for my $f ( @dup_fields ) {
259 $conditions->{$f} = $newdata{$f} if $newdata{$f};
262 my $patrons = Koha::Patrons->search($conditions); # FIXME Should be search_limited?
263 if ( $patrons->count > 0) {
265 $check_member = $patrons->next->borrowernumber;
269 my @new_guarantor_id = $input->multi_param('new_guarantor_id');
270 my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
271 foreach my $gid ( @new_guarantor_id ) {
272 my $patron = Koha::Patrons->find( $gid );
273 my $relationship = shift( @new_guarantor_relationship );
275 my $g = { patron => $patron, relationship => $relationship };
276 push( @new_guarantors, $g );
278 $template->param( new_guarantors => \@new_guarantors );
282 ###############test to take the right zipcode, country and city name ##############
283 # set only if parameter was passed from the form
284 $newdata{'city'} = $input->param('city') if defined($input->param('city'));
285 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
286 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
288 $newdata{'lang'} = $input->param('lang') if defined($input->param('lang'));
290 # builds default userid
291 # userid input text may be empty or missing because of syspref BorrowerUnwantedField
292 if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ && !defined $data{'userid'} ) {
293 my $fake_patron = Koha::Patron->new;
294 $fake_patron->userid($patron->userid) if $patron; # editing
295 if ( ( defined $newdata{'firstname'} || $category_type eq 'I' ) && ( defined $newdata{'surname'} ) ) {
296 # Full page edit, firstname and surname input zones are present
297 $fake_patron->firstname($newdata{firstname});
298 $fake_patron->surname($newdata{surname});
299 $fake_patron->generate_userid;
300 $newdata{'userid'} = $fake_patron->userid;
302 elsif ( ( defined $data{'firstname'} || $category_type eq 'I' ) && ( defined $data{'surname'} ) ) {
303 # Partial page edit (access through "Details"/"Library details" tab), firstname and surname input zones are not used
304 # Still, if the userid field is erased, we can create a new userid with available firstname and surname
305 # FIXME clean thiscode newdata vs data is very confusing
306 $fake_patron->firstname($data{firstname});
307 $fake_patron->surname($data{surname});
308 $fake_patron->generate_userid;
309 $newdata{'userid'} = $fake_patron->userid;
312 $newdata{'userid'} = $data{'userid'};
316 my $extended_patron_attributes;
317 if ($op eq 'save' || $op eq 'insert'){
319 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
320 unless Koha::Token->new->check_csrf({
321 session_id => scalar $input->cookie('CGISESSID'),
322 token => scalar $input->param('csrf_token'),
325 # If the cardnumber is blank, treat it as null.
326 $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
328 my $new_barcode = $newdata{'cardnumber'};
329 Koha::Plugins->call( 'patron_barcode_transform', \$new_barcode );
331 $newdata{'cardnumber'} = $new_barcode;
333 if (my $error_code = checkcardnumber( $newdata{cardnumber}, $borrowernumber )){
334 push @errors, $error_code == 1
335 ? 'ERROR_cardnumber_already_exists'
337 ? 'ERROR_cardnumber_length'
342 if ($op eq 'save' && $step == 3) {
343 $dateofbirth = $patron->dateofbirth;
346 $dateofbirth = $newdata{dateofbirth};
349 if ( $dateofbirth ) {
350 my $patron = Koha::Patron->new({ dateofbirth => $dateofbirth });
351 my $age = $patron->get_age;
352 my $borrowercategory = Koha::Patron::Categories->find($categorycode);
353 my ($low,$high) = ($borrowercategory->dateofbirthrequired, $borrowercategory->upperagelimit);
354 if (($high && ($age > $high)) or ($age < $low)) {
355 push @errors, 'ERROR_age_limitations';
356 $template->param( age_low => $low);
357 $template->param( age_high => $high);
361 if (C4::Context->preference("IndependentBranches")) {
362 unless ( C4::Context->IsSuperLibrarian() ){
363 unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
364 push @errors, "ERROR_branch";
368 # Check if the 'userid' is unique. 'userid' might not always be present in
369 # the edited values list when editing certain sub-forms. Get it straight
370 # from the DB if absent.
371 my $userid = $newdata{ userid } // $borrower_data->{ userid };
372 my $p = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : Koha::Patron->new();
373 $p->userid( $userid );
374 unless ( $p->has_valid_userid ) {
375 push @errors, "ERROR_login_exist";
378 my $password = $input->param('password');
379 my $password2 = $input->param('password2');
380 push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
382 if ( $password and $password ne '****' ) {
383 my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password, Koha::Patron::Categories->find($categorycode) );
384 unless ( $is_valid ) {
385 push @errors, 'ERROR_password_too_short' if $error eq 'too_short';
386 push @errors, 'ERROR_password_too_weak' if $error eq 'too_weak';
387 push @errors, 'ERROR_password_has_whitespaces' if $error eq 'has_whitespaces';
392 my $emailprimary = $input->param('email');
393 my $emailsecondary = $input->param('emailpro');
394 my $emailalt = $input->param('B_email');
397 push (@errors, "ERROR_bad_email") unless Koha::Email->is_valid($emailprimary);
399 if ($emailsecondary) {
400 push (@errors, "ERROR_bad_email_secondary") unless Koha::Email->is_valid($emailsecondary);
403 push (@errors, "ERROR_bad_email_alternative") unless Koha::Email->is_valid($emailalt);
406 if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
407 $extended_patron_attributes = parse_extended_patron_attributes($input);
408 for my $attr ( @$extended_patron_attributes ) {
409 $attr->{borrowernumber} = $borrowernumber if $borrowernumber;
410 my $attribute = Koha::Patron::Attribute->new($attr);
411 if ( !$attribute->unique_ok ) {
412 push @errors, "ERROR_extended_unique_id_failed";
413 my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code});
415 ERROR_extended_unique_id_failed_code => $attr->{code},
416 ERROR_extended_unique_id_failed_value => $attr->{attribute},
417 ERROR_extended_unique_id_failed_description => $attr_type->description()
423 elsif ( $borrowernumber ) {
424 $extended_patron_attributes = Koha::Patrons->find($borrowernumber)->extended_attributes->unblessed;
427 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
428 unless ($newdata{'dateexpiry'}){
429 my $patron_category = Koha::Patron::Categories->find( $newdata{categorycode} );
430 $newdata{'dateexpiry'} = $patron_category->get_expiry_date( $newdata{dateenrolled} ) if $patron_category;
434 # BZ 14683: Do not mixup mobile [read: other phone] with smsalertnumber
435 my $sms = $input->param('SMSnumber');
436 if ( defined $sms ) {
437 $newdata{smsalertnumber} = $sms;
440 ### Error checks should happen before this line.
441 $nok = $nok || scalar(@errors);
442 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
444 if ($op eq 'insert'){
445 # we know it's not a duplicate borrowernumber or there would already be an error
446 delete $newdata{password2};
447 $patron = eval { Koha::Patron->new(\%newdata)->store };
449 # FIXME Urgent error handling here, we cannot fail without relevant feedback
450 # Lot of code will need to be removed from this script to handle exceptions raised by Koha::Patron->store
451 warn "Patron creation failed! - $@"; # Maybe we must die instead of just warn
452 push @messages, {error => 'error_on_insert_patron'};
456 add_guarantors( $patron, $input );
457 $borrowernumber = $patron->borrowernumber;
458 $newdata{'borrowernumber'} = $borrowernumber;
461 # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
462 if ( C4::Context->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'} && $newdata{'password'}) {
463 #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
465 if (C4::Context->preference("AutoEmailPrimaryAddress") ne 'OFF' &&
466 $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} =~ /\w\@\w/ ) {
467 $emailaddr = $newdata{C4::Context->preference("AutoEmailPrimaryAddress")}
469 elsif ($newdata{email} =~ /\w\@\w/) {
470 $emailaddr = $newdata{email}
472 elsif ($newdata{emailpro} =~ /\w\@\w/) {
473 $emailaddr = $newdata{emailpro}
475 elsif ($newdata{B_email} =~ /\w\@\w/) {
476 $emailaddr = $newdata{B_email}
478 # if we manage to find a valid email address, send notice
480 $newdata{emailaddr} = $emailaddr;
483 $err = SendAlerts ( 'members', \%newdata, "ACCTDETAILS" );
486 $template->param(error_alert => $@);
487 } elsif ( ref($err) eq "HASH" && defined $err->{error} and $err->{error} eq "no_email" ) {
488 $template->{VARS}->{'error_alert'} = "no_email";
490 $template->{VARS}->{'info_alert'} = 1;
495 if ( $patron && (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) ) {
496 C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template, 1, $newdata{'categorycode'});
499 # Create HouseboundRole if necessary.
500 # Borrower did not exist, so HouseboundRole *cannot* yet exist.
501 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
502 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
503 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
504 # Only create a HouseboundRole if patron has a role.
505 if ( $patron && ( $hsbnd_chooser || $hsbnd_deliverer ) ) {
506 Koha::Patron::HouseboundRole->new({
507 borrowernumber_id => $borrowernumber,
508 housebound_chooser => $hsbnd_chooser,
509 housebound_deliverer => $hsbnd_deliverer,
513 } elsif ($op eq 'save') {
515 if ($NoUpdateLogin) {
516 delete $newdata{'password'};
517 delete $newdata{'userid'};
520 $patron = Koha::Patrons->find( $borrowernumber );
522 if ($NoUpdateEmail) {
523 delete $newdata{'email'};
524 delete $newdata{'emailpro'};
525 delete $newdata{'B_email'};
528 delete $newdata{password2};
531 $patron->set(\%newdata)->store if scalar(keys %newdata) > 1; # bug 4508 - avoid crash if we're not
532 # updating any columns in the borrowers table,
533 # which can happen if we're only editing the
534 # patron attributes or messaging preferences sections
537 warn "Patron modification failed! - $@"; # Maybe we must die instead of just warn
538 push @messages, {error => 'error_on_update_patron'};
543 # Update or create our HouseboundRole if necessary.
544 my $housebound_role = Koha::Patron::HouseboundRoles->find($borrowernumber);
545 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
546 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
547 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
548 if ( $housebound_role ) {
549 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
550 # Update our HouseboundRole.
552 ->housebound_chooser($hsbnd_chooser)
553 ->housebound_deliverer($hsbnd_deliverer)
556 $housebound_role->delete; # No longer needed.
559 # Only create a HouseboundRole if patron has a role.
560 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
561 $housebound_role = Koha::Patron::HouseboundRole->new({
562 borrowernumber_id => $borrowernumber,
563 housebound_chooser => $hsbnd_chooser,
564 housebound_deliverer => $hsbnd_deliverer,
569 # should never raise an exception as password validity is checked above
570 my $password = $newdata{password};
571 if ( $password and $password ne '****' ) {
572 $patron->set_password({ password => $password });
575 add_guarantors( $patron, $input );
576 if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
577 C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
583 if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
584 $patron->extended_attributes->filter_by_branch_limitations->delete;
585 $patron->extended_attributes($extended_patron_attributes);
588 if ( $destination eq 'circ' and not C4::Auth::haspermission( C4::Context->userenv->{id}, { circulate => 'circulate_remaining_permissions' } ) ) {
589 # If we want to redirect to circulation.pl and need to check if the logged in user has the necessary permission
590 $destination = 'not_circ';
592 print scalar( $destination eq "circ" )
594 "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber")
596 "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber"
598 exit; # You can only send 1 redirect! After that, content or other headers don't matter.
603 print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
604 exit; # same as above
607 if ($nok or !$nodouble){
608 $op="add" if ($op eq "insert");
609 $op="modify" if ($op eq "save");
611 $template->param( updtype => ($op eq 'add' ?'I':'M')); # used to check for $op eq "insert"... but we just changed $op!
613 $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1, step_7 => 1 );
616 if (C4::Context->preference("IndependentBranches")) {
617 my $userenv = C4::Context->userenv;
618 if ( !C4::Context->IsSuperLibrarian() && $data{'branchcode'} ) {
619 unless ($userenv->{branch} eq $data{'branchcode'}){
620 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
626 # Define the fields to be pre-filled in guarantee records
627 my $prefillguarantorfields=C4::Context->preference("PrefillGuaranteeField");
628 my @prefill_fields=split(/\,/,$prefillguarantorfields);
632 foreach (@prefill_fields) {
633 $newdata{$_} = $guarantor->$_;
636 $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1, step_7 => 1);
638 if ($op eq "modify") {
639 $template->param( updtype => 'M',modify => 1 );
640 $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1, step_7 => 1) unless $step;
642 $template->param( categorycode => $borrower_data->{'categorycode'} );
645 if ( $op eq "duplicate" ) {
646 $template->param( updtype => 'I' );
647 $template->param( step_1 => 1, step_2 => 1, step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1, step_7 => 1 ) unless $step;
648 $data{'cardnumber'} = "";
651 if(!defined($data{'sex'})){
652 $template->param( none => 1);
653 } elsif($data{'sex'} eq 'F'){
654 $template->param( female => 1);
655 } elsif ($data{'sex'} eq 'M'){
656 $template->param( male => 1);
657 } elsif ($data{'sex'} eq 'O') {
658 $template->param( other => 1);
660 $template->param( none => 1);
663 ##Now all the data to modify a member.
666 my $no_categories = 1;
668 foreach my $category_type (qw(C A S P I X)) {
669 my $patron_categories = Koha::Patron::Categories->search_with_library_limits({ category_type => $category_type }, {order_by => ['categorycode']});
670 $no_categories = 0 if $patron_categories->count > 0;
673 while ( my $patron_category = $patron_categories->next ) {
675 { 'categorycode' => $patron_category->categorycode,
676 'categoryname' => $patron_category->description,
677 'effective_min_password_length' => $patron_category->effective_min_password_length,
678 'effective_require_strong_password' => $patron_category->effective_require_strong_password,
679 'categorycodeselected' =>
680 ( defined($categorycode) && $patron_category->categorycode eq $categorycode ),
684 $typehash{'typename'} = $category_type;
685 my $typedescription = "typename_" . $typehash{'typename'};
686 $typehash{'categoryloop'} = \@categoryloop;
688 { 'typename' => $category_type,
689 $typedescription => 1,
690 'categoryloop' => \@categoryloop
694 typeloop => \@typeloop,
695 no_categories => $no_categories,
698 my $cities = Koha::Cities->search( {}, { order_by => 'city_name' } );
703 my $default_borrowertitle = '';
704 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
706 my @relationships = split /,|\|/, C4::Context->preference('borrowerRelationship');
708 while (@relationships) {
709 my $relship = shift @relationships || '';
710 my %row = ('relationship' => $relship);
711 if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
712 $row{'selected'}=' selected';
716 push(@relshipdata, \%row);
720 'gonenoaddress' => ['gonenoaddress'],
725 foreach ( keys(%flags) ) {
729 'name' => $flags{$key}[0]
732 $row{'yes'} = ' checked';
737 $row{'no'} = ' checked';
739 push @flagdata, \%row;
743 # in modify mod: userbranch value comes from borrowers table
744 # in add mod: userbranch value comes from branches table (ip correspondence)
747 if (C4::Context->userenv && C4::Context->userenv->{'branch'}) {
748 $userbranch = C4::Context->userenv->{'branch'};
751 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) {
752 $userbranch = $data{'branchcode'};
754 $template->param( userbranch => $userbranch );
756 if ( Koha::Libraries->search->count < 1 ){
758 $template->param(no_branches => 1);
762 $template->param(no_categories => 1);
764 $template->param(no_add => $no_add);
765 # --------------------------------------------------------------------------------------------------------
767 $template->param( sort1 => $data{'sort1'});
768 $template->param( sort2 => $data{'sort2'});
769 $template->param( autorenew => $data{'autorenew'});
772 foreach my $error (@errors) {
773 $template->param($error) || $template->param( $error => 1);
775 $template->param(nok => 1);
778 #Formatting data for display
780 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
781 $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
783 if ( $op eq 'duplicate' ) {
784 $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
785 my $patron_category = Koha::Patron::Categories->find( $data{categorycode} );
786 $data{dateexpiry} = $patron_category->get_expiry_date( $data{dateenrolled} );
788 if (C4::Context->preference('uppercasesurnames')) {
789 $data{'surname'} &&= uc( $data{'surname'} );
790 $data{'contactname'} &&= uc( $data{'contactname'} );
793 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
795 $data{$_} = eval { output_pref({ dt => dt_from_string( $data{$_} ), dateonly => 1 } ); }; # back to syspref for display
797 $template->param( $_ => $data{$_});
800 if ( C4::Context->preference('ExtendedPatronAttributes') ) {
801 patron_attributes_form( $template, $extended_patron_attributes, $op );
804 if (C4::Context->preference('EnhancedMessagingPreferences')) {
806 C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
808 C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
810 $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
811 $template->param(SMSnumber => $data{'smsalertnumber'} );
812 $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
815 $template->param( "show_guarantor" => ( $category_type =~ /A|I|S|X/ ) ? 0 : 1 ); # associate with step to know where you are
816 $template->param( borrower_data => \%data );
817 $template->param( "step_$step" => 1) if $step; # associate with step to know where u are
818 $template->param( step => $step ) if $step; # associate with step to know where u are
821 BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
822 category_type => $category_type,#to know the category type of the borrower
823 "$category_type" => 1,# associate with step to know where u are
824 destination => $destination,#to know wher u come from and wher u must go in redirect
825 check_member => $check_member,#to know if the borrower already exist(=>1) or not (=>0)
829 patron => $patron ? $patron : \%newdata, # Used by address include templates now
830 nodouble => $nodouble,
831 borrowernumber => $borrowernumber, #register number
832 relshiploop => \@relshipdata,
833 btitle=> $default_borrowertitle,
834 flagloop => \@flagdata,
835 category_type =>$category_type,
837 nok => $nok,#flag to know if an error
838 NoUpdateLogin => $NoUpdateLogin,
839 NoUpdateEmail => $NoUpdateEmail,
842 # Generate CSRF token
843 $template->param( csrf_token =>
844 Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID'), } ),
847 # HouseboundModule data
849 housebound_role => Koha::Patron::HouseboundRoles->find($borrowernumber),
852 if(defined($data{'flags'})){
853 $template->param(flags=>$data{'flags'});
855 if(defined($data{'contacttitle'})){
856 $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
860 my ( $min, $max ) = C4::Members::get_cardnumber_length();
861 if ( defined $min ) {
863 minlength_cardnumber => $min,
864 maxlength_cardnumber => $max
868 if ( C4::Context->preference('TranslateNotices') ) {
869 my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') );
870 $template->param( languages => $translated_languages );
873 $template->param( messages => \@messages );
874 output_html_with_http_headers $input, $cookie, $template->output;
876 sub parse_extended_patron_attributes {
878 my @patron_attr = grep { /^patron_attr_\d+$/ } $input->multi_param();
882 foreach my $key (@patron_attr) {
883 my $value = $input->param($key);
884 next unless defined($value) and $value ne '';
885 my $code = $input->param("${key}_code");
886 next if exists $dups{$code}->{$value};
887 $dups{$code}->{$value} = 1;
888 push @attr, { code => $code, attribute => $value };
893 sub patron_attributes_form {
894 my $template = shift;
895 my $attributes = shift;
898 my $library_id = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
899 my $attribute_types = Koha::Patron::Attribute::Types->search_with_library_limits({}, {}, $library_id);
900 if ( $attribute_types->count == 0 ) {
901 $template->param(no_patron_attribute_types => 1);
905 # map patron's attributes into a more convenient structure
907 foreach my $attr (@$attributes) {
908 push @{ $attr_hash{$attr->{code}} }, $attr;
911 my @attribute_loop = ();
914 while ( my ( $attr_type ) = $attribute_types->next ) {
916 class => $attr_type->class(),
917 code => $attr_type->code(),
918 description => $attr_type->description(),
919 repeatable => $attr_type->repeatable(),
920 category => $attr_type->authorised_value_category(),
921 category_code => $attr_type->category_code(),
922 mandatory => $attr_type->mandatory(),
924 if (exists $attr_hash{$attr_type->code()}) {
925 foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
926 my $newentry = { %$entry };
927 $newentry->{value} = $attr->{attribute};
928 $newentry->{use_dropdown} = 0;
929 if ($attr_type->authorised_value_category()) {
930 $newentry->{use_dropdown} = 1;
931 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{attribute});
934 undef $newentry->{value} if ($attr_type->unique_id() && $op eq 'duplicate');
935 $newentry->{form_id} = "patron_attr_$i";
936 push @{$items_by_class{$attr_type->class()}}, $newentry;
940 my $newentry = { %$entry };
941 if ($attr_type->authorised_value_category()) {
942 $newentry->{use_dropdown} = 1;
943 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
945 $newentry->{form_id} = "patron_attr_$i";
946 push @{$items_by_class{$attr_type->class()}}, $newentry;
949 for my $class ( sort keys %items_by_class ) {
950 my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
951 my $lib = $av->count ? $av->next->lib : $class;
952 push @attribute_loop, {
954 items => $items_by_class{$class},
959 $template->param(patron_attributes => \@attribute_loop);
964 my ( $patron, $input ) = @_;
966 my @new_guarantor_id = $input->multi_param('new_guarantor_id');
967 my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
969 for ( my $i = 0 ; $i < scalar @new_guarantor_id; $i++ ) {
970 my $guarantor_id = $new_guarantor_id[$i];
971 my $relationship = $new_guarantor_relationship[$i];
973 next unless $guarantor_id;
975 $patron->add_guarantor(
977 guarantor_id => $guarantor_id,
978 relationship => $relationship,