Merge remote-tracking branch 'origin/new/bug_7729'
[koha.git] / acqui / histsearch.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2004 Biblibre
6 # Parts copyright 2011 Catalyst IT Ltd.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 =head1 NAME
22
23 histsearch.pl
24
25 =head1 DESCRIPTION
26
27 this script offer a interface to search among order.
28
29 =head1 CGI PARAMETERS
30
31 =over 4
32
33 =item title
34 if the script has to filter the results on title.
35
36 =item author
37 if the script has to filter the results on author.
38
39 =item name
40 if the script has to filter the results on supplier.
41
42 =item fromplacedon
43 to filter on started date.
44
45 =item toplacedon
46 to filter on ended date.
47
48 =back
49
50 =cut
51
52 use strict;
53 #use warnings; FIXME - Bug 2505
54 use CGI;
55 use C4::Auth;    # get_template_and_user
56 use C4::Output;
57 use C4::Acquisition;
58 use C4::Dates;
59 use C4::Debug;
60
61 my $input = new CGI;
62 my $title                   = $input->param( 'title');
63 my $author                  = $input->param('author');
64 my $isbn                    = $input->param('isbn');
65 my $name                    = $input->param( 'name' );
66 my $ean                     = $input->param('ean');
67 my $basket                  = $input->param( 'basket' );
68 my $booksellerinvoicenumber = $input->param( 'booksellerinvoicenumber' );
69 my $do_search               = $input->param('do_search') || 0;
70 my $from_placed_on          = C4::Dates->new($input->param('from'));
71 my $to_placed_on            = C4::Dates->new($input->param('to'));
72 if ( not $input->param('from') ) {
73     # FIXME Dirty but we can't sent a Date::Calc to C4::Dates ?
74     # We would use a function like Add_Delta_YM(-1, 0, 0);
75     $$from_placed_on{dmy_arrayref}[5] -= 1;
76 }
77
78 my $dbh = C4::Context->dbh;
79 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
80     {
81         template_name   => "acqui/histsearch.tmpl",
82         query           => $input,
83         type            => "intranet",
84         authnotrequired => 0,
85         flagsrequired   => { acquisition => 'group_manage', acquisition => 'order_manage', acquisition => 'order_receive' },
86         debug           => 1,
87     }
88 );
89
90 my ( $from_iso, $to_iso, $d );
91 if ( $d = $input->param('from') ) {
92     $from_iso = C4::Dates->new($d)->output('iso');
93 }
94 if ( $d = $input->param('iso') ) {
95     $to_iso = C4::Dates->new($d)->output('iso');
96 }
97
98 my ( $order_loop, $total_qty, $total_price, $total_qtyreceived );
99 # If we're supplied any value then we do a search. Otherwise we don't.
100 if ($do_search) {
101     ( $order_loop, $total_qty, $total_price, $total_qtyreceived ) = GetHistory(
102         title => $title,
103         author => $author,
104         isbn   => $isbn,
105         ean   => $ean,
106         name => $name,
107         from_placed_on => $from_iso,
108         to_placed_on => $to_iso,
109         basket => $basket,
110         booksellerinvoicenumber => $booksellerinvoicenumber,
111     );
112 }
113
114 my $from_date = $from_placed_on ? $from_placed_on->output('syspref') : undef;
115 my $to_date = $to_placed_on ? $to_placed_on->output('syspref') : undef;
116
117 $template->param(
118     suggestions_loop        => $order_loop,
119     total_qty               => $total_qty,
120     total_qtyreceived       => $total_qtyreceived,
121     total_price             => sprintf( "%.2f", $total_price ),
122     numresults              => $order_loop ? scalar(@$order_loop) : undef,
123     title                   => $title,
124     author                  => $author,
125     isbn                    => $isbn,
126     ean                     => $ean,
127     name                    => $name,
128     basket                  => $basket,
129     booksellerinvoicenumber => $booksellerinvoicenumber,
130     from_placed_on          => $from_date,
131     to_placed_on            => $to_date,
132     DHTMLcalendar_dateformat=> C4::Dates->DHTMLcalendar(),
133     dateformat              => C4::Dates->new()->format(),
134     debug                   => $debug || $input->param('debug') || 0,
135     uc(C4::Context->preference("marcflavour")) => 1
136 );
137
138 output_html_with_http_headers $input, $cookie, $template->output;