Merge remote-tracking branch 'kc/new/bug_5860' into kcmaster
[koha.git] / acqui / fetch_sort_dropbox.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008-2009 BibLibre SARL
4 #
5 # This file is part of Koha.
6 #
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
10 # version.
11 #
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.
15 #
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.
19
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use CGI;
23 use C4::Context;
24 use C4::Output;
25 use C4::Auth;
26 use C4::Budgets;
27
28 =head1 NAME
29
30 fetch_sort_dropbox
31
32 =cut
33
34 my $input = new CGI;
35
36 my $budget_id = $input->param('budget_id');
37 my $sort_id   = $input->param('sort');
38
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40     {   template_name   => "acqui/ajax.tmpl", # FIXME: REMOVE TMPL DEP?
41         query           => $input,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired => {editcatalogue => 'edit_catalogue'},
45         debug => 0,
46     }
47 );
48
49 my $sort_dropbox;
50 my $budget = GetBudget($budget_id);
51
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'}, '' );
56 }
57
58 #strip off select tags ;/
59 $sort_dropbox =~ s/^\<select.*?\"\>//;
60 $sort_dropbox =~ s/\<\/select\>$//;
61 chomp $sort_dropbox;
62
63 $template->param( return => $sort_dropbox );
64 output_html_with_http_headers $input, $cookie, $template->output;
65 1;