3 #script to recieve orders
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2008-2009 BibLibre SARL
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 This script shows all orders receipt or pending for a given supplier.
31 It allows to write an order as 'received' when he arrives.
39 To know the supplier this script has to show orders.
43 is the bookseller invoice number.
53 To filter the results list on this given date.
60 #use warnings; FIXME - Bug 2505
64 use C4
::Bookseller qw
/ GetBookSellerFromId /;
69 use C4
::Dates qw
/format_date format_date_in_iso/;
73 my $supplierid=$input->param('supplierid');
74 my $bookseller=GetBookSellerFromId
($supplierid);
76 my $invoice=$input->param('invoice') || '';
77 my $freight=$input->param('freight');
78 my $input_gst = ($input->param('gst') eq '' ?
undef : $input->param('gst'));
79 my $gst= $input_gst // $bookseller->{gstrate
} // C4
::Context
->preference("gist") // 0;
80 my $datereceived = ($input->param('op') eq 'new') ? C4
::Dates
->new($input->param('datereceived'))
81 : C4
::Dates
->new($input->param('datereceived'), 'iso') ;
82 $datereceived = C4
::Dates
->new() unless $datereceived;
83 my $code = $input->param('code');
84 my @rcv_err = $input->param('error');
85 my @rcv_err_barcode = $input->param('error_bc');
87 my $startfrom=$input->param('startfrom');
88 my $resultsperpage = $input->param('resultsperpage');
89 $resultsperpage = 20 unless ($resultsperpage);
90 $startfrom=0 unless ($startfrom);
92 if($input->param('format') eq "json"){
93 my ($template, $loggedinuser, $cookie)
94 = get_template_and_user
({template_name
=> "acqui/ajax.tmpl",
98 flagsrequired
=> {acquisition
=> 'order_receive'},
103 my $search = $input->param('search') || '';
104 my $supplier = $input->param('supplierid') || '';
105 my $basketno = $input->param('basketno') || '';
106 my $orderno = $input->param('orderno') || '';
108 my $orders = SearchOrder
($orderno, $search, $supplier, $basketno);
109 foreach my $order (@
$orders){
110 if($order->{quantityreceived
} < $order->{quantity
}){
113 $data->{basketno
} = $order->{basketno
};
114 $data->{ordernumber
} = $order->{ordernumber
};
115 $data->{title
} = $order->{title
};
116 $data->{author
} = $order->{author
};
117 $data->{isbn
} = $order->{isbn
};
118 $data->{booksellerid
} = $order->{booksellerid
};
119 $data->{biblionumber
} = $order->{biblionumber
};
120 $data->{freight
} = $order->{freight
};
121 $data->{quantity
} = $order->{quantity
};
122 $data->{ecost
} = $order->{ecost
};
123 $data->{ordertotal
} = sprintf("%.2f",$order->{ecost
}*$order->{quantity
});
128 my $json_text = to_json
(\
@datas);
129 $template->param(return => $json_text);
130 output_html_with_http_headers
$input, $cookie, $template->output;
134 my ($template, $loggedinuser, $cookie)
135 = get_template_and_user
({template_name
=> "acqui/parcel.tmpl",
138 authnotrequired
=> 0,
139 flagsrequired
=> {acquisition
=> 'order_receive'},
143 my $action = $input->param('action');
144 my $ordernumber = $input->param('ordernumber');
145 my $biblionumber = $input->param('biblionumber');
147 # If canceling an order
148 if ($action eq "cancelorder") {
153 # We delete the order
154 DelOrder
($biblionumber, $ordernumber);
156 # We delete all the items related to this order
157 my @itemnumbers = GetItemnumbersFromOrder
($ordernumber);
158 foreach (@itemnumbers) {
159 my $delcheck = DelItemCheck
(C4
::Context
->dbh, $biblionumber, $_);
160 # (should always success, as no issue should exist on item on order)
161 if ($delcheck != 1) { $error_delitem = 1; }
164 # We get the number of remaining items
165 my $itemcount = GetItemsCount
($biblionumber);
167 # If there are no items left,
168 if ($itemcount eq 0) {
169 # We delete the record
170 $error_delbiblio = DelBiblio
($biblionumber);
173 if ($error_delitem || $error_delbiblio) {
174 if ($error_delitem) { $template->param(error_delitem
=> 1); }
175 if ($error_delbiblio) { $template->param(error_delbiblio
=> 1); }
177 $template->param(success_delorder
=> 1);
181 # If receiving error, report the error (coming from finishrecieve.pl(sic)).
182 if( scalar(@rcv_err) ) {
185 for my $err (@rcv_err) {
186 push @
$error_loop, { "error_$err" => 1 , barcode
=> $rcv_err_barcode[$cnt] };
189 $template->param( receive_error
=> 1 ,
190 error_loop
=> $error_loop,
194 my $cfstr = "%.2f"; # currency format string -- could get this from currency table.
195 my @parcelitems = GetParcel
($supplierid, $invoice, $datereceived->output('iso'));
196 my $countlines = scalar @parcelitems;
198 my $totalfreight = 0;
199 my $totalquantity = 0;
202 my @loop_received = ();
204 for (my $i = 0 ; $i < $countlines ; $i++) {
206 #$total=($parcelitems[$i]->{'unitprice'} + $parcelitems[$i]->{'freight'}) * $parcelitems[$i]->{'quantityreceived'}; #weird, are the freight fees counted by book? (pierre)
207 $total = ($parcelitems[$i]->{'unitprice'}) * $parcelitems[$i]->{'quantityreceived'}; #weird, are the freight fees counted by book? (pierre)
208 $parcelitems[$i]->{'unitprice'} += 0;
210 %line = %{ $parcelitems[$i] };
211 $line{invoice
} = $invoice;
213 $line{total
} = sprintf($cfstr, $total);
214 $line{supplierid
} = $supplierid;
215 push @loop_received, \
%line;
216 $totalprice += $parcelitems[$i]->{'unitprice'};
217 $line{unitprice
} = sprintf($cfstr, $parcelitems[$i]->{'unitprice'});
219 #double FIXME - totalfreight is redefined later.
221 # FIXME - each order in a parcel holds the freight for the whole parcel. This means if you receive a parcel with items from multiple budgets, you'll see the freight charge in each budget..
222 if ($i > 0 && $totalfreight != $parcelitems[$i]->{'freight'}) {
223 warn "FREIGHT CHARGE MISMATCH!!";
225 $totalfreight = $parcelitems[$i]->{'freight'};
226 $totalquantity += $parcelitems[$i]->{'quantityreceived'};
230 my $pendingorders = GetPendingOrders
($supplierid);
231 my $countpendings = scalar @
$pendingorders;
233 # pending orders totals
234 my ($totalPunitprice, $totalPquantity, $totalPecost, $totalPqtyrcvd);
236 my @loop_orders = ();
237 for (my $i = 0 ; $i < $countpendings ; $i++) {
239 %line = %{$pendingorders->[$i]};
241 $line{quantityreceived
}+=0;
243 $totalPunitprice += $line{unitprice
};
244 $totalPquantity +=$line{quantity
};
245 $totalPqtyrcvd +=$line{quantityreceived
};
246 $totalPecost += $line{ecost
};
247 $line{ecost
} = sprintf("%.2f",$line{ecost
});
248 $line{ordertotal
} = sprintf("%.2f",$line{ecost
}*$line{quantity
});
249 $line{unitprice
} = sprintf("%.2f",$line{unitprice
});
250 $line{invoice
} = $invoice;
252 $line{total
} = $total;
253 $line{supplierid
} = $supplierid;
254 $ordergrandtotal += $line{ecost
} * $line{quantity
};
255 push @loop_orders, \
%line if ($i >= $startfrom and $i < $startfrom + $resultsperpage);
257 $freight = $totalfreight unless $freight;
259 my $count = $countpendings;
261 if ($count>$resultsperpage){
263 my $displayprev=$startfrom;
264 if(($count - ($startfrom+$resultsperpage)) > 0 ) {
269 for (my $i=1; $i<$count/$resultsperpage+1; $i++) {
271 ($startfrom/$resultsperpage==($i-1)) && ($highlight=1);
272 push @numbers, { number
=> $i,
273 highlight
=> $highlight ,
274 startfrom
=> ($i-1)*$resultsperpage};
277 my $from = $startfrom*$resultsperpage+1;
279 if($count < (($startfrom+1)*$resultsperpage)){
282 $to = (($startfrom+1)*$resultsperpage);
284 $template->param(numbers
=>\
@numbers,
285 displaynext
=>$displaynext,
286 displayprev
=>$displayprev,
287 nextstartfrom
=>(($startfrom+$resultsperpage<$count)?
$startfrom+$resultsperpage:$count),
288 prevstartfrom
=>(($startfrom-$resultsperpage>0)?
$startfrom-$resultsperpage:0)
292 #$totalfreight=$freight;
293 $tototal = $tototal + $freight;
297 datereceived
=> $datereceived->output('iso'),
298 invoicedatereceived
=> $datereceived->output('iso'),
299 formatteddatereceived
=> $datereceived->output(),
300 name
=> $bookseller->{'name'},
301 supplierid
=> $supplierid,
305 countreceived
=> $countlines,
306 loop_received
=> \
@loop_received,
307 countpending
=> $countpendings,
308 loop_orders
=> \
@loop_orders,
309 totalprice
=> sprintf($cfstr, $totalprice),
310 totalfreight
=> $totalfreight,
311 totalquantity
=> $totalquantity,
312 tototal
=> sprintf($cfstr, $tototal),
313 ordergrandtotal
=> sprintf($cfstr, $ordergrandtotal),
315 grandtot
=> sprintf($cfstr, $tototal + $gst),
316 totalPunitprice
=> sprintf("%.2f", $totalPunitprice),
317 totalPquantity
=> $totalPquantity,
318 totalPqtyrcvd
=> $totalPqtyrcvd,
319 totalPecost
=> sprintf("%.2f", $totalPecost),
320 resultsperpage
=> $resultsperpage,
322 output_html_with_http_headers
$input, $cookie, $template->output;