3 # Copyright 2008-2009 BibLibre SARL
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #use warnings; FIXME - Bug 2505
36 my $budget_id = $input->param('budget_id');
37 my $sort_id = $input->param('sort');
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
40 { template_name
=> "acqui/ajax.tmpl", # FIXME: REMOVE TMPL DEP?
44 flagsrequired
=> {editcatalogue
=> 'edit_catalogue'},
50 my $budget = GetBudget
($budget_id);
52 if ( $sort_id == 1 ) {
53 $sort_dropbox = GetAuthvalueDropbox
( 'sort1', $budget->{'sort1_authcat'}, '' );
54 } elsif ( $sort_id == 2 ) {
55 $sort_dropbox = GetAuthvalueDropbox
( 'sort2', $budget->{'sort2_authcat'}, '' );
58 #strip off select tags ;/
59 $sort_dropbox =~ s/^\<select.*?\"\>//;
60 $sort_dropbox =~ s/\<\/select\>$//;
63 $template->param( return => $sort_dropbox );
64 output_html_with_http_headers
$input, $cookie, $template->output;