Bug 14251: Allow use of CSS in discharge letter
[koha-ffzg.git] / acqui / check_budget_total.pl
index c45360e..46379fa 100755 (executable)
@@ -20,9 +20,9 @@
 use Modern::Perl;
 use CGI qw ( -utf8 );
 use C4::Context;
-use C4::Output;
-use C4::Auth;
-use C4::Budgets;
+use C4::Output qw( output_html_with_http_headers );
+use C4::Auth qw( get_template_and_user );
+use C4::Budgets qw( GetBudget );
 
 =head1 DESCRIPTION
 
@@ -30,7 +30,7 @@ fetches the budget amount fron the DB
 
 =cut
 
-my $input = new CGI;
+my $input = CGI->new;
 my $budget_id = $input->param('budget_id');
 my $total   = $input->param('total');
 
@@ -38,7 +38,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     {   template_name   => "acqui/ajax.tt",
         query           => $input,
         type            => "intranet",
-        debug => 1,    } );
+} );
 
 my $budget = GetBudget($budget_id);