Bug 30572: Dbrev for search_marc_to_field.sort
[koha-ffzg.git] / acqui / parcels.pl
index 139cc0b..cd6e256 100755 (executable)
@@ -68,11 +68,11 @@ To know how many results have to be display / page.
 
 use Modern::Perl;
 use CGI qw ( -utf8 );
-use C4::Auth;
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_html_with_http_headers );
 
-use C4::Acquisition;
-use C4::Budgets;
+use C4::Acquisition qw( GetInvoices GetInvoice AddInvoice );
+use C4::Budgets qw( GetBudgetHierarchy GetBudget CanUserUseBudget );
 
 use Koha::Acquisition::Booksellers;
 use Koha::DateUtils qw( output_pref dt_from_string );
@@ -93,7 +93,6 @@ our ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
         query           => $input,
         type            => 'intranet',
         flagsrequired   => { acquisition => 'order_receive' },
-        debug           => 1,
     }
 );