Bug 24734: Fix paths in LangInstaller.pm for JS files
[koha.git] / members / memberentry.pl
blob902beeb0e871c399a1996a44f7627a42a515dfb5
1 #!/usr/bin/perl
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>.
21 # pragma
22 use Modern::Perl;
24 # external modules
25 use CGI qw ( -utf8 );
26 use List::MoreUtils qw/uniq/;
28 # internal modules
29 use C4::Auth;
30 use C4::Context;
31 use C4::Output;
32 use C4::Members;
33 use C4::Members::Attributes;
34 use C4::Members::AttributeTypes;
35 use C4::Koha;
36 use C4::Log;
37 use C4::Letters;
38 use C4::Form::MessagingPreferences;
39 use Koha::AuthUtils;
40 use Koha::AuthorisedValues;
41 use Koha::Patron::Debarments;
42 use Koha::Cities;
43 use Koha::DateUtils;
44 use Koha::Libraries;
45 use Koha::Patrons;
46 use Koha::Patron::Categories;
47 use Koha::Patron::HouseboundRole;
48 use Koha::Patron::HouseboundRoles;
49 use Koha::Token;
50 use Email::Valid;
51 use Koha::SMS::Providers;
53 use vars qw($debug);
55 BEGIN {
56 $debug = $ENV{DEBUG} || 0;
59 my $input = new CGI;
60 ($debug) or $debug = $input->param('debug') || 0;
61 my %data;
63 my $dbh = C4::Context->dbh;
65 my ($template, $loggedinuser, $cookie)
66 = get_template_and_user({template_name => "members/memberentrygen.tt",
67 query => $input,
68 type => "intranet",
69 authnotrequired => 0,
70 flagsrequired => {borrowers => 'edit_borrowers'},
71 debug => ($debug) ? 1 : 0,
72 });
74 my $borrowernumber = $input->param('borrowernumber');
75 my $patron = Koha::Patrons->find($borrowernumber);
77 if ( $borrowernumber and not $patron ) {
78 output_and_exit( $input, $cookie, $template, 'unknown_patron' );
81 if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) {
82 my @providers = Koha::SMS::Providers->search();
83 $template->param( sms_providers => \@providers );
86 my $actionType = $input->param('actionType') || '';
87 my $modify = $input->param('modify');
88 my $delete = $input->param('delete');
89 my $op = $input->param('op');
90 my $destination = $input->param('destination');
91 my $cardnumber = $input->param('cardnumber');
92 my $check_member = $input->param('check_member');
93 my $nodouble = $input->param('nodouble');
94 my $duplicate = $input->param('duplicate');
95 my $quickadd = $input->param('quickadd');
96 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate'); # FIXME hack to represent fact that if we're
97 # modifying an existing patron, it ipso facto
98 # isn't a duplicate. Marking FIXME because this
99 # script needs to be refactored.
100 my $nok = $input->param('nok');
101 my $step = $input->param('step') || 0;
102 my @errors;
103 my $borrower_data;
104 my $NoUpdateLogin;
105 my $userenv = C4::Context->userenv;
107 ## Deal with guarantor stuff
108 $template->param( relationships => scalar $patron->guarantor_relationships ) if $patron;
110 my $guarantor_id = $input->param('guarantor_id');
111 my $guarantor = undef;
112 $guarantor = Koha::Patrons->find( $guarantor_id ) if $guarantor_id;
113 $template->param( guarantor => $guarantor );
115 my @delete_guarantor = $input->multi_param('delete_guarantor');
116 foreach my $id ( @delete_guarantor ) {
117 my $r = Koha::Patron::Relationships->find( $id );
118 $r->delete() if $r;
121 ## Deal with debarments
122 $template->param(
123 debarments => scalar GetDebarments( { borrowernumber => $borrowernumber } ) );
124 my @debarments_to_remove = $input->multi_param('remove_debarment');
125 foreach my $d ( @debarments_to_remove ) {
126 DelDebarment( $d );
128 if ( $input->param('add_debarment') ) {
130 my $expiration = $input->param('debarred_expiration');
131 $expiration =
132 $expiration
133 ? dt_from_string($expiration)->ymd
134 : undef;
136 AddDebarment(
138 borrowernumber => $borrowernumber,
139 type => 'MANUAL',
140 comment => scalar $input->param('debarred_comment'),
141 expiration => $expiration,
146 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
148 # function to designate mandatory fields (visually with css)
149 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
150 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
151 foreach (@field_check) {
152 $template->param( "mandatory$_" => 1 );
154 # function to designate unwanted fields
155 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
156 @field_check=split(/\|/,$check_BorrowerUnwantedField);
157 foreach (@field_check) {
158 next unless m/\w/o;
159 $template->param( "no$_" => 1 );
161 $template->param( "add" => 1 ) if ( $op eq 'add' );
162 $template->param( "quickadd" => 1 ) if ( $quickadd );
163 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
164 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
165 if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' ) {
166 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
167 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
169 $borrower_data = $patron->unblessed;
170 $borrower_data->{category_type} = $patron->category->category_type;
173 my $categorycode = $input->param('categorycode') || $borrower_data->{'categorycode'};
174 my $category_type = $input->param('category_type') || '';
175 unless ($category_type or !($categorycode)){
176 my $borrowercategory = Koha::Patron::Categories->find($categorycode);
177 $category_type = $borrowercategory->category_type;
178 my $category_name = $borrowercategory->description;
179 $template->param("categoryname"=>$category_name);
181 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
183 # if a add or modify is requested => check validity of data.
184 %data = %$borrower_data if ($borrower_data);
186 # initialize %newdata
187 my %newdata; # comes from $input->param()
188 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
189 my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
190 foreach my $key (@names) {
191 if (defined $input->param($key)) {
192 $newdata{$key} = $input->param($key);
196 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
197 next unless exists $newdata{$_};
198 my $userdate = $newdata{$_} or next;
200 my $formatteddate = eval { output_pref({ dt => dt_from_string( $userdate ), dateformat => 'iso', dateonly => 1 } ); };
201 if ( $formatteddate ) {
202 $newdata{$_} = $formatteddate;
203 } else {
204 ($userdate eq '0000-00-00') and warn "Data error: $_ is '0000-00-00'";
205 $template->param( "ERROR_$_" => 1 );
206 push(@errors,"ERROR_$_");
209 # check permission to modify login info.
210 if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) ) {
211 $NoUpdateLogin = 1;
215 # remove keys from %newdata that is not part of patron's attributes
217 my @keys_to_delete = (
218 qr/^BorrowerMandatoryField$/,
219 qr/^category_type$/,
220 qr/^check_member$/,
221 qr/^destination$/,
222 qr/^nodouble$/,
223 qr/^op$/,
224 qr/^save$/,
225 qr/^updtype$/,
226 qr/^SMSnumber$/,
227 qr/^setting_extended_patron_attributes$/,
228 qr/^setting_messaging_prefs$/,
229 qr/^digest$/,
230 qr/^modify$/,
231 qr/^step$/,
232 qr/^\d+$/,
233 qr/^\d+-DAYS/,
234 qr/^patron_attr_/,
235 qr/^csrf_token$/,
236 qr/^add_debarment$/, qr/^debarred_expiration$/, qr/^remove_debarment$/, # We already dealt with debarments previously
237 qr/^housebound_chooser$/, qr/^housebound_deliverer$/,
238 qr/^select_city$/,
239 qr/^new_guarantor_/,
240 qr/^guarantor_firstname$/,
241 qr/^guarantor_surname$/,
242 qr/^delete_guarantor$/,
244 for my $regexp (@keys_to_delete) {
245 for (keys %newdata) {
246 delete($newdata{$_}) if /$regexp/;
251 # Test uniqueness of surname, firstname and dateofbirth
252 if ( ( $op eq 'insert' ) and !$nodouble ) {
253 my $conditions;
254 $conditions->{surname} = $newdata{surname} if $newdata{surname};
255 if ( $category_type ne 'I' ) {
256 $conditions->{firstname} = $newdata{firstname} if $newdata{firstname};
257 $conditions->{dateofbirth} = $newdata{dateofbirth} if $newdata{dateofbirth};
259 $nodouble = 1;
260 my $patrons = Koha::Patrons->search($conditions); # FIXME Should be search_limited?
261 if ( $patrons->count > 0) {
262 $nodouble = 0;
263 $check_member = $patrons->next->borrowernumber;
266 my @new_guarantors;
267 my @new_guarantor_id = $input->multi_param('new_guarantor_id');
268 my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
269 foreach my $gid ( @new_guarantor_id ) {
270 my $patron = Koha::Patrons->find( $gid );
271 my $relationship = shift( @new_guarantor_relationship );
272 next unless $patron;
273 my $g = { patron => $patron, relationship => $relationship };
274 push( @new_guarantors, $g );
276 $template->param( new_guarantors => \@new_guarantors );
280 ###############test to take the right zipcode, country and city name ##############
281 # set only if parameter was passed from the form
282 $newdata{'city'} = $input->param('city') if defined($input->param('city'));
283 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
284 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
286 $newdata{'lang'} = $input->param('lang') if defined($input->param('lang'));
288 # builds default userid
289 # userid input text may be empty or missing because of syspref BorrowerUnwantedField
290 if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ && !defined $data{'userid'} ) {
291 my $fake_patron = Koha::Patron->new;
292 $fake_patron->userid($patron->userid) if $patron; # editing
293 if ( ( defined $newdata{'firstname'} || $category_type eq 'I' ) && ( defined $newdata{'surname'} ) ) {
294 # Full page edit, firstname and surname input zones are present
295 $fake_patron->firstname($newdata{firstname});
296 $fake_patron->surname($newdata{surname});
297 $fake_patron->generate_userid;
298 $newdata{'userid'} = $fake_patron->userid;
300 elsif ( ( defined $data{'firstname'} || $category_type eq 'I' ) && ( defined $data{'surname'} ) ) {
301 # Partial page edit (access through "Details"/"Library details" tab), firstname and surname input zones are not used
302 # Still, if the userid field is erased, we can create a new userid with available firstname and surname
303 # FIXME clean thiscode newdata vs data is very confusing
304 $fake_patron->firstname($data{firstname});
305 $fake_patron->surname($data{surname});
306 $fake_patron->generate_userid;
307 $newdata{'userid'} = $fake_patron->userid;
309 else {
310 $newdata{'userid'} = $data{'userid'};
314 $debug and warn join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
315 my $extended_patron_attributes = ();
316 if ($op eq 'save' || $op eq 'insert'){
318 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
319 unless Koha::Token->new->check_csrf({
320 session_id => scalar $input->cookie('CGISESSID'),
321 token => scalar $input->param('csrf_token'),
324 # If the cardnumber is blank, treat it as null.
325 $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
327 if (my $error_code = checkcardnumber($newdata{cardnumber},$newdata{borrowernumber})){
328 push @errors, $error_code == 1
329 ? 'ERROR_cardnumber_already_exists'
330 : $error_code == 2
331 ? 'ERROR_cardnumber_length'
332 : ()
335 my $dateofbirth;
336 if ($op eq 'save' && $step == 3) {
337 $dateofbirth = $patron->dateofbirth;
339 else {
340 $dateofbirth = $newdata{dateofbirth};
343 if ( $dateofbirth ) {
344 my $patron = Koha::Patron->new({ dateofbirth => $dateofbirth });
345 my $age = $patron->get_age;
346 my $borrowercategory = Koha::Patron::Categories->find($categorycode);
347 my ($low,$high) = ($borrowercategory->dateofbirthrequired, $borrowercategory->upperagelimit);
348 if (($high && ($age > $high)) or ($age < $low)) {
349 push @errors, 'ERROR_age_limitations';
350 $template->param( age_low => $low);
351 $template->param( age_high => $high);
355 if (C4::Context->preference("IndependentBranches")) {
356 unless ( C4::Context->IsSuperLibrarian() ){
357 $debug and print STDERR " $newdata{'branchcode'} : ".$userenv->{flags}.":".$userenv->{branch};
358 unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
359 push @errors, "ERROR_branch";
363 # Check if the 'userid' is unique. 'userid' might not always be present in
364 # the edited values list when editing certain sub-forms. Get it straight
365 # from the DB if absent.
366 my $userid = $newdata{ userid } // $borrower_data->{ userid };
367 my $p = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : Koha::Patron->new;
368 $p->userid( $userid );
369 unless ( $p->has_valid_userid ) {
370 push @errors, "ERROR_login_exist";
373 my $password = $input->param('password');
374 my $password2 = $input->param('password2');
375 push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
377 if ( $password and $password ne '****' ) {
378 my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password );
379 unless ( $is_valid ) {
380 push @errors, 'ERROR_password_too_short' if $error eq 'too_short';
381 push @errors, 'ERROR_password_too_weak' if $error eq 'too_weak';
382 push @errors, 'ERROR_password_has_whitespaces' if $error eq 'has_whitespaces';
386 # Validate emails
387 my $emailprimary = $input->param('email');
388 my $emailsecondary = $input->param('emailpro');
389 my $emailalt = $input->param('B_email');
391 if ($emailprimary) {
392 push (@errors, "ERROR_bad_email") if (!Email::Valid->address($emailprimary));
394 if ($emailsecondary) {
395 push (@errors, "ERROR_bad_email_secondary") if (!Email::Valid->address($emailsecondary));
397 if ($emailalt) {
398 push (@errors, "ERROR_bad_email_alternative") if (!Email::Valid->address($emailalt));
401 if (C4::Context->preference('ExtendedPatronAttributes')) {
402 $extended_patron_attributes = parse_extended_patron_attributes($input);
403 foreach my $attr (@$extended_patron_attributes) {
404 unless (C4::Members::Attributes::CheckUniqueness($attr->{code}, $attr->{value}, $borrowernumber)) {
405 my $attr_info = C4::Members::AttributeTypes->fetch($attr->{code});
406 push @errors, "ERROR_extended_unique_id_failed";
407 $template->param(
408 ERROR_extended_unique_id_failed_code => $attr->{code},
409 ERROR_extended_unique_id_failed_value => $attr->{value},
410 ERROR_extended_unique_id_failed_description => $attr_info->description()
417 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
418 unless ($newdata{'dateexpiry'}){
419 my $patron_category = Koha::Patron::Categories->find( $newdata{categorycode} );
420 $newdata{'dateexpiry'} = $patron_category->get_expiry_date( $newdata{dateenrolled} ) if $patron_category;
424 # BZ 14683: Do not mixup mobile [read: other phone] with smsalertnumber
425 my $sms = $input->param('SMSnumber');
426 if ( defined $sms ) {
427 $newdata{smsalertnumber} = $sms;
430 ### Error checks should happen before this line.
431 $nok = $nok || scalar(@errors);
432 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
433 $debug and warn "$op dates: " . join "\t", map {"$_: $newdata{$_}"} qw(dateofbirth dateenrolled dateexpiry);
434 if ($op eq 'insert'){
435 # we know it's not a duplicate borrowernumber or there would already be an error
436 delete $newdata{password2};
437 my $patron = eval { Koha::Patron->new(\%newdata)->store };
438 if ( $@ ) {
439 # FIXME Urgent error handling here, we cannot fail without relevant feedback
440 # Lot of code will need to be removed from this script to handle exceptions raised by Koha::Patron->store
441 warn "Patron creation failed! - $@"; # Maybe we must die instead of just warn
442 } else {
443 add_guarantors( $patron, $input );
444 $borrowernumber = $patron->borrowernumber;
445 $newdata{'borrowernumber'} = $borrowernumber;
448 # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
449 if ( C4::Context->preference("AutoEmailOpacUser") == 1 && $newdata{'userid'} && $newdata{'password'}) {
450 #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
451 my $emailaddr;
452 if (C4::Context->preference("AutoEmailPrimaryAddress") ne 'OFF' &&
453 $newdata{C4::Context->preference("AutoEmailPrimaryAddress")} =~ /\w\@\w/ ) {
454 $emailaddr = $newdata{C4::Context->preference("AutoEmailPrimaryAddress")}
456 elsif ($newdata{email} =~ /\w\@\w/) {
457 $emailaddr = $newdata{email}
459 elsif ($newdata{emailpro} =~ /\w\@\w/) {
460 $emailaddr = $newdata{emailpro}
462 elsif ($newdata{B_email} =~ /\w\@\w/) {
463 $emailaddr = $newdata{B_email}
465 # if we manage to find a valid email address, send notice
466 if ($emailaddr) {
467 $newdata{emailaddr} = $emailaddr;
468 my $err;
469 eval {
470 $err = SendAlerts ( 'members', \%newdata, "ACCTDETAILS" );
472 if ( $@ ) {
473 $template->param(error_alert => $@);
474 } elsif ( ref($err) eq "HASH" && defined $err->{error} and $err->{error} eq "no_email" ) {
475 $template->{VARS}->{'error_alert'} = "no_email";
476 } else {
477 $template->{VARS}->{'info_alert'} = 1;
482 if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
483 C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
485 if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
486 C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template, 1, $newdata{'categorycode'});
489 # Create HouseboundRole if necessary.
490 # Borrower did not exist, so HouseboundRole *cannot* yet exist.
491 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
492 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
493 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
494 # Only create a HouseboundRole if patron has a role.
495 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
496 Koha::Patron::HouseboundRole->new({
497 borrowernumber_id => $borrowernumber,
498 housebound_chooser => $hsbnd_chooser,
499 housebound_deliverer => $hsbnd_deliverer,
500 })->store;
503 } elsif ($op eq 'save') {
505 # Update or create our HouseboundRole if necessary.
506 my $housebound_role = Koha::Patron::HouseboundRoles->find($borrowernumber);
507 my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
508 $hsbnd_chooser = 1 if $input->param('housebound_chooser');
509 $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
510 if ( $housebound_role ) {
511 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
512 # Update our HouseboundRole.
513 $housebound_role
514 ->housebound_chooser($hsbnd_chooser)
515 ->housebound_deliverer($hsbnd_deliverer)
516 ->store;
517 } else {
518 $housebound_role->delete; # No longer needed.
520 } else {
521 # Only create a HouseboundRole if patron has a role.
522 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
523 $housebound_role = Koha::Patron::HouseboundRole->new({
524 borrowernumber_id => $borrowernumber,
525 housebound_chooser => $hsbnd_chooser,
526 housebound_deliverer => $hsbnd_deliverer,
527 })->store;
531 if ($NoUpdateLogin) {
532 delete $newdata{'password'};
533 delete $newdata{'userid'};
536 my $patron = Koha::Patrons->find( $borrowernumber );
537 $newdata{debarredcomment} = $newdata{debarred_comment};
538 delete $newdata{debarred_comment};
539 delete $newdata{password2};
540 $patron->set(\%newdata)->store if scalar(keys %newdata) > 1; # bug 4508 - avoid crash if we're not
541 # updating any columns in the borrowers table,
542 # which can happen if we're only editing the
543 # patron attributes or messaging preferences sections
545 # should never raise an exception as password validity is checked above
546 my $password = $newdata{password};
547 if ( $password and $password ne '****' ) {
548 $patron->set_password({ password => $password });
551 add_guarantors( $patron, $input );
552 if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
553 C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
555 if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
556 C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
560 if ( $destination eq 'circ' and not C4::Auth::haspermission( C4::Context->userenv->{id}, { circulate => 'circulate_remaining_permissions' } ) ) {
561 # If we want to redirect to circulation.pl and need to check if the logged in user has the necessary permission
562 $destination = 'not_circ';
564 print scalar( $destination eq "circ" )
565 ? $input->redirect(
566 "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber")
567 : $input->redirect(
568 "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber"
570 exit; # You can only send 1 redirect! After that, content or other headers don't matter.
573 if ($delete){
574 print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
575 exit; # same as above
578 if ($nok or !$nodouble){
579 $op="add" if ($op eq "insert");
580 $op="modify" if ($op eq "save");
581 %data=%newdata;
582 $template->param( updtype => ($op eq 'add' ?'I':'M')); # used to check for $op eq "insert"... but we just changed $op!
583 unless ($step){
584 $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1, step_7 => 1 );
587 if (C4::Context->preference("IndependentBranches")) {
588 my $userenv = C4::Context->userenv;
589 if ( !C4::Context->IsSuperLibrarian() && $data{'branchcode'} ) {
590 unless ($userenv->{branch} eq $data{'branchcode'}){
591 print $input->redirect("/cgi-bin/koha/members/members-home.pl");
592 exit;
596 if ($op eq 'add'){
597 $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);
599 if ($op eq "modify") {
600 $template->param( updtype => 'M',modify => 1 );
601 $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;
602 if ( $step == 4 ) {
603 $template->param( categorycode => $borrower_data->{'categorycode'} );
606 if ( $op eq "duplicate" ) {
607 $template->param( updtype => 'I' );
608 $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;
609 $data{'cardnumber'} = "";
612 if(!defined($data{'sex'})){
613 $template->param( none => 1);
614 } elsif($data{'sex'} eq 'F'){
615 $template->param( female => 1);
616 } elsif ($data{'sex'} eq 'M'){
617 $template->param( male => 1);
618 } else {
619 $template->param( none => 1);
622 ##Now all the data to modify a member.
624 my @typeloop;
625 my $no_categories = 1;
626 my $no_add;
627 foreach my $category_type (qw(C A S P I X)) {
628 my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => $category_type }, {order_by => ['categorycode']});
629 $no_categories = 0 if $patron_categories->count > 0;
631 my @categoryloop;
632 while ( my $patron_category = $patron_categories->next ) {
633 push @categoryloop,
634 { 'categorycode' => $patron_category->categorycode,
635 'categoryname' => $patron_category->description,
636 'categorycodeselected' =>
637 ( defined($categorycode) && $patron_category->categorycode eq $categorycode ),
640 my %typehash;
641 $typehash{'typename'} = $category_type;
642 my $typedescription = "typename_" . $typehash{'typename'};
643 $typehash{'categoryloop'} = \@categoryloop;
644 push @typeloop,
645 { 'typename' => $category_type,
646 $typedescription => 1,
647 'categoryloop' => \@categoryloop
650 $template->param(
651 typeloop => \@typeloop,
652 no_categories => $no_categories,
655 my $cities = Koha::Cities->search( {}, { order_by => 'city_name' } );
656 my $roadtypes = C4::Koha::GetAuthorisedValues( 'ROADTYPE' );
657 $template->param(
658 roadtypes => $roadtypes,
659 cities => $cities,
662 my $default_borrowertitle = '';
663 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
665 my @relationships = split /,|\|/, C4::Context->preference('borrowerRelationship');
666 my @relshipdata;
667 while (@relationships) {
668 my $relship = shift @relationships || '';
669 my %row = ('relationship' => $relship);
670 if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
671 $row{'selected'}=' selected';
672 } else {
673 $row{'selected'}='';
675 push(@relshipdata, \%row);
678 my %flags = (
679 'gonenoaddress' => ['gonenoaddress'],
680 'lost' => ['lost']
683 my @flagdata;
684 foreach ( keys(%flags) ) {
685 my $key = $_;
686 my %row = (
687 'key' => $key,
688 'name' => $flags{$key}[0]
690 if ( $data{$key} ) {
691 $row{'yes'} = ' checked';
692 $row{'no'} = '';
694 else {
695 $row{'yes'} = '';
696 $row{'no'} = ' checked';
698 push @flagdata, \%row;
701 # get Branch Loop
702 # in modify mod: userbranch value comes from borrowers table
703 # in add mod: userbranch value comes from branches table (ip correspondence)
705 my $userbranch = '';
706 if (C4::Context->userenv && C4::Context->userenv->{'branch'}) {
707 $userbranch = C4::Context->userenv->{'branch'};
710 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) {
711 $userbranch = $data{'branchcode'};
713 $template->param( userbranch => $userbranch );
715 if ( Koha::Libraries->search->count < 1 ){
716 $no_add = 1;
717 $template->param(no_branches => 1);
719 if($no_categories){
720 $no_add = 1;
721 $template->param(no_categories => 1);
723 $template->param(no_add => $no_add);
724 # --------------------------------------------------------------------------------------------------------
726 $template->param( sort1 => $data{'sort1'});
727 $template->param( sort2 => $data{'sort2'});
729 if ($nok) {
730 foreach my $error (@errors) {
731 $template->param($error) || $template->param( $error => 1);
733 $template->param(nok => 1);
736 #Formatting data for display
738 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
739 $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
741 if ( $op eq 'duplicate' ) {
742 $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
743 my $patron_category = Koha::Patron::Categories->find( $data{categorycode} );
744 $data{dateexpiry} = $patron_category->get_expiry_date( $data{dateenrolled} );
746 if (C4::Context->preference('uppercasesurnames')) {
747 $data{'surname'} &&= uc( $data{'surname'} );
748 $data{'contactname'} &&= uc( $data{'contactname'} );
751 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
752 if ( $data{$_} ) {
753 $data{$_} = eval { output_pref({ dt => dt_from_string( $data{$_} ), dateonly => 1 } ); }; # back to syspref for display
755 $template->param( $_ => $data{$_});
758 if (C4::Context->preference('ExtendedPatronAttributes')) {
759 patron_attributes_form($template, $borrowernumber, $op);
762 if (C4::Context->preference('EnhancedMessagingPreferences')) {
763 if ($op eq 'add') {
764 C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
765 } else {
766 C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
768 $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
769 $template->param(SMSnumber => $data{'smsalertnumber'} );
770 $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
773 $template->param( "show_guarantor" => ( $category_type =~ /A|I|S|X/ ) ? 0 : 1 ); # associate with step to know where you are
774 $debug and warn "memberentry step: $step";
775 $template->param(%data);
776 $template->param( "step_$step" => 1) if $step; # associate with step to know where u are
777 $template->param( step => $step ) if $step; # associate with step to know where u are
779 $template->param(
780 BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
781 category_type => $category_type,#to know the category type of the borrower
782 "$category_type" => 1,# associate with step to know where u are
783 destination => $destination,#to know wher u come from and wher u must go in redirect
784 check_member => $check_member,#to know if the borrower already exist(=>1) or not (=>0)
785 "op$op" => 1);
787 $template->param(
788 patron => $patron ? $patron : \%newdata, # Used by address include templates now
789 nodouble => $nodouble,
790 borrowernumber => $borrowernumber, #register number
791 relshiploop => \@relshipdata,
792 btitle=> $default_borrowertitle,
793 flagloop => \@flagdata,
794 category_type =>$category_type,
795 modify => $modify,
796 nok => $nok,#flag to know if an error
797 NoUpdateLogin => $NoUpdateLogin,
800 # Generate CSRF token
801 $template->param( csrf_token =>
802 Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID'), } ),
805 # HouseboundModule data
806 $template->param(
807 housebound_role => Koha::Patron::HouseboundRoles->find($borrowernumber),
810 if(defined($data{'flags'})){
811 $template->param(flags=>$data{'flags'});
813 if(defined($data{'contacttitle'})){
814 $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
818 my ( $min, $max ) = C4::Members::get_cardnumber_length();
819 if ( defined $min ) {
820 $template->param(
821 minlength_cardnumber => $min,
822 maxlength_cardnumber => $max
826 if ( C4::Context->preference('TranslateNotices') ) {
827 my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') );
828 $template->param( languages => $translated_languages );
831 output_html_with_http_headers $input, $cookie, $template->output;
833 sub parse_extended_patron_attributes {
834 my ($input) = @_;
835 my @patron_attr = grep { /^patron_attr_\d+$/ } $input->multi_param();
837 my @attr = ();
838 my %dups = ();
839 foreach my $key (@patron_attr) {
840 my $value = $input->param($key);
841 next unless defined($value) and $value ne '';
842 my $code = $input->param("${key}_code");
843 next if exists $dups{$code}->{$value};
844 $dups{$code}->{$value} = 1;
845 push @attr, { code => $code, value => $value };
847 return \@attr;
850 sub patron_attributes_form {
851 my $template = shift;
852 my $borrowernumber = shift;
853 my $op = shift;
855 my @types = C4::Members::AttributeTypes::GetAttributeTypes();
856 if (scalar(@types) == 0) {
857 $template->param(no_patron_attribute_types => 1);
858 return;
860 my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber);
861 my @classes = uniq( map {$_->{class}} @$attributes );
862 @classes = sort @classes;
864 # map patron's attributes into a more convenient structure
865 my %attr_hash = ();
866 foreach my $attr (@$attributes) {
867 push @{ $attr_hash{$attr->{code}} }, $attr;
870 my @attribute_loop = ();
871 my $i = 0;
872 my %items_by_class;
873 foreach my $type_code (map { $_->{code} } @types) {
874 my $attr_type = C4::Members::AttributeTypes->fetch($type_code);
875 my $entry = {
876 class => $attr_type->class(),
877 code => $attr_type->code(),
878 description => $attr_type->description(),
879 repeatable => $attr_type->repeatable(),
880 category => $attr_type->authorised_value_category(),
881 category_code => $attr_type->category_code(),
883 if (exists $attr_hash{$attr_type->code()}) {
884 foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
885 my $newentry = { %$entry };
886 $newentry->{value} = $attr->{value};
887 $newentry->{use_dropdown} = 0;
888 if ($attr_type->authorised_value_category()) {
889 $newentry->{use_dropdown} = 1;
890 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{value});
892 $i++;
893 undef $newentry->{value} if ($attr_type->unique_id() && $op eq 'duplicate');
894 $newentry->{form_id} = "patron_attr_$i";
895 push @{$items_by_class{$attr_type->class()}}, $newentry;
897 } else {
898 $i++;
899 my $newentry = { %$entry };
900 if ($attr_type->authorised_value_category()) {
901 $newentry->{use_dropdown} = 1;
902 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
904 $newentry->{form_id} = "patron_attr_$i";
905 push @{$items_by_class{$attr_type->class()}}, $newentry;
908 while ( my ($class, @items) = each %items_by_class ) {
909 my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
910 my $lib = $av->count ? $av->next->lib : $class;
911 push @attribute_loop, {
912 class => $class,
913 items => @items,
914 lib => $lib,
918 $template->param(patron_attributes => \@attribute_loop);
922 sub add_guarantors {
923 my ( $patron, $input ) = @_;
925 my @new_guarantor_id = $input->multi_param('new_guarantor_id');
926 my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
928 for ( my $i = 0 ; $i < scalar @new_guarantor_id; $i++ ) {
929 my $guarantor_id = $new_guarantor_id[$i];
930 my $relationship = $new_guarantor_relationship[$i];
932 next unless $guarantor_id;
934 $patron->add_guarantor(
936 guarantor_id => $guarantor_id,
937 relationship => $relationship,
943 # Local Variables:
944 # tab-width: 8
945 # End: