4 # Copyright 2005 Biblibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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 );
56 use Koha
::Acquisition
::Orders
;
57 use Koha
::CsvProfiles
;
60 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
62 template_name
=> "acqui/lateorders.tt",
66 flagsrequired
=> { acquisition
=> 'order_receive' },
71 my $booksellerid = $input->param('booksellerid') || undef; # we don't want "" or 0
72 my $delay = $input->param('delay') // 0;
74 # Get the "date from" param if !defined is today
75 my $estimateddeliverydatefrom = $input->param('estimateddeliverydatefrom');
76 my $estimateddeliverydateto = $input->param('estimateddeliverydateto');
78 my $estimateddeliverydatefrom_dt =
79 $estimateddeliverydatefrom
80 ? dt_from_string
($estimateddeliverydatefrom)
83 # Get the "date to" param. If it is not defined and $delay is not defined too, it is the today's date.
84 my $estimateddeliverydateto_dt = $estimateddeliverydateto
85 ? dt_from_string
($estimateddeliverydateto)
86 : ( not defined $delay and not defined $estimateddeliverydatefrom)
90 # Format the output of "date from" and "date to"
91 if ($estimateddeliverydatefrom_dt) {
92 $estimateddeliverydatefrom = output_pref
({dt
=> $estimateddeliverydatefrom_dt, dateonly
=> 1});
94 if ($estimateddeliverydateto_dt) {
95 $estimateddeliverydateto = output_pref
({dt
=> $estimateddeliverydateto_dt, dateonly
=> 1});
98 my $branch = $input->param('branch');
99 my $op = $input->param('op');
102 if ( $delay and not $delay =~ /^\d{1,3}$/ ) {
103 push @errors, {delay_digits
=> 1, bad_delay
=> $delay};
106 if ($op and $op eq "send_alert"){
107 my @ordernums = $input->multi_param("ordernumber");
110 $err = SendAlerts
( 'claimacquisition', \
@ordernums, $input->param("letter_code") );
111 if ( not ref $err or not exists $err->{error
} ) {
112 Koha
::Acquisition
::Orders
->find($_)->claim() for @ordernums;
116 if ( ref $err and exists $err->{error
} and $err->{error
} eq "no_email" ) {
117 $template->{VARS
}->{'error_claim'} = "no_email";
118 } elsif ( ref $err and exists $err->{error
} and $err->{error
} eq "no_order_selected"){
119 $template->{VARS
}->{'error_claim'} = "no_order_selected";
120 } elsif ( $@
or ref $err and exists $err->{error
} ) {
121 $template->param(error_claim
=> $@
|| $err->{error
});
123 $template->{VARS
}->{'info_claim'} = 1;
127 my @parameters = ( $delay );
128 push @parameters, $estimateddeliverydatefrom_dt
129 ?
$estimateddeliverydatefrom_dt->ymd()
132 push @parameters, $estimateddeliverydateto_dt
133 ?
$estimateddeliverydateto_dt->ymd()
136 my %supplierlist = GetBooksellersWithLateOrders
(@parameters);
138 my (@sloopy); # supplier loop
139 foreach( sort { $supplierlist{$a} cmp $supplierlist{$b} } keys %supplierlist ) {
140 push @sloopy, (($booksellerid and $booksellerid eq $_ ) ?
141 {id
=>$_, name
=>$supplierlist{$_}, selected
=>1} :
142 {id
=>$_, name
=>$supplierlist{$_}} ) ;
144 $template->param(SUPPLIER_LOOP
=> \
@sloopy);
146 $template->param(Supplier
=>$supplierlist{$booksellerid}) if ($booksellerid);
147 $template->param(booksellerid
=>$booksellerid) if ($booksellerid);
149 my $lateorders = Koha
::Acquisition
::Orders
->filter_by_lates(
152 booksellerid
=> $booksellerid,
154 $estimateddeliverydatefrom_dt
155 ?
( estimated_from
=> $estimateddeliverydatefrom_dt )
159 $estimateddeliverydateto_dt
160 ?
( estimated_to
=> $estimateddeliverydateto_dt )
166 my $letters = GetLetters
({ module
=> "claimacquisition" });
168 $template->param(ERROR_LOOP
=> \
@errors) if (@errors);
170 lateorders
=> $lateorders,
173 estimateddeliverydatefrom
=> $estimateddeliverydatefrom,
174 estimateddeliverydateto
=> $estimateddeliverydateto,
175 intranetcolorstylesheet
=> C4
::Context
->preference("intranetcolorstylesheet"),
176 csv_profiles
=> [ Koha
::CsvProfiles
->search({ type
=> 'sql', used_for
=> 'late_orders' }) ],
178 output_html_with_http_headers
$input, $cookie, $template->output;