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>.
27 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
28 template_name
=> "acqui/csv/lateorders.tt",
32 flagsrequired
=> {acquisition
=> 'order_receive'},
34 my @ordernumbers = $input->param('ordernumber');
37 for my $ordernumber ( @ordernumbers ) {
38 my $order = GetOrder
$ordernumber;
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
},
62 -attachment
=> 'lateorders.csv',
64 $template->param( orders
=> \
@orders );
65 print $template->output;