3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
25 this script shows late orders for a specific supplier, branch and delay
33 To know on which supplier this script have to display late order.
36 To know the time boundary. Default value is 30 days.
39 To know on which branch this script have to display late order.
48 use C4
::Bookseller
qw( GetBooksellersWithLateOrders );
55 use C4
::Branch
; # GetBranches
58 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
59 template_name
=> "acqui/lateorders.tmpl",
63 flagsrequired
=> {acquisition
=> 'order_receive'},
67 my $supplierid = $input->param('supplierid') || undef; # we don't want "" or 0
68 my $delay = $input->param('delay');
69 my $branch = $input->param('branch');
70 my $op = $input->param('op');
73 $delay = 30 unless defined $delay;
74 unless ($delay =~ /^\d{1,3}$/) {
75 push @errors, {delay_digits
=> 1, bad_delay
=> $delay};
76 $delay = 30; #default value for delay
79 my %supplierlist = GetBooksellersWithLateOrders
($delay);
80 my (@sloopy); # supplier loop
81 foreach (keys %supplierlist){
82 push @sloopy, (($supplierid and $supplierid eq $_ ) ?
83 {id
=>$_, name
=>$supplierlist{$_}, selected
=>1} :
84 {id
=>$_, name
=>$supplierlist{$_}} ) ;
86 $template->param(SUPPLIER_LOOP
=> \
@sloopy);
87 $template->param(Supplier
=>$supplierlist{$supplierid}) if ($supplierid);
89 my @lateorders = GetLateOrders
($delay,$supplierid,$branch);
92 foreach (@lateorders){
93 $total += $_->{subtotal
};
97 my $letters=GetLetters
("claimacquisition");
98 foreach (keys %$letters){
99 push @letters, {code
=>$_,name
=>$letters->{$_}};
101 $template->param(letters
=>\
@letters) if (@letters);
103 if ($op and $op eq "send_alert"){
104 my @ordernums = $input->param("claim_for"); # FIXME: Fallback values?
105 SendAlerts
('claimacquisition',\
@ordernums,$input->param("letter_code")); # FIXME: Fallback value?
108 $template->param(ERROR_LOOP
=> \
@errors) if (@errors);
110 lateorders
=> \
@lateorders,
113 intranetcolorstylesheet
=> C4
::Context
->preference("intranetcolorstylesheet"),
115 output_html_with_http_headers
$input, $cookie, $template->output;