Merge remote-tracking branch 'origin/new/bug_7284'
[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
19 =head1 NAME
20
21 lateorders.pl
22
23 =head1 DESCRIPTION
24
25 this script shows late orders for a specific supplier, branch and delay
26 given on input arg.
27
28 =head1 CGI PARAMETERS
29
30 =over 4
31
32 =item booksellerid
33 To know on which supplier this script have to display late order.
34
35 =item delay
36 To know the time boundary. Default value is 30 days.
37
38 =item branch
39 To know on which branch this script have to display late order.
40
41 =back
42
43 =cut
44
45 use strict;
46 use warnings;
47 use CGI;
48 use C4::Bookseller qw( GetBooksellersWithLateOrders );
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) = get_template_and_user({
59         template_name => "acqui/lateorders.tmpl",
60         query => $input,
61          type => "intranet",
62         authnotrequired => 0,
63         flagsrequired => {acquisition => 'order_receive'},
64         debug => 1,
65 });
66
67 my $booksellerid = $input->param('booksellerid') || undef; # we don't want "" or 0
68 my $delay      = $input->param('delay');
69 my $estimateddeliverydatefrom = $input->param('estimateddeliverydatefrom');
70 my $estimateddeliverydateto   = $input->param('estimateddeliverydateto');
71 my $branch     = $input->param('branch');
72 my $op         = $input->param('op');
73
74 my @errors = ();
75 if ( defined $delay and not $delay =~ /^\d{1,3}$/ ) {
76     push @errors, {delay_digits => 1, bad_delay => $delay};
77 }
78
79 if ($op and $op eq "send_alert"){
80     my @ordernums = $input->param("claim_for");# FIXME: Fallback values?
81     my $err;
82     eval {
83         $err = SendAlerts( 'claimacquisition', \@ordernums, $input->param("letter_code") );    # FIXME: Fallback value?
84         AddClaim ( $_ ) for @ordernums;
85     };
86     if ( $@ ) {
87         $template->param(error_claim => $@);
88     } elsif ( defined $err->{error} and $err->{error} eq "no_email" ) {
89         $template->{VARS}->{'error_claim'} = "no_email";
90     } else {
91         $template->{VARS}->{'info_claim'} = 1;
92     }
93 }
94
95 my %supplierlist = GetBooksellersWithLateOrders(
96     $delay,
97     $branch,
98     C4::Dates->new($estimateddeliverydatefrom)->output("iso"),
99     C4::Dates->new($estimateddeliverydateto)->output("iso")
100 );
101
102 my (@sloopy);   # supplier loop
103 foreach (keys %supplierlist){
104         push @sloopy, (($booksellerid and $booksellerid eq $_ )            ?
105                                         {id=>$_, name=>$supplierlist{$_}, selected=>1} :
106                                         {id=>$_, name=>$supplierlist{$_}} )            ;
107 }
108 $template->param(SUPPLIER_LOOP => \@sloopy);
109
110 $template->param(Supplier=>$supplierlist{$booksellerid}) if ($booksellerid);
111 $template->param(booksellerid=>$booksellerid) if ($booksellerid);
112
113 my @lateorders = GetLateOrders(
114     $delay,
115     $booksellerid,
116     $branch,
117     C4::Dates->new($estimateddeliverydatefrom)->output("iso"),
118     C4::Dates->new($estimateddeliverydateto)->output("iso")
119 );
120
121 my $total;
122 foreach (@lateorders){
123         $total += $_->{subtotal};
124 }
125
126 my @letters;
127 my $letters=GetLetters("claimacquisition");
128 foreach (keys %$letters){
129         push @letters, {code=>$_,name=>$letters->{$_}};
130 }
131 $template->param(letters=>\@letters) if (@letters);
132
133 $template->param(ERROR_LOOP => \@errors) if (@errors);
134 $template->param(
135         lateorders => \@lateorders,
136         delay => $delay,
137     estimateddeliverydatefrom => $estimateddeliverydatefrom,
138     estimateddeliverydateto   => $estimateddeliverydateto,
139         total => $total,
140         intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
141     DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
142 );
143 output_html_with_http_headers $input, $cookie, $template->output;