some (minor, functionnaly speaking) bugfixes
[koha.git] / acqui / lateorders.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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
8 # version.
9 #
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.
13 #
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
17
18 # $Id$
19
20 =head1 NAME
21
22 lateorders.pl
23
24 =head1 DESCRIPTION
25
26 this script shows late orders for a specific supplier, branch and delay
27 given on input arg.
28
29 =head1 CGI PARAMETERS
30
31 =over 4
32
33 =item supplierid
34 To know on which supplier this script have to display late order.
35
36 =item delay
37 To know the time boundary. Default value is 30 days.
38
39 =item branch
40 To know on which branch this script have to display late order.
41
42 =back
43
44 =cut
45
46 use strict;
47 use CGI;
48 use C4::Bookseller;
49 use C4::Auth;
50 use C4::Koha;
51 use C4::Output;
52 use C4::Context;
53 use C4::Acquisition;
54 use C4::Letters;
55 use C4::Branch; # GetBranches
56
57 my $input = new CGI;
58 my ($template, $loggedinuser, $cookie)
59 = get_template_and_user(
60                 {template_name => "acqui/lateorders.tmpl",
61                                 query => $input,
62                                 type => "intranet",
63                                 authnotrequired => 0,
64                                 flagsrequired => {acquisition => 1},
65                                 debug => 1,
66                                 });
67
68 my $supplierid = $input->param('supplierid');
69 my $delay = $input->param('delay');
70 my $branch = $input->param('branch');
71
72 #default value for delay
73 $delay = 30 unless $delay;
74
75 my %supplierlist = GetBooksellersWithLateOrders($delay,$branch);
76 my @select_supplier;
77 push @select_supplier,"";
78 foreach my $supplierid (keys %supplierlist){
79         push @select_supplier, $supplierid;
80 }
81
82 my $CGIsupplier=CGI::scrolling_list( -name     => 'supplierid',
83                         -values   => \@select_supplier,
84                         -default  => $supplierid,
85                         -labels   => \%supplierlist,
86                         -size     => 1,
87                         -tabindex=>'',
88                         -multiple => 0 );
89
90 $template->param(Supplier=>$supplierlist{$supplierid}) if ($supplierid);
91
92 my @lateorders = GetLateOrders($delay,$supplierid,$branch);
93 my $count = scalar @lateorders;
94
95 my $total;
96 foreach my $lateorder (@lateorders){
97         $total+=$lateorder->{subtotal};
98 }
99
100 my @letters;
101 my $letters=GetLetters("claimacquisition");
102 foreach (keys %$letters){
103  push @letters ,{code=>$_,name=>$letters->{$_}};
104 }
105
106 $template->param(letters=>\@letters) if (@letters);
107 my $op=$input->param("op");
108 if ($op eq "send_alert"){
109   my @ordernums=$input->param("claim_for");
110   SendAlerts('claimacquisition',\@ordernums,$input->param("letter_code"));
111 }
112
113 $template->param(delay=>$delay) if ($delay);
114 $template->param(
115         CGIsupplier => $CGIsupplier,
116         lateorders => \@lateorders,
117         total=>$total,
118         intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
119         );
120 output_html_with_http_headers $input, $cookie, $template->output;