Bug 18817: Update links manually
[koha.git] / members / update-child.pl
blobbedf9b5fb385ef190195d85ad15a0808933d464d
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 strict;
30 #use warnings; FIXME - Bug 2505
31 use CGI qw ( -utf8 );
32 use C4::Context;
33 use C4::Auth;
34 use C4::Output;
35 use C4::Members;
36 use Koha::Patrons;
37 use Koha::Patron::Categories;
39 # use Smart::Comments;
41 my $dbh = C4::Context->dbh;
42 my $input = new CGI;
44 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
46 template_name => "members/update-child.tt",
47 query => $input,
48 type => "intranet",
49 authnotrequired => 0,
50 flagsrequired => { borrowers => 1 },
51 debug => 1,
55 my $borrowernumber = $input->param('borrowernumber');
56 my $catcode = $input->param('catcode');
57 my $cattype = $input->param('cattype');
58 my $catcode_multi = $input->param('catcode_multi');
59 my $op = $input->param('op');
61 if ( $op eq 'multi' ) {
62 # FIXME - what are the possible upgrade paths? C -> A , C -> S ...
63 # currently just allowing C -> A
64 my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
65 $template->param(
66 MULTI => 1,
67 CATCODE_MULTI => 1,
68 borrowernumber => $borrowernumber,
69 patron_categories => $patron_categories,
71 output_html_with_http_headers $input, $cookie, $template->output;
74 elsif ( $op eq 'update' ) {
75 my $patron = Koha::Patrons->find( $borrowernumber );
76 my $member = $patron->unblessed;
77 $member->{'guarantorid'} = 0;
78 $member->{'categorycode'} = $catcode;
79 my $borcat = Koha::Patron::Categories->find($catcode);
80 $member->{'category_type'} = $borcat->category_type;
81 $member->{'description'} = $borcat->description;
82 delete $member->{password};
83 ModMember(%$member);
85 if ( $catcode_multi ) {
86 $template->param(
87 SUCCESS => 1,
88 borrowernumber => $borrowernumber,
90 output_html_with_http_headers $input, $cookie, $template->output;
91 } else {
92 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");