3 #script to administer the categories table
4 #written 20/02/2002 by paul.poulain@free.fr
7 # this script use an $op to know what to do.
8 # if $op is empty or none of the above values,
9 # - the default screen is build (with all records, or filtered datas).
10 # - the user can clic on add, modify or delete record.
12 # - if primkey exists, this is a modification,so we read the $primkey record
13 # - builds the add/modify form
15 # - the user has just send datas, so we create/modify the record
17 # - we show the record having primkey=$primkey and ask for deletion validation form
18 # if $op=delete_confirm
19 # - we delete the record having primkey=$primkey
22 # Copyright 2000-2002 Katipo Communications
24 # This file is part of Koha.
26 # Koha is free software; you can redistribute it and/or modify it under the
27 # terms of the GNU General Public License as published by the Free Software
28 # Foundation; either version 2 of the License, or (at your option) any later
31 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
32 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
33 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
35 # You should have received a copy of the GNU General Public License along
36 # with Koha; if not, write to the Free Software Foundation, Inc.,
37 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
40 #use warnings; FIXME - Bug 2505
46 use C4
::Form
::MessagingPreferences
;
49 my ($searchstring,$type)=@_;
50 my $dbh = C4
::Context
->dbh;
51 $searchstring=~ s/\'/\\\'/g;
52 my @data=split(' ',$searchstring);
54 my $sth=$dbh->prepare("Select * from categories where (description like ?) order by category_type,description,categorycode");
55 $sth->execute("$data[0]%");
57 while (my $data=$sth->fetchrow_hashref){
62 return (scalar(@results),\
@results);
66 my $searchfield=$input->param('description');
67 my $script_name="/cgi-bin/koha/admin/categorie.pl";
68 my $categorycode=$input->param('categorycode');
69 my $op = $input->param('op');
71 my ($template, $loggedinuser, $cookie)
72 = get_template_and_user
({template_name
=> "admin/categorie.tmpl",
76 flagsrequired
=> {parameters
=> 1},
81 $template->param(script_name
=> $script_name,
82 categorycode
=> $categorycode,
83 searchfield
=> $searchfield);
86 ################## ADD_FORM ##################################
87 # called by default. Used to create form to add or modify a record
88 if ($op eq 'add_form') {
89 $template->param(add_form
=> 1);
91 #---- if primkey exists, it's a modify action, so read values to modify...
94 my $dbh = C4
::Context
->dbh;
95 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
96 $sth->execute($categorycode);
97 $data=$sth->fetchrow_hashref;
101 $data->{'enrolmentperioddate'} = undef if ($data->{'enrolmentperioddate'} eq '0000-00-00');
103 $template->param(description
=> $data->{'description'},
104 enrolmentperiod
=> $data->{'enrolmentperiod'},
105 enrolmentperioddate
=> C4
::Dates
::format_date
($data->{'enrolmentperioddate'}),
106 upperagelimit
=> $data->{'upperagelimit'},
107 dateofbirthrequired
=> $data->{'dateofbirthrequired'},
108 enrolmentfee
=> sprintf("%.2f",$data->{'enrolmentfee'}),
109 overduenoticerequired
=> $data->{'overduenoticerequired'},
110 issuelimit
=> $data->{'issuelimit'},
111 reservefee
=> sprintf("%.2f",$data->{'reservefee'}),
112 category_type
=> $data->{'category_type'},
113 DHTMLcalendar_dateformat
=> C4
::Dates
->DHTMLcalendar(),
114 "type_".$data->{'category_type'} => 1,
116 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
117 C4
::Form
::MessagingPreferences
::set_form_values
({ categorycode
=> $categorycode } , $template);
119 # END $OP eq ADD_FORM
120 ################## ADD_VALIDATE ##################################
121 # called by add_form, used to insert/modify data in DB
122 } elsif ($op eq 'add_validate') {
123 $template->param(add_validate
=> 1);
124 my $is_a_modif = $input->param("is_a_modif");
125 my $dbh = C4
::Context
->dbh;
126 if($input->param('enrolmentperioddate')){
127 $input->param('enrolmentperioddate' => C4
::Dates
::format_date_in_iso
($input->param('enrolmentperioddate')) );
131 my $sth=$dbh->prepare("UPDATE categories SET description=?,enrolmentperiod=?, enrolmentperioddate=?,upperagelimit=?,dateofbirthrequired=?,enrolmentfee=?,reservefee=?,overduenoticerequired=?,category_type=? WHERE categorycode=?");
132 $sth->execute(map { $input->param($_) } ('description','enrolmentperiod','enrolmentperioddate','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type','categorycode'));
135 my $sth=$dbh->prepare("INSERT INTO categories (categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,overduenoticerequired,category_type) values (?,?,?,?,?,?,?,?,?,?)");
136 $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','enrolmentperioddate','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','overduenoticerequired','category_type'));
139 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
140 C4
::Form
::MessagingPreferences
::handle_form_action
($input,
141 { categorycode
=> $input->param('categorycode') }, $template);
143 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
146 # END $OP eq ADD_VALIDATE
147 ################## DELETE_CONFIRM ##################################
148 # called by default form, used to confirm deletion of data in DB
149 } elsif ($op eq 'delete_confirm') {
150 $template->param(delete_confirm
=> 1);
152 my $dbh = C4
::Context
->dbh;
153 my $sth=$dbh->prepare("select count(*) as total from borrowers where categorycode=?");
154 $sth->execute($categorycode);
155 my $total = $sth->fetchrow_hashref;
157 $template->param(total
=> $total->{'total'});
159 my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,overduenoticerequired,category_type from categories where categorycode=?");
160 $sth2->execute($categorycode);
161 my $data=$sth2->fetchrow_hashref;
163 if ($total->{'total'} >0) {
164 $template->param(totalgtzero
=> 1);
167 $template->param( description
=> $data->{'description'},
168 enrolmentperiod
=> $data->{'enrolmentperiod'},
169 enrolmentperioddate
=> C4
::Dates
::format_date
($data->{'enrolmentperioddate'}),
170 upperagelimit
=> $data->{'upperagelimit'},
171 dateofbirthrequired
=> $data->{'dateofbirthrequired'},
172 enrolmentfee
=> sprintf("%.2f",$data->{'enrolmentfee'}),
173 overduenoticerequired
=> $data->{'overduenoticerequired'},
174 issuelimit
=> $data->{'issuelimit'},
175 reservefee
=> sprintf("%.2f",$data->{'reservefee'}),
176 category_type
=> $data->{'category_type'},
178 # END $OP eq DELETE_CONFIRM
179 ################## DELETE_CONFIRMED ##################################
180 # called by delete_confirm, used to effectively confirm deletion of data in DB
181 } elsif ($op eq 'delete_confirmed') {
182 $template->param(delete_confirmed
=> 1);
183 my $dbh = C4
::Context
->dbh;
184 my $categorycode=uc($input->param('categorycode'));
185 my $sth=$dbh->prepare("delete from categories where categorycode=?");
186 $sth->execute($categorycode);
188 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
191 # END $OP eq DELETE_CONFIRMED
193 $template->param(else => 1);
195 my ($count,$results)=StringSearch
($searchfield,'web');
196 for (my $i=0; $i < $count; $i++){
198 categorycode
=> $results->[$i]{'categorycode'},
199 description
=> $results->[$i]{'description'},
200 enrolmentperiod
=> $results->[$i]{'enrolmentperiod'},
201 enrolmentperioddate
=> C4
::Dates
::format_date
($results->[$i]{'enrolmentperioddate'}),
202 upperagelimit
=> $results->[$i]{'upperagelimit'},
203 dateofbirthrequired
=> $results->[$i]{'dateofbirthrequired'},
204 enrolmentfee
=> sprintf("%.2f",$results->[$i]{'enrolmentfee'}),
205 overduenoticerequired
=> $results->[$i]{'overduenoticerequired'},
206 issuelimit
=> $results->[$i]{'issuelimit'},
207 reservefee
=> sprintf("%.2f",$results->[$i]{'reservefee'}),
208 category_type
=> $results->[$i]{'category_type'},
209 "type_".$results->[$i]{'category_type'} => 1);
210 if (C4
::Context
->preference('EnhancedMessagingPreferences')) {
211 my $brief_prefs = _get_brief_messaging_prefs
($results->[$i]{'categorycode'});
212 $row{messaging_prefs
} = $brief_prefs if @
$brief_prefs;
216 $template->param(loop => \
@loop);
217 # check that I (institution) and C (child) exists. otherwise => warning to the user
218 my $dbh = C4
::Context
->dbh;
219 my $sth=$dbh->prepare("select category_type from categories where category_type='C'");
221 my ($categoryChild) = $sth->fetchrow;
222 $template->param(categoryChild
=> $categoryChild);
223 $sth=$dbh->prepare("select category_type from categories where category_type='I'");
225 my ($categoryInstitution) = $sth->fetchrow;
226 $template->param(categoryInstitution
=> $categoryInstitution);
230 } #---- END $OP eq DEFAULT
231 output_html_with_http_headers
$input, $cookie, $template->output;
235 sub _get_brief_messaging_prefs
{
236 my $categorycode = shift;
237 my $messaging_options = C4
::Members
::Messaging
::GetMessagingOptions
();
239 PREF
: foreach my $option ( @
$messaging_options ) {
240 my $pref = C4
::Members
::Messaging
::GetMessagingPreferences
( { categorycode
=> $categorycode,
241 message_name
=> $option->{'message_name'} } );
242 next unless @
{$pref->{'transports'}};
243 my $brief_pref = { message_attribute_id
=> $option->{'message_attribute_id'},
244 message_name
=> $option->{'message_name'},
246 foreach my $transport ( @
{$pref->{'transports'}} ) {
247 push @
{ $brief_pref->{'transports'} }, { transport
=> $transport };
249 push @
$results, $brief_pref;