Bug 16699: Remove requirement from borrowernumberQueryParam
[koha.git] / acqui / lateorders-export.pl
blobc8d86e6be4474e744994f46d38a7003d2224e0fb
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
19 use CGI qw ( -utf8 );
21 use C4::Auth;
22 use C4::Acquisition;
23 use C4::Output;
24 use C4::Context;
26 my $input = new CGI;
27 my ($template, $loggedinuser, $cookie) = get_template_and_user({
28 template_name => "acqui/csv/lateorders.tt",
29 query => $input,
30 type => "intranet",
31 authnotrequired => 0,
32 flagsrequired => {acquisition => 'order_receive'},
33 });
34 my @ordernumbers = $input->multi_param('ordernumber');
36 my @orders;
37 for my $ordernumber ( @ordernumbers ) {
38 my $order = GetOrder $ordernumber;
39 push @orders, {
40 orderdate => $order->{orderdate},
41 latesince => $order->{latesince},
42 estimateddeliverydate => $order->{estimateddeliverydate},
43 supplier => $order->{supplier},
44 supplierid => $order->{supplierid},
45 title => $order->{title},
46 author => $order->{author},
47 publisher => $order->{publisher},
48 unitpricesupplier => $order->{unitpricesupplier},
49 quantity_to_receive => $order->{quantity_to_receive},
50 subtotal => $order->{subtotal},
51 budget => $order->{budget},
52 basketname => $order->{basketname},
53 basketno => $order->{basketno},
54 claims_count => $order->{claims_count},
55 claimed_date => $order->{claimed_date},
60 print $input->header(
61 -type => 'text/csv',
62 -attachment => 'lateorders.csv',
64 $template->param( orders => \@orders );
65 for my $line ( split '\n', $template->output ) {
66 print "$line\n" unless $line =~ m|^\s*$|;