4 # Copyright 2005 Biblibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 this script shows late orders for a specific supplier, branch and delay
34 To know on which supplier this script have to display late order.
37 To know the time boundary. Default value is 30 days.
40 To know on which branch this script have to display late order.
48 use C4
::Bookseller
qw( GetBooksellersWithLateOrders );
55 use C4
::Branch
; # GetBranches
59 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
61 template_name
=> "acqui/lateorders.tt",
65 flagsrequired
=> { acquisition
=> 'order_receive' },
70 my $booksellerid = $input->param('booksellerid') || undef; # we don't want "" or 0
71 my $delay = $input->param('delay') // 0;
73 # Get the "date from" param if !defined is today
74 my $estimateddeliverydatefrom = $input->param('estimateddeliverydatefrom');
75 my $estimateddeliverydateto = $input->param('estimateddeliverydateto');
77 my $estimateddeliverydatefrom_dt =
78 $estimateddeliverydatefrom
79 ? dt_from_string
($estimateddeliverydatefrom)
82 # Get the "date to" param. If it is not defined and $delay is not defined too, it is the today's date.
83 my $estimateddeliverydateto_dt = $estimateddeliverydateto
84 ? dt_from_string
($estimateddeliverydateto)
85 : ( not defined $delay and not defined $estimateddeliverydatefrom)
89 # Format the output of "date from" and "date to"
90 if ($estimateddeliverydatefrom_dt) {
91 $estimateddeliverydatefrom = output_pref
({dt
=> $estimateddeliverydatefrom_dt, dateonly
=> 1});
93 if ($estimateddeliverydateto_dt) {
94 $estimateddeliverydateto = output_pref
({dt
=> $estimateddeliverydateto_dt, dateonly
=> 1});
97 my $branch = $input->param('branch');
98 my $op = $input->param('op');
101 if ( $delay and not $delay =~ /^\d{1,3}$/ ) {
102 push @errors, {delay_digits
=> 1, bad_delay
=> $delay};
105 if ($op and $op eq "send_alert"){
106 my @ordernums = $input->param("ordernumber");# FIXME: Fallback values?
109 $err = SendAlerts
( 'claimacquisition', \
@ordernums, $input->param("letter_code") ); # FIXME: Fallback value?
110 if ( not ref $err or not exists $err->{error
} ) {
111 AddClaim
( $_ ) for @ordernums;
116 $template->param(error_claim
=> $@
);
117 } elsif ( ref $err and exists $err->{error
} and $err->{error
} eq "no_email" ) {
118 $template->{VARS
}->{'error_claim'} = "no_email";
120 $template->{VARS
}->{'info_claim'} = 1;
124 my @parameters = ( $delay );
125 push @parameters, $estimateddeliverydatefrom_dt
126 ?
$estimateddeliverydatefrom_dt->ymd()
129 push @parameters, $estimateddeliverydateto_dt
130 ?
$estimateddeliverydateto_dt->ymd()
133 my %supplierlist = GetBooksellersWithLateOrders
(@parameters);
135 my (@sloopy); # supplier loop
136 foreach (keys %supplierlist){
137 push @sloopy, (($booksellerid and $booksellerid eq $_ ) ?
138 {id
=>$_, name
=>$supplierlist{$_}, selected
=>1} :
139 {id
=>$_, name
=>$supplierlist{$_}} ) ;
141 $template->param(SUPPLIER_LOOP
=> \
@sloopy);
143 $template->param(Supplier
=>$supplierlist{$booksellerid}) if ($booksellerid);
144 $template->param(booksellerid
=>$booksellerid) if ($booksellerid);
147 ( $delay, $booksellerid, $branch );
148 if ($estimateddeliverydatefrom_dt) {
149 push @parameters, $estimateddeliverydatefrom_dt->ymd();
152 push @parameters, undef;
154 if ($estimateddeliverydateto_dt) {
155 push @parameters, $estimateddeliverydateto_dt->ymd();
157 my @lateorders = GetLateOrders
( @parameters );
160 foreach (@lateorders){
161 $total += $_->{subtotal
};
164 my $letters = GetLetters
({ module
=> "claimacquisition" });
166 $template->param(ERROR_LOOP
=> \
@errors) if (@errors);
168 lateorders
=> \
@lateorders,
171 estimateddeliverydatefrom
=> $estimateddeliverydatefrom,
172 estimateddeliverydateto
=> $estimateddeliverydateto,
174 intranetcolorstylesheet
=> C4
::Context
->preference("intranetcolorstylesheet"),
176 output_html_with_http_headers
$input, $cookie, $template->output;