Bug 20047: (follow-up) Retrieve only biblio/authority servers as appropriate
[koha.git] / members / update-child.pl
blobcc942e270463bd428197750df37d5e15015e29ef
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 =head1 updatechild.pl
22 script to update a child member to (usually) an adult member category
24 - if called with op=multi, will return all available non child categories, for selection.
25 - if called with op=update, script will update member record via ModMember().
27 =cut
29 use Modern::Perl;
30 use CGI qw ( -utf8 );
31 use C4::Context;
32 use C4::Auth;
33 use C4::Output;
34 use C4::Members;
35 use Koha::Patrons;
36 use Koha::Patron::Categories;
38 # use Smart::Comments;
40 my $dbh = C4::Context->dbh;
41 my $input = new CGI;
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
45 template_name => "members/update-child.tt",
46 query => $input,
47 type => "intranet",
48 authnotrequired => 0,
49 flagsrequired => { borrowers => 'edit_borrowers' },
50 debug => 1,
54 my $borrowernumber = $input->param('borrowernumber');
55 my $catcode = $input->param('catcode');
56 my $cattype = $input->param('cattype');
57 my $catcode_multi = $input->param('catcode_multi');
58 my $op = $input->param('op');
60 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
62 if ( $op eq 'multi' ) {
63 # FIXME - what are the possible upgrade paths? C -> A , C -> S ...
64 # currently just allowing C -> A
65 my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
66 $template->param(
67 MULTI => 1,
68 CATCODE_MULTI => 1,
69 borrowernumber => $borrowernumber,
70 patron_categories => $patron_categories,
72 output_html_with_http_headers $input, $cookie, $template->output;
75 elsif ( $op eq 'update' ) {
76 my $patron = Koha::Patrons->find( $borrowernumber );
77 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
79 my $member = $patron->unblessed;
80 $member->{'guarantorid'} = 0;
81 $member->{'categorycode'} = $catcode;
82 my $borcat = Koha::Patron::Categories->find($catcode);
83 $member->{'category_type'} = $borcat->category_type;
84 $member->{'description'} = $borcat->description;
85 delete $member->{password};
86 ModMember(%$member);
88 if ( $catcode_multi ) {
89 $template->param(
90 SUCCESS => 1,
91 borrowernumber => $borrowernumber,
93 output_html_with_http_headers $input, $cookie, $template->output;
94 } else {
95 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");