4 #script to show display basket of orders
7 # Copyright 2000-2002 Katipo Communications
8 # Copyright 2008-2009 BibLibre SARL
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 This script shows all orders/parcels receipt or pending for a given supplier.
32 It allows to write an order/parcels as 'received' when he arrives.
40 To know the supplier this script has to show orders.
44 sort list of order by 'orderby'.
45 Orderby can be equals to
46 * datereceived desc (default value)
47 * aqorders.booksellerinvoicenumber
49 * aqorders.booksellerinvoicenumber desc
63 To know how many results have to be display / page.
75 use C4
::Dates qw
/format_date/;
80 my $supplierid = $input->param('supplierid');
81 my $order = $input->param('orderby') || 'datereceived desc';
82 my $startfrom = $input->param('startfrom');
83 my $code = $input->param('filter');
84 my $datefrom = $input->param('datefrom');
85 my $dateto = $input->param('dateto');
86 my $resultsperpage = $input->param('resultsperpage');
87 $resultsperpage ||= 20;
89 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
90 { template_name
=> 'acqui/parcels.tmpl',
94 flagsrequired
=> { acquisition
=> 1 },
99 my $bookseller = GetBookSellerFromId
($supplierid);
100 my @parcels = GetParcels
( $supplierid, $order, $code, $datefrom, $dateto );
101 my $count_parcels = @parcels;
103 # multi page display gestion
105 if ( $count_parcels > $resultsperpage ) {
106 set_page_navigation
( $count_parcels, $startfrom, $resultsperpage );
110 my $next_page_start = $startfrom + $resultsperpage;
111 my $last_row = ( $next_page_start < $count_parcels ) ?
$next_page_start - 1 : $count_parcels - 1;
112 for my $i ( $startfrom .. $last_row) {
113 my $p = $parcels[$i];
117 code
=> $p->{booksellerinvoicenumber
},
118 nullcode
=> $p->{booksellerinvoicenumber
} eq 'NULL',
119 emptycode
=> $p->{booksellerinvoicenumber
} eq q{},
120 raw_datereceived
=> $p->{datereceived
},
121 datereceived
=> format_date
( $p->{datereceived
} ),
122 bibcount
=> $p->{biblio
},
123 reccount
=> $p->{itemsreceived
},
124 itemcount
=> $p->{itemsexpected
},
127 if ($count_parcels) {
128 $template->param( searchresults
=> $loopres, count
=> $count_parcels );
133 datefrom
=> $datefrom,
135 resultsperpage
=> $resultsperpage,
136 name
=> $bookseller->{'name'},
137 DHTMLcalendar_dateformat
=> C4
::Dates
->DHTMLcalendar(),
138 datereceived_today
=> C4
::Dates
->new()->output(),
139 supplierid
=> $supplierid,
140 GST
=> C4
::Context
->preference('gist'),
143 output_html_with_http_headers
$input, $cookie, $template->output;
145 sub set_page_navigation
{
146 my ( $total_rows, $startfrom, $resultsperpage ) = @_;
148 my $displayprev = $startfrom;
149 my $next_row = $startfrom + $resultsperpage;
150 my $prev_row = $startfrom - $resultsperpage;
152 if ( $total_rows - $next_row > 0 ) {
156 # set up index numbers for paging
158 if ( $total_rows > $resultsperpage ) {
159 my $pages = $total_rows / $resultsperpage;
160 if ( $total_rows % $resultsperpage ) {
164 # set up page indexes for at max 15 pages
165 my $max_idx = ( $pages < 15 ) ?
$pages : 15;
166 my $current_page = ( $startfrom / $resultsperpage ) - 1;
167 for my $idx ( 1 .. $max_idx ) {
170 startfrom
=> ( $idx - 1 ) * $resultsperpage,
171 highlight
=> ( $idx == $current_page ),
178 displaynext
=> $displaynext,
179 displayprev
=> $displayprev,
180 nextstartfrom
=> ( ( $next_row < $total_rows ) ?
$next_row : $total_rows ),
181 prevstartfrom
=> ( ( $prev_row > 0 ) ?
$prev_row : 0 )