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)
63 To know how many results have to be display / page.
75 use C4
::Dates qw
/format_date/;
77 use C4
::Bookseller qw
/ GetBookSellerFromId /;
81 my $booksellerid = $input->param('booksellerid');
82 my $order = $input->param('orderby') || 'shipmentdate desc';
83 my $startfrom = $input->param('startfrom');
84 my $code = $input->param('filter');
85 my $datefrom = $input->param('datefrom');
86 my $dateto = $input->param('dateto');
87 my $resultsperpage = $input->param('resultsperpage');
88 my $op = $input->param('op');
89 $resultsperpage ||= 20;
91 our ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user
(
92 { template_name
=> 'acqui/parcels.tmpl',
96 flagsrequired
=> { acquisition
=> 'order_receive' },
101 if($op and $op eq 'new') {
102 my $invoicenumber = $input->param('invoice');
103 my $shipmentdate = $input->param('shipmentdate');
104 my $shipmentcost = $input->param('shipmentcost');
105 my $shipmentcost_budgetid = $input->param('shipmentcost_budgetid');
107 $shipmentdate = C4
::Dates
->new($shipmentdate)->output('iso');
109 my $invoiceid = AddInvoice
(
110 invoicenumber
=> $invoicenumber,
111 booksellerid
=> $booksellerid,
112 shipmentdate
=> $shipmentdate,
113 shipmentcost
=> $shipmentcost,
114 shipmentcost_budgetid
=> $shipmentcost_budgetid,
116 if(defined $invoiceid) {
118 print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoiceid=$invoiceid");
121 $template->param(error_failed_to_create_invoice
=> 1);
125 my $bookseller = GetBookSellerFromId
($booksellerid);
126 my @parcels = GetInvoices
(
127 supplierid
=> $booksellerid,
128 invoicenumber
=> $code,
129 shipmentdatefrom
=> $datefrom,
130 shipmentdateto
=> $dateto,
133 my $count_parcels = @parcels;
135 # multi page display gestion
137 if ( $count_parcels > $resultsperpage ) {
138 set_page_navigation
( $count_parcels, $startfrom, $resultsperpage );
142 my $next_page_start = $startfrom + $resultsperpage;
143 my $last_row = ( $next_page_start < $count_parcels ) ?
$next_page_start - 1 : $count_parcels - 1;
144 for my $i ( $startfrom .. $last_row) {
145 my $p = $parcels[$i];
149 invoiceid
=> $p->{invoiceid
},
150 code
=> $p->{invoicenumber
},
151 nullcode
=> $p->{invoicenumber
} eq 'NULL',
152 emptycode
=> $p->{invoicenumber
} eq q{},
153 raw_datereceived
=> $p->{shipmentdate
},
154 datereceived
=> format_date
( $p->{shipmentdate
} ),
155 bibcount
=> $p->{receivedbiblios
} || 0,
156 reccount
=> $p->{receiveditems
} || 0,
157 itemcount
=> $p->{itemsexpected
} || 0,
160 if ($count_parcels) {
161 $template->param( searchresults
=> $loopres, count
=> $count_parcels );
164 my $budgets = GetBudgets
();
166 foreach my $budget (@
$budgets) {
167 next unless CanUserUseBudget
($loggedinuser, $budget, $flags);
168 push @budgets_loop, $budget;
174 datefrom
=> $datefrom,
176 resultsperpage
=> $resultsperpage,
177 name
=> $bookseller->{'name'},
178 shipmentdate_today
=> C4
::Dates
->new()->output(),
179 booksellerid
=> $booksellerid,
180 GST
=> C4
::Context
->preference('gist'),
181 budgets
=> \
@budgets_loop,
184 output_html_with_http_headers
$input, $cookie, $template->output;
186 sub set_page_navigation
{
187 my ( $total_rows, $startfrom, $resultsperpage ) = @_;
189 my $displayprev = $startfrom;
190 my $next_row = $startfrom + $resultsperpage;
191 my $prev_row = $startfrom - $resultsperpage;
193 if ( $total_rows - $next_row > 0 ) {
197 # set up index numbers for paging
199 if ( $total_rows > $resultsperpage ) {
200 my $pages = $total_rows / $resultsperpage;
201 if ( $total_rows % $resultsperpage ) {
205 # set up page indexes for at max 15 pages
206 my $max_idx = ( $pages < 15 ) ?
$pages : 15;
207 my $current_page = ( $startfrom / $resultsperpage ) - 1;
208 for my $idx ( 1 .. $max_idx ) {
211 startfrom
=> ( $idx - 1 ) * $resultsperpage,
212 highlight
=> ( $idx == $current_page ),
219 displaynext
=> $displaynext,
220 displayprev
=> $displayprev,
221 nextstartfrom
=> ( ( $next_row < $total_rows ) ?
$next_row : $total_rows ),
222 prevstartfrom
=> ( ( $prev_row > 0 ) ?
$prev_row : 0 )