Bug 6149 - Follow-up [syspref] - Stopwords for Result Highlighting
[koha.git] / C4 / Acquisition.pm
blob5fc45c77e38422f783bf3f559831a9ce5c418267
1 package C4::Acquisition;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use Modern::Perl;
22 use Carp;
23 use C4::Context;
24 use C4::Debug;
25 use C4::Dates qw(format_date format_date_in_iso);
26 use MARC::Record;
27 use C4::Suggestions;
28 use C4::Biblio;
29 use C4::Contract;
30 use C4::Debug;
31 use C4::Bookseller qw(GetBookSellerFromId);
32 use C4::Templates qw(gettemplate);
34 use Time::localtime;
35 use HTML::Entities;
37 use vars qw($VERSION @ISA @EXPORT);
39 BEGIN {
40 # set the version for version checking
41 $VERSION = 3.07.00.049;
42 require Exporter;
43 @ISA = qw(Exporter);
44 @EXPORT = qw(
45 &GetBasket &NewBasket &CloseBasket &ReopenBasket &DelBasket &ModBasket
46 &GetBasketAsCSV &GetBasketGroupAsCSV
47 &GetBasketsByBookseller &GetBasketsByBasketgroup
48 &GetBasketsInfosByBookseller
50 &GetBasketUsers &ModBasketUsers
51 &CanUserManageBasket
53 &ModBasketHeader
55 &ModBasketgroup &NewBasketgroup &DelBasketgroup &GetBasketgroup &CloseBasketgroup
56 &GetBasketgroups &ReOpenBasketgroup
58 &NewOrder &DelOrder &ModOrder &GetOrder &GetOrders &GetOrdersByBiblionumber
59 &GetLateOrders &GetOrderFromItemnumber
60 &SearchOrders &GetHistory &GetRecentAcqui
61 &ModReceiveOrder &CancelReceipt
62 &GetCancelledOrders &TransferOrder
63 &GetLastOrderNotReceivedFromSubscriptionid &GetLastOrderReceivedFromSubscriptionid
64 &NewOrderItem &ModItemOrder
66 &GetParcels &GetParcel
68 &GetInvoices
69 &GetInvoice
70 &GetInvoiceDetails
71 &AddInvoice
72 &ModInvoice
73 &CloseInvoice
74 &ReopenInvoice
75 &DelInvoice
76 &MergeInvoices
78 &GetItemnumbersFromOrder
80 &AddClaim
81 &GetBiblioCountByBasketno
89 sub GetOrderFromItemnumber {
90 my ($itemnumber) = @_;
91 my $dbh = C4::Context->dbh;
92 my $query = qq|
94 SELECT * from aqorders LEFT JOIN aqorders_items
95 ON ( aqorders.ordernumber = aqorders_items.ordernumber )
96 WHERE itemnumber = ? |;
98 my $sth = $dbh->prepare($query);
100 # $sth->trace(3);
102 $sth->execute($itemnumber);
104 my $order = $sth->fetchrow_hashref;
105 return ( $order );
109 # Returns the itemnumber(s) associated with the ordernumber given in parameter
110 sub GetItemnumbersFromOrder {
111 my ($ordernumber) = @_;
112 my $dbh = C4::Context->dbh;
113 my $query = "SELECT itemnumber FROM aqorders_items WHERE ordernumber=?";
114 my $sth = $dbh->prepare($query);
115 $sth->execute($ordernumber);
116 my @tab;
118 while (my $order = $sth->fetchrow_hashref) {
119 push @tab, $order->{'itemnumber'};
122 return @tab;
131 =head1 NAME
133 C4::Acquisition - Koha functions for dealing with orders and acquisitions
135 =head1 SYNOPSIS
137 use C4::Acquisition;
139 =head1 DESCRIPTION
141 The functions in this module deal with acquisitions, managing book
142 orders, basket and parcels.
144 =head1 FUNCTIONS
146 =head2 FUNCTIONS ABOUT BASKETS
148 =head3 GetBasket
150 $aqbasket = &GetBasket($basketnumber);
152 get all basket informations in aqbasket for a given basket
154 B<returns:> informations for a given basket returned as a hashref.
156 =cut
158 sub GetBasket {
159 my ($basketno) = @_;
160 my $dbh = C4::Context->dbh;
161 my $query = "
162 SELECT aqbasket.*,
163 concat( b.firstname,' ',b.surname) AS authorisedbyname
164 FROM aqbasket
165 LEFT JOIN borrowers b ON aqbasket.authorisedby=b.borrowernumber
166 WHERE basketno=?
168 my $sth=$dbh->prepare($query);
169 $sth->execute($basketno);
170 my $basket = $sth->fetchrow_hashref;
171 return ( $basket );
174 #------------------------------------------------------------#
176 =head3 NewBasket
178 $basket = &NewBasket( $booksellerid, $authorizedby, $basketname,
179 $basketnote, $basketbooksellernote, $basketcontractnumber, $deliveryplace, $billingplace );
181 Create a new basket in aqbasket table
183 =over
185 =item C<$booksellerid> is a foreign key in the aqbasket table
187 =item C<$authorizedby> is the username of who created the basket
189 =back
191 The other parameters are optional, see ModBasketHeader for more info on them.
193 =cut
195 sub NewBasket {
196 my ( $booksellerid, $authorisedby, $basketname, $basketnote,
197 $basketbooksellernote, $basketcontractnumber, $deliveryplace,
198 $billingplace ) = @_;
199 my $dbh = C4::Context->dbh;
200 my $query =
201 'INSERT INTO aqbasket (creationdate,booksellerid,authorisedby) '
202 . 'VALUES (now(),?,?)';
203 $dbh->do( $query, {}, $booksellerid, $authorisedby );
205 my $basket = $dbh->{mysql_insertid};
206 $basketname ||= q{}; # default to empty strings
207 $basketnote ||= q{};
208 $basketbooksellernote ||= q{};
209 ModBasketHeader( $basket, $basketname, $basketnote, $basketbooksellernote,
210 $basketcontractnumber, $booksellerid, $deliveryplace, $billingplace );
211 return $basket;
214 #------------------------------------------------------------#
216 =head3 CloseBasket
218 &CloseBasket($basketno);
220 close a basket (becomes unmodifiable, except for receives)
222 =cut
224 sub CloseBasket {
225 my ($basketno) = @_;
226 my $dbh = C4::Context->dbh;
227 my $query = "
228 UPDATE aqbasket
229 SET closedate=now()
230 WHERE basketno=?
232 my $sth = $dbh->prepare($query);
233 $sth->execute($basketno);
235 my @orders = GetOrders($basketno);
236 foreach my $order (@orders) {
237 $query = qq{
238 UPDATE aqorders
239 SET orderstatus = 'ordered'
240 WHERE ordernumber = ?;
242 $sth = $dbh->prepare($query);
243 $sth->execute($order->{'ordernumber'});
247 =head3 ReopenBasket
249 &ReopenBasket($basketno);
251 reopen a basket
253 =cut
255 sub ReopenBasket {
256 my ($basketno) = @_;
257 my $dbh = C4::Context->dbh;
258 my $query = "
259 UPDATE aqbasket
260 SET closedate=NULL
261 WHERE basketno=?
263 my $sth = $dbh->prepare($query);
264 $sth->execute($basketno);
266 my @orders = GetOrders($basketno);
267 foreach my $order (@orders) {
268 $query = qq{
269 UPDATE aqorders
270 SET orderstatus = 'new'
271 WHERE ordernumber = ?;
273 $sth = $dbh->prepare($query);
274 $sth->execute($order->{'ordernumber'});
278 #------------------------------------------------------------#
280 =head3 GetBasketAsCSV
282 &GetBasketAsCSV($basketno);
284 Export a basket as CSV
286 $cgi parameter is needed for column name translation
288 =cut
290 sub GetBasketAsCSV {
291 my ($basketno, $cgi) = @_;
292 my $basket = GetBasket($basketno);
293 my @orders = GetOrders($basketno);
294 my $contract = GetContract({
295 contractnumber => $basket->{'contractnumber'}
298 my $template = C4::Templates::gettemplate("acqui/csv/basket.tt", "intranet", $cgi);
300 my @rows;
301 foreach my $order (@orders) {
302 my $bd = GetBiblioData( $order->{'biblionumber'} );
303 my $row = {
304 contractname => $contract->{'contractname'},
305 ordernumber => $order->{'ordernumber'},
306 entrydate => $order->{'entrydate'},
307 isbn => $order->{'isbn'},
308 author => $bd->{'author'},
309 title => $bd->{'title'},
310 publicationyear => $bd->{'publicationyear'},
311 publishercode => $bd->{'publishercode'},
312 collectiontitle => $bd->{'collectiontitle'},
313 notes => $order->{'order_vendornote'},
314 quantity => $order->{'quantity'},
315 rrp => $order->{'rrp'},
316 deliveryplace => C4::Branch::GetBranchName( $basket->{'deliveryplace'} ),
317 billingplace => C4::Branch::GetBranchName( $basket->{'billingplace'} ),
319 foreach(qw(
320 contractname author title publishercode collectiontitle notes
321 deliveryplace billingplace
322 ) ) {
323 # Double the quotes to not be interpreted as a field end
324 $row->{$_} =~ s/"/""/g if $row->{$_};
326 push @rows, $row;
329 @rows = sort {
330 if(defined $a->{publishercode} and defined $b->{publishercode}) {
331 $a->{publishercode} cmp $b->{publishercode};
333 } @rows;
335 $template->param(rows => \@rows);
337 return $template->output;
341 =head3 GetBasketGroupAsCSV
343 =over
345 &GetBasketGroupAsCSV($basketgroupid);
347 Export a basket group as CSV
349 $cgi parameter is needed for column name translation
351 =back
353 =cut
355 sub GetBasketGroupAsCSV {
356 my ($basketgroupid, $cgi) = @_;
357 my $baskets = GetBasketsByBasketgroup($basketgroupid);
359 my $template = C4::Templates::gettemplate('acqui/csv/basketgroup.tt', 'intranet', $cgi);
361 my @rows;
362 for my $basket (@$baskets) {
363 my @orders = GetOrders( $basket->{basketno} );
364 my $contract = GetContract({
365 contractnumber => $basket->{contractnumber}
367 my $bookseller = GetBookSellerFromId( $$basket{booksellerid} );
368 my $basketgroup = GetBasketgroup( $$basket{basketgroupid} );
370 foreach my $order (@orders) {
371 my $bd = GetBiblioData( $order->{'biblionumber'} );
372 my $row = {
373 clientnumber => $bookseller->{accountnumber},
374 basketname => $basket->{basketname},
375 ordernumber => $order->{ordernumber},
376 author => $bd->{author},
377 title => $bd->{title},
378 publishercode => $bd->{publishercode},
379 publicationyear => $bd->{publicationyear},
380 collectiontitle => $bd->{collectiontitle},
381 isbn => $order->{isbn},
382 quantity => $order->{quantity},
383 rrp => $order->{rrp},
384 discount => $bookseller->{discount},
385 ecost => $order->{ecost},
386 notes => $order->{order_vendornote},
387 entrydate => $order->{entrydate},
388 booksellername => $bookseller->{name},
389 bookselleraddress => $bookseller->{address1},
390 booksellerpostal => $bookseller->{postal},
391 contractnumber => $contract->{contractnumber},
392 contractname => $contract->{contractname},
393 basketgroupdeliveryplace => C4::Branch::GetBranchName( $basketgroup->{deliveryplace} ),
394 basketgroupbillingplace => C4::Branch::GetBranchName( $basketgroup->{billingplace} ),
395 basketdeliveryplace => C4::Branch::GetBranchName( $basket->{deliveryplace} ),
396 basketbillingplace => C4::Branch::GetBranchName( $basket->{billingplace} ),
398 foreach(qw(
399 basketname author title publishercode collectiontitle notes
400 booksellername bookselleraddress booksellerpostal contractname
401 basketgroupdeliveryplace basketgroupbillingplace
402 basketdeliveryplace basketbillingplace
403 ) ) {
404 # Double the quotes to not be interpreted as a field end
405 $row->{$_} =~ s/"/""/g if $row->{$_};
407 push @rows, $row;
410 $template->param(rows => \@rows);
412 return $template->output;
416 =head3 CloseBasketgroup
418 &CloseBasketgroup($basketgroupno);
420 close a basketgroup
422 =cut
424 sub CloseBasketgroup {
425 my ($basketgroupno) = @_;
426 my $dbh = C4::Context->dbh;
427 my $sth = $dbh->prepare("
428 UPDATE aqbasketgroups
429 SET closed=1
430 WHERE id=?
432 $sth->execute($basketgroupno);
435 #------------------------------------------------------------#
437 =head3 ReOpenBaskergroup($basketgroupno)
439 &ReOpenBaskergroup($basketgroupno);
441 reopen a basketgroup
443 =cut
445 sub ReOpenBasketgroup {
446 my ($basketgroupno) = @_;
447 my $dbh = C4::Context->dbh;
448 my $sth = $dbh->prepare("
449 UPDATE aqbasketgroups
450 SET closed=0
451 WHERE id=?
453 $sth->execute($basketgroupno);
456 #------------------------------------------------------------#
459 =head3 DelBasket
461 &DelBasket($basketno);
463 Deletes the basket that has basketno field $basketno in the aqbasket table.
465 =over
467 =item C<$basketno> is the primary key of the basket in the aqbasket table.
469 =back
471 =cut
473 sub DelBasket {
474 my ( $basketno ) = @_;
475 my $query = "DELETE FROM aqbasket WHERE basketno=?";
476 my $dbh = C4::Context->dbh;
477 my $sth = $dbh->prepare($query);
478 $sth->execute($basketno);
479 return;
482 #------------------------------------------------------------#
484 =head3 ModBasket
486 &ModBasket($basketinfo);
488 Modifies a basket, using a hashref $basketinfo for the relevant information, only $basketinfo->{'basketno'} is required.
490 =over
492 =item C<$basketno> is the primary key of the basket in the aqbasket table.
494 =back
496 =cut
498 sub ModBasket {
499 my $basketinfo = shift;
500 my $query = "UPDATE aqbasket SET ";
501 my @params;
502 foreach my $key (keys %$basketinfo){
503 if ($key ne 'basketno'){
504 $query .= "$key=?, ";
505 push(@params, $basketinfo->{$key} || undef );
508 # get rid of the "," at the end of $query
509 if (substr($query, length($query)-2) eq ', '){
510 chop($query);
511 chop($query);
512 $query .= ' ';
514 $query .= "WHERE basketno=?";
515 push(@params, $basketinfo->{'basketno'});
516 my $dbh = C4::Context->dbh;
517 my $sth = $dbh->prepare($query);
518 $sth->execute(@params);
520 return;
523 #------------------------------------------------------------#
525 =head3 ModBasketHeader
527 &ModBasketHeader($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid);
529 Modifies a basket's header.
531 =over
533 =item C<$basketno> is the "basketno" field in the "aqbasket" table;
535 =item C<$basketname> is the "basketname" field in the "aqbasket" table;
537 =item C<$note> is the "note" field in the "aqbasket" table;
539 =item C<$booksellernote> is the "booksellernote" field in the "aqbasket" table;
541 =item C<$contractnumber> is the "contractnumber" (foreign) key in the "aqbasket" table.
543 =item C<$booksellerid> is the id (foreign) key in the "aqbooksellers" table for the vendor.
545 =item C<$deliveryplace> is the "deliveryplace" field in the aqbasket table.
547 =item C<$billingplace> is the "billingplace" field in the aqbasket table.
549 =back
551 =cut
553 sub ModBasketHeader {
554 my ($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid, $deliveryplace, $billingplace) = @_;
555 my $query = qq{
556 UPDATE aqbasket
557 SET basketname=?, note=?, booksellernote=?, booksellerid=?, deliveryplace=?, billingplace=?
558 WHERE basketno=?
561 my $dbh = C4::Context->dbh;
562 my $sth = $dbh->prepare($query);
563 $sth->execute($basketname, $note, $booksellernote, $booksellerid, $deliveryplace, $billingplace, $basketno);
565 if ( $contractnumber ) {
566 my $query2 ="UPDATE aqbasket SET contractnumber=? WHERE basketno=?";
567 my $sth2 = $dbh->prepare($query2);
568 $sth2->execute($contractnumber,$basketno);
570 return;
573 #------------------------------------------------------------#
575 =head3 GetBasketsByBookseller
577 @results = &GetBasketsByBookseller($booksellerid, $extra);
579 Returns a list of hashes of all the baskets that belong to bookseller 'booksellerid'.
581 =over
583 =item C<$booksellerid> is the 'id' field of the bookseller in the aqbooksellers table
585 =item C<$extra> is the extra sql parameters, can be
587 $extra->{groupby}: group baskets by column
588 ex. $extra->{groupby} = aqbasket.basketgroupid
589 $extra->{orderby}: order baskets by column
590 $extra->{limit}: limit number of results (can be helpful for pagination)
592 =back
594 =cut
596 sub GetBasketsByBookseller {
597 my ($booksellerid, $extra) = @_;
598 my $query = "SELECT * FROM aqbasket WHERE booksellerid=?";
599 if ($extra){
600 if ($extra->{groupby}) {
601 $query .= " GROUP by $extra->{groupby}";
603 if ($extra->{orderby}){
604 $query .= " ORDER by $extra->{orderby}";
606 if ($extra->{limit}){
607 $query .= " LIMIT $extra->{limit}";
610 my $dbh = C4::Context->dbh;
611 my $sth = $dbh->prepare($query);
612 $sth->execute($booksellerid);
613 return $sth->fetchall_arrayref({});
616 =head3 GetBasketsInfosByBookseller
618 my $baskets = GetBasketsInfosByBookseller($supplierid, $allbaskets);
620 The optional second parameter allbaskets is a boolean allowing you to
621 select all baskets from the supplier; by default only active baskets (open or
622 closed but still something to receive) are returned.
624 Returns in a arrayref of hashref all about booksellers baskets, plus:
625 total_biblios: Number of distinct biblios in basket
626 total_items: Number of items in basket
627 expected_items: Number of non-received items in basket
629 =cut
631 sub GetBasketsInfosByBookseller {
632 my ($supplierid, $allbaskets) = @_;
634 return unless $supplierid;
636 my $dbh = C4::Context->dbh;
637 my $query = q{
638 SELECT aqbasket.*,
639 SUM(aqorders.quantity) AS total_items,
640 SUM(
641 IF ( aqorders.orderstatus = 'cancelled', aqorders.quantity, 0 )
642 ) AS total_items_cancelled,
643 COUNT(DISTINCT aqorders.biblionumber) AS total_biblios,
644 SUM(
645 IF(aqorders.datereceived IS NULL
646 AND aqorders.datecancellationprinted IS NULL
647 , aqorders.quantity
648 , 0)
649 ) AS expected_items
650 FROM aqbasket
651 LEFT JOIN aqorders ON aqorders.basketno = aqbasket.basketno
652 WHERE booksellerid = ?};
654 unless ( $allbaskets ) {
655 $query.=" AND (closedate IS NULL OR (aqorders.quantity > aqorders.quantityreceived AND datecancellationprinted IS NULL))";
657 $query.=" GROUP BY aqbasket.basketno";
659 my $sth = $dbh->prepare($query);
660 $sth->execute($supplierid);
661 my $baskets = $sth->fetchall_arrayref({});
663 # Retrieve the number of biblios cancelled
664 my $cancelled_biblios = $dbh->selectall_hashref( q|
665 SELECT COUNT(DISTINCT(biblionumber)) AS total_biblios_cancelled, aqbasket.basketno
666 FROM aqbasket
667 LEFT JOIN aqorders ON aqorders.basketno = aqbasket.basketno
668 WHERE booksellerid = ?
669 AND aqorders.orderstatus = 'cancelled'
670 GROUP BY aqbasket.basketno
671 |, 'basketno', {}, $supplierid );
672 map {
673 $_->{total_biblios_cancelled} = $cancelled_biblios->{$_->{basketno}}{total_biblios_cancelled} || 0
674 } @$baskets;
676 return $baskets;
679 =head3 GetBasketUsers
681 $basketusers_ids = &GetBasketUsers($basketno);
683 Returns a list of all borrowernumbers that are in basket users list
685 =cut
687 sub GetBasketUsers {
688 my $basketno = shift;
690 return unless $basketno;
692 my $query = qq{
693 SELECT borrowernumber
694 FROM aqbasketusers
695 WHERE basketno = ?
697 my $dbh = C4::Context->dbh;
698 my $sth = $dbh->prepare($query);
699 $sth->execute($basketno);
700 my $results = $sth->fetchall_arrayref( {} );
702 my @borrowernumbers;
703 foreach (@$results) {
704 push @borrowernumbers, $_->{'borrowernumber'};
707 return @borrowernumbers;
710 =head3 ModBasketUsers
712 my @basketusers_ids = (1, 2, 3);
713 &ModBasketUsers($basketno, @basketusers_ids);
715 Delete all users from basket users list, and add users in C<@basketusers_ids>
716 to this users list.
718 =cut
720 sub ModBasketUsers {
721 my ($basketno, @basketusers_ids) = @_;
723 return unless $basketno;
725 my $dbh = C4::Context->dbh;
726 my $query = qq{
727 DELETE FROM aqbasketusers
728 WHERE basketno = ?
730 my $sth = $dbh->prepare($query);
731 $sth->execute($basketno);
733 $query = qq{
734 INSERT INTO aqbasketusers (basketno, borrowernumber)
735 VALUES (?, ?)
737 $sth = $dbh->prepare($query);
738 foreach my $basketuser_id (@basketusers_ids) {
739 $sth->execute($basketno, $basketuser_id);
741 return;
744 =head3 CanUserManageBasket
746 my $bool = CanUserManageBasket($borrower, $basket[, $userflags]);
747 my $bool = CanUserManageBasket($borrowernumber, $basketno[, $userflags]);
749 Check if a borrower can manage a basket, according to system preference
750 AcqViewBaskets, user permissions and basket properties (creator, users list,
751 branch).
753 First parameter can be either a borrowernumber or a hashref as returned by
754 C4::Members::GetMember.
756 Second parameter can be either a basketno or a hashref as returned by
757 C4::Acquisition::GetBasket.
759 The third parameter is optional. If given, it should be a hashref as returned
760 by C4::Auth::getuserflags. If not, getuserflags is called.
762 If user is authorised to manage basket, returns 1.
763 Otherwise returns 0.
765 =cut
767 sub CanUserManageBasket {
768 my ($borrower, $basket, $userflags) = @_;
770 if (!ref $borrower) {
771 $borrower = C4::Members::GetMember(borrowernumber => $borrower);
773 if (!ref $basket) {
774 $basket = GetBasket($basket);
777 return 0 unless ($basket and $borrower);
779 my $borrowernumber = $borrower->{borrowernumber};
780 my $basketno = $basket->{basketno};
782 my $AcqViewBaskets = C4::Context->preference('AcqViewBaskets');
784 if (!defined $userflags) {
785 my $dbh = C4::Context->dbh;
786 my $sth = $dbh->prepare("SELECT flags FROM borrowers WHERE borrowernumber = ?");
787 $sth->execute($borrowernumber);
788 my ($flags) = $sth->fetchrow_array;
789 $sth->finish;
791 $userflags = C4::Auth::getuserflags($flags, $borrower->{userid}, $dbh);
794 unless ($userflags->{superlibrarian}
795 || (ref $userflags->{acquisition} && $userflags->{acquisition}->{order_manage_all})
796 || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
798 if (not exists $userflags->{acquisition}) {
799 return 0;
802 if ( (ref $userflags->{acquisition} && !$userflags->{acquisition}->{order_manage})
803 || (!ref $userflags->{acquisition} && !$userflags->{acquisition}) ) {
804 return 0;
807 if ($AcqViewBaskets eq 'user'
808 && $basket->{authorisedby} != $borrowernumber
809 && grep($borrowernumber, GetBasketUsers($basketno)) == 0) {
810 return 0;
813 if ($AcqViewBaskets eq 'branch' && defined $basket->{branch}
814 && $basket->{branch} ne $borrower->{branchcode}) {
815 return 0;
819 return 1;
822 #------------------------------------------------------------#
824 =head3 GetBasketsByBasketgroup
826 $baskets = &GetBasketsByBasketgroup($basketgroupid);
828 Returns a reference to all baskets that belong to basketgroup $basketgroupid.
830 =cut
832 sub GetBasketsByBasketgroup {
833 my $basketgroupid = shift;
834 my $query = qq{
835 SELECT *, aqbasket.booksellerid as booksellerid
836 FROM aqbasket
837 LEFT JOIN aqcontract USING(contractnumber) WHERE basketgroupid=?
839 my $dbh = C4::Context->dbh;
840 my $sth = $dbh->prepare($query);
841 $sth->execute($basketgroupid);
842 return $sth->fetchall_arrayref({});
845 #------------------------------------------------------------#
847 =head3 NewBasketgroup
849 $basketgroupid = NewBasketgroup(\%hashref);
851 Adds a basketgroup to the aqbasketgroups table, and add the initial baskets to it.
853 $hashref->{'booksellerid'} is the 'id' field of the bookseller in the aqbooksellers table,
855 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
857 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
859 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
861 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
863 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
865 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
867 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
869 =cut
871 sub NewBasketgroup {
872 my $basketgroupinfo = shift;
873 die "booksellerid is required to create a basketgroup" unless $basketgroupinfo->{'booksellerid'};
874 my $query = "INSERT INTO aqbasketgroups (";
875 my @params;
876 foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
877 if ( defined $basketgroupinfo->{$field} ) {
878 $query .= "$field, ";
879 push(@params, $basketgroupinfo->{$field});
882 $query .= "booksellerid) VALUES (";
883 foreach (@params) {
884 $query .= "?, ";
886 $query .= "?)";
887 push(@params, $basketgroupinfo->{'booksellerid'});
888 my $dbh = C4::Context->dbh;
889 my $sth = $dbh->prepare($query);
890 $sth->execute(@params);
891 my $basketgroupid = $dbh->{'mysql_insertid'};
892 if( $basketgroupinfo->{'basketlist'} ) {
893 foreach my $basketno (@{$basketgroupinfo->{'basketlist'}}) {
894 my $query2 = "UPDATE aqbasket SET basketgroupid=? WHERE basketno=?";
895 my $sth2 = $dbh->prepare($query2);
896 $sth2->execute($basketgroupid, $basketno);
899 return $basketgroupid;
902 #------------------------------------------------------------#
904 =head3 ModBasketgroup
906 ModBasketgroup(\%hashref);
908 Modifies a basketgroup in the aqbasketgroups table, and add the baskets to it.
910 $hashref->{'id'} is the 'id' field of the basketgroup in the aqbasketgroup table, this parameter is mandatory,
912 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
914 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
916 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
918 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
920 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
922 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
924 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
926 =cut
928 sub ModBasketgroup {
929 my $basketgroupinfo = shift;
930 die "basketgroup id is required to edit a basketgroup" unless $basketgroupinfo->{'id'};
931 my $dbh = C4::Context->dbh;
932 my $query = "UPDATE aqbasketgroups SET ";
933 my @params;
934 foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
935 if ( defined $basketgroupinfo->{$field} ) {
936 $query .= "$field=?, ";
937 push(@params, $basketgroupinfo->{$field});
940 chop($query);
941 chop($query);
942 $query .= " WHERE id=?";
943 push(@params, $basketgroupinfo->{'id'});
944 my $sth = $dbh->prepare($query);
945 $sth->execute(@params);
947 $sth = $dbh->prepare('UPDATE aqbasket SET basketgroupid = NULL WHERE basketgroupid = ?');
948 $sth->execute($basketgroupinfo->{'id'});
950 if($basketgroupinfo->{'basketlist'} && @{$basketgroupinfo->{'basketlist'}}){
951 $sth = $dbh->prepare("UPDATE aqbasket SET basketgroupid=? WHERE basketno=?");
952 foreach my $basketno (@{$basketgroupinfo->{'basketlist'}}) {
953 $sth->execute($basketgroupinfo->{'id'}, $basketno);
956 return;
959 #------------------------------------------------------------#
961 =head3 DelBasketgroup
963 DelBasketgroup($basketgroupid);
965 Deletes a basketgroup in the aqbasketgroups table, and removes the reference to it from the baskets,
967 =over
969 =item C<$basketgroupid> is the 'id' field of the basket in the aqbasketgroup table
971 =back
973 =cut
975 sub DelBasketgroup {
976 my $basketgroupid = shift;
977 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
978 my $query = "DELETE FROM aqbasketgroups WHERE id=?";
979 my $dbh = C4::Context->dbh;
980 my $sth = $dbh->prepare($query);
981 $sth->execute($basketgroupid);
982 return;
985 #------------------------------------------------------------#
988 =head2 FUNCTIONS ABOUT ORDERS
990 =head3 GetBasketgroup
992 $basketgroup = &GetBasketgroup($basketgroupid);
994 Returns a reference to the hash containing all information about the basketgroup.
996 =cut
998 sub GetBasketgroup {
999 my $basketgroupid = shift;
1000 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
1001 my $dbh = C4::Context->dbh;
1002 my $result_set = $dbh->selectall_arrayref(
1003 'SELECT * FROM aqbasketgroups WHERE id=?',
1004 { Slice => {} },
1005 $basketgroupid
1007 return $result_set->[0]; # id is unique
1010 #------------------------------------------------------------#
1012 =head3 GetBasketgroups
1014 $basketgroups = &GetBasketgroups($booksellerid);
1016 Returns a reference to the array of all the basketgroups of bookseller $booksellerid.
1018 =cut
1020 sub GetBasketgroups {
1021 my $booksellerid = shift;
1022 die 'bookseller id is required to edit a basketgroup' unless $booksellerid;
1023 my $query = 'SELECT * FROM aqbasketgroups WHERE booksellerid=? ORDER BY id DESC';
1024 my $dbh = C4::Context->dbh;
1025 my $sth = $dbh->prepare($query);
1026 $sth->execute($booksellerid);
1027 return $sth->fetchall_arrayref({});
1030 #------------------------------------------------------------#
1032 =head2 FUNCTIONS ABOUT ORDERS
1034 =head3 GetOrders
1036 @orders = &GetOrders($basketnumber, $orderby);
1038 Looks up the pending (non-cancelled) orders with the given basket
1039 number. If C<$booksellerID> is non-empty, only orders from that seller
1040 are returned.
1042 return :
1043 C<&basket> returns a two-element array. C<@orders> is an array of
1044 references-to-hash, whose keys are the fields from the aqorders,
1045 biblio, and biblioitems tables in the Koha database.
1047 =cut
1049 sub GetOrders {
1050 my ( $basketno, $orderby ) = @_;
1051 return () unless $basketno;
1052 my $dbh = C4::Context->dbh;
1053 my $query ="
1054 SELECT biblio.*,biblioitems.*,
1055 aqorders.*,
1056 aqbudgets.*,
1057 aqorders_transfers.ordernumber_from AS transferred_from,
1058 aqorders_transfers.timestamp AS transferred_from_timestamp
1059 FROM aqorders
1060 LEFT JOIN aqbudgets ON aqbudgets.budget_id = aqorders.budget_id
1061 LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1062 LEFT JOIN biblioitems ON biblioitems.biblionumber =biblio.biblionumber
1063 LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_to = aqorders.ordernumber
1064 WHERE basketno=?
1065 AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')
1068 $orderby = "biblioitems.publishercode,biblio.title" unless $orderby;
1069 $query .= " ORDER BY $orderby";
1070 my $result_set =
1071 $dbh->selectall_arrayref( $query, { Slice => {} }, $basketno );
1072 return @{$result_set};
1076 #------------------------------------------------------------#
1077 =head3 GetOrdersByBiblionumber
1079 @orders = &GetOrdersByBiblionumber($biblionumber);
1081 Looks up the orders with linked to a specific $biblionumber, including
1082 cancelled orders and received orders.
1084 return :
1085 C<@orders> is an array of references-to-hash, whose keys are the
1086 fields from the aqorders, biblio, and biblioitems tables in the Koha database.
1088 =cut
1090 sub GetOrdersByBiblionumber {
1091 my $biblionumber = shift;
1092 return unless $biblionumber;
1093 my $dbh = C4::Context->dbh;
1094 my $query ="
1095 SELECT biblio.*,biblioitems.*,
1096 aqorders.*,
1097 aqbudgets.*
1098 FROM aqorders
1099 LEFT JOIN aqbudgets ON aqbudgets.budget_id = aqorders.budget_id
1100 LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1101 LEFT JOIN biblioitems ON biblioitems.biblionumber =biblio.biblionumber
1102 WHERE aqorders.biblionumber=?
1104 my $result_set =
1105 $dbh->selectall_arrayref( $query, { Slice => {} }, $biblionumber );
1106 return @{$result_set};
1110 #------------------------------------------------------------#
1112 =head3 GetOrder
1114 $order = &GetOrder($ordernumber);
1116 Looks up an order by order number.
1118 Returns a reference-to-hash describing the order. The keys of
1119 C<$order> are fields from the biblio, biblioitems, aqorders tables of the Koha database.
1121 =cut
1123 sub GetOrder {
1124 my ($ordernumber) = @_;
1125 return unless $ordernumber;
1127 my $dbh = C4::Context->dbh;
1128 my $query = qq{SELECT
1129 aqorders.*,
1130 biblio.title,
1131 biblio.author,
1132 aqbasket.basketname,
1133 borrowers.branchcode,
1134 biblioitems.publicationyear,
1135 biblio.copyrightdate,
1136 biblioitems.editionstatement,
1137 biblioitems.isbn,
1138 biblioitems.ean,
1139 biblio.seriestitle,
1140 biblioitems.publishercode,
1141 aqorders.rrp AS unitpricesupplier,
1142 aqorders.ecost AS unitpricelib,
1143 aqorders.claims_count AS claims_count,
1144 aqorders.claimed_date AS claimed_date,
1145 aqbudgets.budget_name AS budget,
1146 aqbooksellers.name AS supplier,
1147 aqbooksellers.id AS supplierid,
1148 biblioitems.publishercode AS publisher,
1149 ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) AS estimateddeliverydate,
1150 DATE(aqbasket.closedate) AS orderdate,
1151 aqorders.quantity - COALESCE(aqorders.quantityreceived,0) AS quantity_to_receive,
1152 (aqorders.quantity - COALESCE(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
1153 DATEDIFF(CURDATE( ),closedate) AS latesince
1154 FROM aqorders LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1155 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
1156 LEFT JOIN aqbudgets ON aqorders.budget_id = aqbudgets.budget_id,
1157 aqbasket LEFT JOIN borrowers ON aqbasket.authorisedby = borrowers.borrowernumber
1158 LEFT JOIN aqbooksellers ON aqbasket.booksellerid = aqbooksellers.id
1159 WHERE aqorders.basketno = aqbasket.basketno
1160 AND ordernumber=?};
1161 my $result_set =
1162 $dbh->selectall_arrayref( $query, { Slice => {} }, $ordernumber );
1164 # result_set assumed to contain 1 match
1165 return $result_set->[0];
1168 =head3 GetLastOrderNotReceivedFromSubscriptionid
1170 $order = &GetLastOrderNotReceivedFromSubscriptionid($subscriptionid);
1172 Returns a reference-to-hash describing the last order not received for a subscription.
1174 =cut
1176 sub GetLastOrderNotReceivedFromSubscriptionid {
1177 my ( $subscriptionid ) = @_;
1178 my $dbh = C4::Context->dbh;
1179 my $query = qq|
1180 SELECT * FROM aqorders
1181 LEFT JOIN subscription
1182 ON ( aqorders.subscriptionid = subscription.subscriptionid )
1183 WHERE aqorders.subscriptionid = ?
1184 AND aqorders.datereceived IS NULL
1185 LIMIT 1
1187 my $result_set =
1188 $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid );
1190 # result_set assumed to contain 1 match
1191 return $result_set->[0];
1194 =head3 GetLastOrderReceivedFromSubscriptionid
1196 $order = &GetLastOrderReceivedFromSubscriptionid($subscriptionid);
1198 Returns a reference-to-hash describing the last order received for a subscription.
1200 =cut
1202 sub GetLastOrderReceivedFromSubscriptionid {
1203 my ( $subscriptionid ) = @_;
1204 my $dbh = C4::Context->dbh;
1205 my $query = qq|
1206 SELECT * FROM aqorders
1207 LEFT JOIN subscription
1208 ON ( aqorders.subscriptionid = subscription.subscriptionid )
1209 WHERE aqorders.subscriptionid = ?
1210 AND aqorders.datereceived =
1212 SELECT MAX( aqorders.datereceived )
1213 FROM aqorders
1214 LEFT JOIN subscription
1215 ON ( aqorders.subscriptionid = subscription.subscriptionid )
1216 WHERE aqorders.subscriptionid = ?
1217 AND aqorders.datereceived IS NOT NULL
1219 ORDER BY ordernumber DESC
1220 LIMIT 1
1222 my $result_set =
1223 $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid, $subscriptionid );
1225 # result_set assumed to contain 1 match
1226 return $result_set->[0];
1231 #------------------------------------------------------------#
1233 =head3 NewOrder
1235 &NewOrder(\%hashref);
1237 Adds a new order to the database. Any argument that isn't described
1238 below is the new value of the field with the same name in the aqorders
1239 table of the Koha database.
1241 =over
1243 =item $hashref->{'basketno'} is the basketno foreign key in aqorders, it is mandatory
1245 =item $hashref->{'ordernumber'} is a "minimum order number."
1247 =item $hashref->{'budgetdate'} is effectively ignored.
1248 If it's undef (anything false) or the string 'now', the current day is used.
1249 Else, the upcoming July 1st is used.
1251 =item $hashref->{'subscription'} may be either "yes", or anything else for "no".
1253 =item $hashref->{'uncertainprice'} may be 0 for "the price is known" or 1 for "the price is uncertain"
1255 =item defaults entrydate to Now
1257 The following keys are used: "biblionumber", "title", "basketno", "quantity", "order_vendornote", "order_internalnote", "rrp", "ecost", "gstrate", "unitprice", "subscription", "sort1", "sort2", "booksellerinvoicenumber", "listprice", "budgetdate", "purchaseordernumber", "branchcode", "booksellerinvoicenumber", "budget_id".
1259 =back
1261 =cut
1263 sub NewOrder {
1264 my $orderinfo = shift;
1266 my $dbh = C4::Context->dbh;
1267 my @params;
1270 # if these parameters are missing, we can't continue
1271 for my $key (qw/basketno quantity biblionumber budget_id/) {
1272 croak "Mandatory parameter $key missing" unless $orderinfo->{$key};
1275 $orderinfo->{'entrydate'} ||= C4::Dates->new()->output("iso");
1276 if (!$orderinfo->{quantityreceived}) {
1277 $orderinfo->{quantityreceived} = 0;
1280 # get only the columns of Aqorder
1281 my $schema = Koha::Database->new()->schema;
1282 my $columns = ' '.join(' ', $schema->source('Aqorder')->columns).' ';
1283 my $new_order = { map { $columns =~ / $_ / ? ($_ => $orderinfo->{$_}) : () } keys(%$orderinfo) };
1285 my $rs = $schema->resultset('Aqorder');
1286 my $ordernumber = $rs->create($new_order)->id;
1287 if (not $new_order->{parent_ordernumber}) {
1288 my $sth = $dbh->prepare("
1289 UPDATE aqorders
1290 SET parent_ordernumber = ordernumber
1291 WHERE ordernumber = ?
1293 $sth->execute($ordernumber);
1295 return ( $new_order->{'basketno'}, $ordernumber );
1300 #------------------------------------------------------------#
1302 =head3 NewOrderItem
1304 &NewOrderItem();
1306 =cut
1308 sub NewOrderItem {
1309 my ($itemnumber, $ordernumber) = @_;
1310 my $dbh = C4::Context->dbh;
1311 my $query = qq|
1312 INSERT INTO aqorders_items
1313 (itemnumber, ordernumber)
1314 VALUES (?,?) |;
1316 my $sth = $dbh->prepare($query);
1317 $sth->execute( $itemnumber, $ordernumber);
1320 #------------------------------------------------------------#
1322 =head3 ModOrder
1324 &ModOrder(\%hashref);
1326 Modifies an existing order. Updates the order with order number
1327 $hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All
1328 other keys of the hash update the fields with the same name in the aqorders
1329 table of the Koha database.
1331 =cut
1333 sub ModOrder {
1334 my $orderinfo = shift;
1336 die "Ordernumber is required" if $orderinfo->{'ordernumber'} eq '' ;
1337 die "Biblionumber is required" if $orderinfo->{'biblionumber'} eq '';
1339 my $dbh = C4::Context->dbh;
1340 my @params;
1342 # update uncertainprice to an integer, just in case (under FF, checked boxes have the value "ON" by default)
1343 $orderinfo->{uncertainprice}=1 if $orderinfo->{uncertainprice};
1345 # delete($orderinfo->{'branchcode'});
1346 # the hash contains a lot of entries not in aqorders, so get the columns ...
1347 my $sth = $dbh->prepare("SELECT * FROM aqorders LIMIT 1;");
1348 $sth->execute;
1349 my $colnames = $sth->{NAME};
1350 #FIXME Be careful. If aqorders would have columns with diacritics,
1351 #you should need to decode what you get back from NAME.
1352 #See report 10110 and guided_reports.pl
1353 my $query = "UPDATE aqorders SET ";
1355 foreach my $orderinfokey (grep(!/ordernumber/, keys %$orderinfo)){
1356 # ... and skip hash entries that are not in the aqorders table
1357 # FIXME : probably not the best way to do it (would be better to have a correct hash)
1358 next unless grep(/^$orderinfokey$/, @$colnames);
1359 $query .= "$orderinfokey=?, ";
1360 push(@params, $orderinfo->{$orderinfokey});
1363 $query .= "timestamp=NOW() WHERE ordernumber=?";
1364 push(@params, $orderinfo->{'ordernumber'} );
1365 $sth = $dbh->prepare($query);
1366 $sth->execute(@params);
1367 return;
1370 #------------------------------------------------------------#
1372 =head3 ModItemOrder
1374 ModItemOrder($itemnumber, $ordernumber);
1376 Modifies the ordernumber of an item in aqorders_items.
1378 =cut
1380 sub ModItemOrder {
1381 my ($itemnumber, $ordernumber) = @_;
1383 return unless ($itemnumber and $ordernumber);
1385 my $dbh = C4::Context->dbh;
1386 my $query = qq{
1387 UPDATE aqorders_items
1388 SET ordernumber = ?
1389 WHERE itemnumber = ?
1391 my $sth = $dbh->prepare($query);
1392 return $sth->execute($ordernumber, $itemnumber);
1395 #------------------------------------------------------------#
1397 =head3 GetCancelledOrders
1399 my @orders = GetCancelledOrders($basketno, $orderby);
1401 Returns cancelled orders for a basket
1403 =cut
1405 sub GetCancelledOrders {
1406 my ( $basketno, $orderby ) = @_;
1408 return () unless $basketno;
1410 my $dbh = C4::Context->dbh;
1411 my $query = "
1412 SELECT
1413 biblio.*,
1414 biblioitems.*,
1415 aqorders.*,
1416 aqbudgets.*,
1417 aqorders_transfers.ordernumber_to AS transferred_to,
1418 aqorders_transfers.timestamp AS transferred_to_timestamp
1419 FROM aqorders
1420 LEFT JOIN aqbudgets ON aqbudgets.budget_id = aqorders.budget_id
1421 LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1422 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
1423 LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_from = aqorders.ordernumber
1424 WHERE basketno = ?
1425 AND (datecancellationprinted IS NOT NULL
1426 AND datecancellationprinted <> '0000-00-00')
1429 $orderby = "aqorders.datecancellationprinted desc, aqorders.timestamp desc"
1430 unless $orderby;
1431 $query .= " ORDER BY $orderby";
1432 my $sth = $dbh->prepare($query);
1433 $sth->execute($basketno);
1434 my $results = $sth->fetchall_arrayref( {} );
1436 return @$results;
1440 #------------------------------------------------------------#
1442 =head3 ModReceiveOrder
1444 &ModReceiveOrder({
1445 biblionumber => $biblionumber,
1446 ordernumber => $ordernumber,
1447 quantityreceived => $quantityreceived,
1448 user => $user,
1449 cost => $cost,
1450 ecost => $ecost,
1451 invoiceid => $invoiceid,
1452 rrp => $rrp,
1453 budget_id => $budget_id,
1454 datereceived => $datereceived,
1455 received_itemnumbers => \@received_itemnumbers,
1456 order_internalnote => $order_internalnote,
1457 order_vendornote => $order_vendornote,
1460 Updates an order, to reflect the fact that it was received, at least
1461 in part. All arguments not mentioned below update the fields with the
1462 same name in the aqorders table of the Koha database.
1464 If a partial order is received, splits the order into two.
1466 Updates the order with bibilionumber C<$biblionumber> and ordernumber
1467 C<$ordernumber>.
1469 =cut
1472 sub ModReceiveOrder {
1473 my ( $params ) = @_;
1474 my $biblionumber = $params->{biblionumber};
1475 my $ordernumber = $params->{ordernumber};
1476 my $quantrec = $params->{quantityreceived};
1477 my $user = $params->{user};
1478 my $cost = $params->{cost};
1479 my $ecost = $params->{ecost};
1480 my $invoiceid = $params->{invoiceid};
1481 my $rrp = $params->{rrp};
1482 my $budget_id = $params->{budget_id};
1483 my $datereceived = $params->{datereceived};
1484 my $received_items = $params->{received_items};
1485 my $order_internalnote = $params->{order_internalnote};
1486 my $order_vendornote = $params->{order_vendornote};
1488 my $dbh = C4::Context->dbh;
1489 $datereceived = C4::Dates->output('iso') unless $datereceived;
1490 my $suggestionid = GetSuggestionFromBiblionumber( $biblionumber );
1491 if ($suggestionid) {
1492 ModSuggestion( {suggestionid=>$suggestionid,
1493 STATUS=>'AVAILABLE',
1494 biblionumber=> $biblionumber}
1498 my $result_set = $dbh->selectall_arrayref(
1499 q{SELECT * FROM aqorders WHERE biblionumber=? AND aqorders.ordernumber=?},
1500 { Slice => {} }, $biblionumber, $ordernumber
1503 # we assume we have a unique order
1504 my $order = $result_set->[0];
1506 my $new_ordernumber = $ordernumber;
1507 if ( $order->{quantity} > $quantrec ) {
1508 # Split order line in two parts: the first is the original order line
1509 # without received items (the quantity is decreased),
1510 # the second part is a new order line with quantity=quantityrec
1511 # (entirely received)
1512 my $query = q|
1513 UPDATE aqorders
1514 SET quantity = ?,
1515 orderstatus = 'partial'|;
1516 $query .= q|, order_internalnote = ?| if defined $order_internalnote;
1517 $query .= q|, order_vendornote = ?| if defined $order_vendornote;
1518 $query .= q| WHERE ordernumber = ?|;
1519 my $sth = $dbh->prepare($query);
1521 $sth->execute(
1522 $order->{quantity} - $quantrec,
1523 ( defined $order_internalnote ? $order_internalnote : () ),
1524 ( defined $order_vendornote ? $order_vendornote : () ),
1525 $ordernumber
1528 delete $order->{'ordernumber'};
1529 $order->{'budget_id'} = ( $budget_id || $order->{'budget_id'} );
1530 $order->{'quantity'} = $quantrec;
1531 $order->{'quantityreceived'} = $quantrec;
1532 $order->{'datereceived'} = $datereceived;
1533 $order->{'invoiceid'} = $invoiceid;
1534 $order->{'unitprice'} = $cost;
1535 $order->{'rrp'} = $rrp;
1536 $order->{ecost} = $ecost;
1537 $order->{'orderstatus'} = 'complete';
1538 my $basketno;
1539 ( $basketno, $new_ordernumber ) = NewOrder($order);
1541 if ($received_items) {
1542 foreach my $itemnumber (@$received_items) {
1543 ModItemOrder($itemnumber, $new_ordernumber);
1546 } else {
1547 my $query = q|
1548 update aqorders
1549 set quantityreceived=?,datereceived=?,invoiceid=?,
1550 unitprice=?,rrp=?,ecost=?,budget_id=?,orderstatus='complete'|;
1551 $query .= q|, order_internalnote = ?| if defined $order_internalnote;
1552 $query .= q|, order_vendornote = ?| if defined $order_vendornote;
1553 $query .= q| where biblionumber=? and ordernumber=?|;
1554 my $sth = $dbh->prepare( $query );
1555 $sth->execute(
1556 $quantrec,
1557 $datereceived,
1558 $invoiceid,
1559 $cost,
1560 $rrp,
1561 $ecost,
1562 $budget_id,
1563 ( defined $order_internalnote ? $order_internalnote : () ),
1564 ( defined $order_vendornote ? $order_vendornote : () ),
1565 $biblionumber,
1566 $ordernumber
1569 return ($datereceived, $new_ordernumber);
1572 =head3 CancelReceipt
1574 my $parent_ordernumber = CancelReceipt($ordernumber);
1576 Cancel an order line receipt and update the parent order line, as if no
1577 receipt was made.
1578 If items are created at receipt (AcqCreateItem = receiving) then delete
1579 these items.
1581 =cut
1583 sub CancelReceipt {
1584 my $ordernumber = shift;
1586 return unless $ordernumber;
1588 my $dbh = C4::Context->dbh;
1589 my $query = qq{
1590 SELECT datereceived, parent_ordernumber, quantity
1591 FROM aqorders
1592 WHERE ordernumber = ?
1594 my $sth = $dbh->prepare($query);
1595 $sth->execute($ordernumber);
1596 my $order = $sth->fetchrow_hashref;
1597 unless($order) {
1598 warn "CancelReceipt: order $ordernumber does not exist";
1599 return;
1601 unless($order->{'datereceived'}) {
1602 warn "CancelReceipt: order $ordernumber is not received";
1603 return;
1606 my $parent_ordernumber = $order->{'parent_ordernumber'};
1608 if($parent_ordernumber == $ordernumber || not $parent_ordernumber) {
1609 # The order line has no parent, just mark it as not received
1610 $query = qq{
1611 UPDATE aqorders
1612 SET quantityreceived = ?,
1613 datereceived = ?,
1614 invoiceid = ?,
1615 orderstatus = 'ordered'
1616 WHERE ordernumber = ?
1618 $sth = $dbh->prepare($query);
1619 $sth->execute(0, undef, undef, $ordernumber);
1620 _cancel_items_receipt( $ordernumber );
1621 } else {
1622 # The order line has a parent, increase parent quantity and delete
1623 # the order line.
1624 $query = qq{
1625 SELECT quantity, datereceived
1626 FROM aqorders
1627 WHERE ordernumber = ?
1629 $sth = $dbh->prepare($query);
1630 $sth->execute($parent_ordernumber);
1631 my $parent_order = $sth->fetchrow_hashref;
1632 unless($parent_order) {
1633 warn "Parent order $parent_ordernumber does not exist.";
1634 return;
1636 if($parent_order->{'datereceived'}) {
1637 warn "CancelReceipt: parent order is received.".
1638 " Can't cancel receipt.";
1639 return;
1641 $query = qq{
1642 UPDATE aqorders
1643 SET quantity = ?,
1644 orderstatus = 'ordered'
1645 WHERE ordernumber = ?
1647 $sth = $dbh->prepare($query);
1648 my $rv = $sth->execute(
1649 $order->{'quantity'} + $parent_order->{'quantity'},
1650 $parent_ordernumber
1652 unless($rv) {
1653 warn "Cannot update parent order line, so do not cancel".
1654 " receipt";
1655 return;
1657 _cancel_items_receipt( $ordernumber, $parent_ordernumber );
1658 # Delete order line
1659 $query = qq{
1660 DELETE FROM aqorders
1661 WHERE ordernumber = ?
1663 $sth = $dbh->prepare($query);
1664 $sth->execute($ordernumber);
1668 return $parent_ordernumber;
1671 sub _cancel_items_receipt {
1672 my ( $ordernumber, $parent_ordernumber ) = @_;
1673 $parent_ordernumber ||= $ordernumber;
1675 my @itemnumbers = GetItemnumbersFromOrder($ordernumber);
1676 if(C4::Context->preference('AcqCreateItem') eq 'receiving') {
1677 # Remove items that were created at receipt
1678 my $query = qq{
1679 DELETE FROM items, aqorders_items
1680 USING items, aqorders_items
1681 WHERE items.itemnumber = ? AND aqorders_items.itemnumber = ?
1683 my $dbh = C4::Context->dbh;
1684 my $sth = $dbh->prepare($query);
1685 foreach my $itemnumber (@itemnumbers) {
1686 $sth->execute($itemnumber, $itemnumber);
1688 } else {
1689 # Update items
1690 foreach my $itemnumber (@itemnumbers) {
1691 ModItemOrder($itemnumber, $parent_ordernumber);
1696 #------------------------------------------------------------#
1698 =head3 SearchOrders
1700 @results = &SearchOrders({
1701 ordernumber => $ordernumber,
1702 search => $search,
1703 biblionumber => $biblionumber,
1704 ean => $ean,
1705 booksellerid => $booksellerid,
1706 basketno => $basketno,
1707 owner => $owner,
1708 pending => $pending
1709 ordered => $ordered
1712 Searches for orders.
1714 C<$owner> Finds order for the logged in user.
1715 C<$pending> Finds pending orders. Ignores completed and cancelled orders.
1716 C<$ordered> Finds orders to receive only (status 'ordered' or 'partial').
1719 C<@results> is an array of references-to-hash with the keys are fields
1720 from aqorders, biblio, biblioitems and aqbasket tables.
1722 =cut
1724 sub SearchOrders {
1725 my ( $params ) = @_;
1726 my $ordernumber = $params->{ordernumber};
1727 my $search = $params->{search};
1728 my $ean = $params->{ean};
1729 my $booksellerid = $params->{booksellerid};
1730 my $basketno = $params->{basketno};
1731 my $basketname = $params->{basketname};
1732 my $basketgroupname = $params->{basketgroupname};
1733 my $owner = $params->{owner};
1734 my $pending = $params->{pending};
1735 my $ordered = $params->{ordered};
1736 my $biblionumber = $params->{biblionumber};
1737 my $budget_id = $params->{budget_id};
1739 my $dbh = C4::Context->dbh;
1740 my @args = ();
1741 my $query = q{
1742 SELECT aqbasket.basketno,
1743 borrowers.surname,
1744 borrowers.firstname,
1745 biblio.*,
1746 biblioitems.isbn,
1747 biblioitems.biblioitemnumber,
1748 aqbasket.authorisedby,
1749 aqbasket.booksellerid,
1750 aqbasket.closedate,
1751 aqbasket.creationdate,
1752 aqbasket.basketname,
1753 aqbasketgroups.id as basketgroupid,
1754 aqbasketgroups.name as basketgroupname,
1755 aqorders.*
1756 FROM aqorders
1757 LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
1758 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
1759 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1760 LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1761 LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
1764 # If we search on ordernumber, we retrieve the transfered order if a transfer has been done.
1765 $query .= q{
1766 LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_to = aqorders.ordernumber
1767 } if $ordernumber;
1769 $query .= q{
1770 WHERE (datecancellationprinted is NULL)
1773 if ( $pending or $ordered ) {
1774 $query .= q{ AND (quantity > quantityreceived OR quantityreceived is NULL)};
1776 if ( $ordered ) {
1777 $query .= q{ AND aqorders.orderstatus IN ( "ordered", "partial" )};
1780 my $userenv = C4::Context->userenv;
1781 if ( C4::Context->preference("IndependentBranches") ) {
1782 unless ( C4::Context->IsSuperLibrarian() ) {
1783 $query .= q{
1784 AND (
1785 borrowers.branchcode = ?
1786 OR borrowers.branchcode = ''
1789 push @args, $userenv->{branch};
1793 if ( $ordernumber ) {
1794 $query .= ' AND ( aqorders.ordernumber = ? OR aqorders_transfers.ordernumber_from = ? ) ';
1795 push @args, ( $ordernumber, $ordernumber );
1797 if ( $biblionumber ) {
1798 $query .= 'AND aqorders.biblionumber = ?';
1799 push @args, $biblionumber;
1801 if( $search ) {
1802 $query .= ' AND (biblio.title LIKE ? OR biblio.author LIKE ? OR biblioitems.isbn LIKE ?)';
1803 push @args, ("%$search%","%$search%","%$search%");
1805 if ( $ean ) {
1806 $query .= ' AND biblioitems.ean = ?';
1807 push @args, $ean;
1809 if ( $booksellerid ) {
1810 $query .= 'AND aqbasket.booksellerid = ?';
1811 push @args, $booksellerid;
1813 if( $basketno ) {
1814 $query .= 'AND aqbasket.basketno = ?';
1815 push @args, $basketno;
1817 if( $basketname ) {
1818 $query .= 'AND aqbasket.basketname LIKE ?';
1819 push @args, "%$basketname%";
1821 if( $basketgroupname ) {
1822 $query .= ' AND aqbasketgroups.name LIKE ?';
1823 push @args, "%$basketgroupname%";
1826 if ( $owner ) {
1827 $query .= ' AND aqbasket.authorisedby=? ';
1828 push @args, $userenv->{'number'};
1831 if ( $budget_id ) {
1832 $query .= ' AND aqorders.budget_id = ?';
1833 push @args, $budget_id;
1836 $query .= ' ORDER BY aqbasket.basketno';
1838 my $sth = $dbh->prepare($query);
1839 $sth->execute(@args);
1840 return $sth->fetchall_arrayref({});
1843 #------------------------------------------------------------#
1845 =head3 DelOrder
1847 &DelOrder($biblionumber, $ordernumber);
1849 Cancel the order with the given order and biblio numbers. It does not
1850 delete any entries in the aqorders table, it merely marks them as
1851 cancelled.
1853 =cut
1855 sub DelOrder {
1856 my ( $bibnum, $ordernumber ) = @_;
1857 my $dbh = C4::Context->dbh;
1858 my $query = "
1859 UPDATE aqorders
1860 SET datecancellationprinted=now(), orderstatus='cancelled'
1861 WHERE biblionumber=? AND ordernumber=?
1863 my $sth = $dbh->prepare($query);
1864 $sth->execute( $bibnum, $ordernumber );
1865 my @itemnumbers = GetItemnumbersFromOrder( $ordernumber );
1866 foreach my $itemnumber (@itemnumbers){
1867 C4::Items::DelItem(
1869 biblionumber => $bibnum,
1870 itemnumber => $itemnumber
1874 return;
1877 =head3 TransferOrder
1879 my $newordernumber = TransferOrder($ordernumber, $basketno);
1881 Transfer an order line to a basket.
1882 Mark $ordernumber as cancelled with an internal note 'Cancelled and transfered
1883 to BOOKSELLER on DATE' and create new order with internal note
1884 'Transfered from BOOKSELLER on DATE'.
1885 Move all attached items to the new order.
1886 Received orders cannot be transfered.
1887 Return the ordernumber of created order.
1889 =cut
1891 sub TransferOrder {
1892 my ($ordernumber, $basketno) = @_;
1894 return unless ($ordernumber and $basketno);
1896 my $order = GetOrder( $ordernumber );
1897 return if $order->{datereceived};
1898 my $basket = GetBasket($basketno);
1899 return unless $basket;
1901 my $dbh = C4::Context->dbh;
1902 my ($query, $sth, $rv);
1904 $query = q{
1905 UPDATE aqorders
1906 SET datecancellationprinted = CAST(NOW() AS date)
1907 WHERE ordernumber = ?
1909 $sth = $dbh->prepare($query);
1910 $rv = $sth->execute($ordernumber);
1912 delete $order->{'ordernumber'};
1913 delete $order->{parent_ordernumber};
1914 $order->{'basketno'} = $basketno;
1915 my $newordernumber;
1916 (undef, $newordernumber) = NewOrder($order);
1918 $query = q{
1919 UPDATE aqorders_items
1920 SET ordernumber = ?
1921 WHERE ordernumber = ?
1923 $sth = $dbh->prepare($query);
1924 $sth->execute($newordernumber, $ordernumber);
1926 $query = q{
1927 INSERT INTO aqorders_transfers (ordernumber_from, ordernumber_to)
1928 VALUES (?, ?)
1930 $sth = $dbh->prepare($query);
1931 $sth->execute($ordernumber, $newordernumber);
1933 return $newordernumber;
1936 =head2 FUNCTIONS ABOUT PARCELS
1938 =cut
1940 #------------------------------------------------------------#
1942 =head3 GetParcel
1944 @results = &GetParcel($booksellerid, $code, $date);
1946 Looks up all of the received items from the supplier with the given
1947 bookseller ID at the given date, for the given code (bookseller Invoice number). Ignores cancelled and completed orders.
1949 C<@results> is an array of references-to-hash. The keys of each element are fields from
1950 the aqorders, biblio, and biblioitems tables of the Koha database.
1952 C<@results> is sorted alphabetically by book title.
1954 =cut
1956 sub GetParcel {
1957 #gets all orders from a certain supplier, orders them alphabetically
1958 my ( $supplierid, $code, $datereceived ) = @_;
1959 my $dbh = C4::Context->dbh;
1960 my @results = ();
1961 $code .= '%'
1962 if $code; # add % if we search on a given code (otherwise, let him empty)
1963 my $strsth ="
1964 SELECT authorisedby,
1965 creationdate,
1966 aqbasket.basketno,
1967 closedate,surname,
1968 firstname,
1969 aqorders.biblionumber,
1970 aqorders.ordernumber,
1971 aqorders.parent_ordernumber,
1972 aqorders.quantity,
1973 aqorders.quantityreceived,
1974 aqorders.unitprice,
1975 aqorders.listprice,
1976 aqorders.rrp,
1977 aqorders.ecost,
1978 aqorders.gstrate,
1979 biblio.title
1980 FROM aqorders
1981 LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
1982 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1983 LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1984 LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
1985 WHERE
1986 aqbasket.booksellerid = ?
1987 AND aqinvoices.invoicenumber LIKE ?
1988 AND aqorders.datereceived = ? ";
1990 my @query_params = ( $supplierid, $code, $datereceived );
1991 if ( C4::Context->preference("IndependentBranches") ) {
1992 unless ( C4::Context->IsSuperLibrarian() ) {
1993 $strsth .= " and (borrowers.branchcode = ?
1994 or borrowers.branchcode = '')";
1995 push @query_params, C4::Context->userenv->{branch};
1998 $strsth .= " ORDER BY aqbasket.basketno";
1999 my $result_set = $dbh->selectall_arrayref(
2000 $strsth,
2001 { Slice => {} },
2002 @query_params);
2004 return @{$result_set};
2007 #------------------------------------------------------------#
2009 =head3 GetParcels
2011 $results = &GetParcels($bookseller, $order, $code, $datefrom, $dateto);
2013 get a lists of parcels.
2015 * Input arg :
2017 =over
2019 =item $bookseller
2020 is the bookseller this function has to get parcels.
2022 =item $order
2023 To know on what criteria the results list has to be ordered.
2025 =item $code
2026 is the booksellerinvoicenumber.
2028 =item $datefrom & $dateto
2029 to know on what date this function has to filter its search.
2031 =back
2033 * return:
2034 a pointer on a hash list containing parcel informations as such :
2036 =over
2038 =item Creation date
2040 =item Last operation
2042 =item Number of biblio
2044 =item Number of items
2046 =back
2048 =cut
2050 sub GetParcels {
2051 my ($bookseller,$order, $code, $datefrom, $dateto) = @_;
2052 my $dbh = C4::Context->dbh;
2053 my @query_params = ();
2054 my $strsth ="
2055 SELECT aqinvoices.invoicenumber,
2056 datereceived,purchaseordernumber,
2057 count(DISTINCT biblionumber) AS biblio,
2058 sum(quantity) AS itemsexpected,
2059 sum(quantityreceived) AS itemsreceived
2060 FROM aqorders LEFT JOIN aqbasket ON aqbasket.basketno = aqorders.basketno
2061 LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
2062 WHERE aqbasket.booksellerid = ? and datereceived IS NOT NULL
2064 push @query_params, $bookseller;
2066 if ( defined $code ) {
2067 $strsth .= ' and aqinvoices.invoicenumber like ? ';
2068 # add a % to the end of the code to allow stemming.
2069 push @query_params, "$code%";
2072 if ( defined $datefrom ) {
2073 $strsth .= ' and datereceived >= ? ';
2074 push @query_params, $datefrom;
2077 if ( defined $dateto ) {
2078 $strsth .= 'and datereceived <= ? ';
2079 push @query_params, $dateto;
2082 $strsth .= "group by aqinvoices.invoicenumber,datereceived ";
2084 # can't use a placeholder to place this column name.
2085 # but, we could probably be checking to make sure it is a column that will be fetched.
2086 $strsth .= "order by $order " if ($order);
2088 my $sth = $dbh->prepare($strsth);
2090 $sth->execute( @query_params );
2091 my $results = $sth->fetchall_arrayref({});
2092 return @{$results};
2095 #------------------------------------------------------------#
2097 =head3 GetLateOrders
2099 @results = &GetLateOrders;
2101 Searches for bookseller with late orders.
2103 return:
2104 the table of supplier with late issues. This table is full of hashref.
2106 =cut
2108 sub GetLateOrders {
2109 my $delay = shift;
2110 my $supplierid = shift;
2111 my $branch = shift;
2112 my $estimateddeliverydatefrom = shift;
2113 my $estimateddeliverydateto = shift;
2115 my $dbh = C4::Context->dbh;
2117 #BEWARE, order of parenthesis and LEFT JOIN is important for speed
2118 my $dbdriver = C4::Context->config("db_scheme") || "mysql";
2120 my @query_params = ();
2121 my $select = "
2122 SELECT aqbasket.basketno,
2123 aqorders.ordernumber,
2124 DATE(aqbasket.closedate) AS orderdate,
2125 aqbasket.basketname AS basketname,
2126 aqbasket.basketgroupid AS basketgroupid,
2127 aqbasketgroups.name AS basketgroupname,
2128 aqorders.rrp AS unitpricesupplier,
2129 aqorders.ecost AS unitpricelib,
2130 aqorders.claims_count AS claims_count,
2131 aqorders.claimed_date AS claimed_date,
2132 aqbudgets.budget_name AS budget,
2133 borrowers.branchcode AS branch,
2134 aqbooksellers.name AS supplier,
2135 aqbooksellers.id AS supplierid,
2136 biblio.author, biblio.title,
2137 biblioitems.publishercode AS publisher,
2138 biblioitems.publicationyear,
2139 ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) AS estimateddeliverydate,
2141 my $from = "
2142 FROM
2143 aqorders LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
2144 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
2145 LEFT JOIN aqbudgets ON aqorders.budget_id = aqbudgets.budget_id,
2146 aqbasket LEFT JOIN borrowers ON aqbasket.authorisedby = borrowers.borrowernumber
2147 LEFT JOIN aqbooksellers ON aqbasket.booksellerid = aqbooksellers.id
2148 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
2149 WHERE aqorders.basketno = aqbasket.basketno
2150 AND ( datereceived = ''
2151 OR datereceived IS NULL
2152 OR aqorders.quantityreceived < aqorders.quantity
2154 AND aqbasket.closedate IS NOT NULL
2155 AND (aqorders.datecancellationprinted IS NULL OR aqorders.datecancellationprinted='0000-00-00')
2157 my $having = "";
2158 if ($dbdriver eq "mysql") {
2159 $select .= "
2160 aqorders.quantity - COALESCE(aqorders.quantityreceived,0) AS quantity,
2161 (aqorders.quantity - COALESCE(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
2162 DATEDIFF(CAST(now() AS date),closedate) AS latesince
2164 if ( defined $delay ) {
2165 $from .= " AND (closedate <= DATE_SUB(CAST(now() AS date),INTERVAL ? DAY)) " ;
2166 push @query_params, $delay;
2168 $having = "
2169 HAVING quantity <> 0
2170 AND unitpricesupplier <> 0
2171 AND unitpricelib <> 0
2173 } else {
2174 # FIXME: account for IFNULL as above
2175 $select .= "
2176 aqorders.quantity AS quantity,
2177 aqorders.quantity * aqorders.rrp AS subtotal,
2178 (CAST(now() AS date) - closedate) AS latesince
2180 if ( defined $delay ) {
2181 $from .= " AND (closedate <= (CAST(now() AS date) -(INTERVAL ? DAY)) ";
2182 push @query_params, $delay;
2185 if (defined $supplierid) {
2186 $from .= ' AND aqbasket.booksellerid = ? ';
2187 push @query_params, $supplierid;
2189 if (defined $branch) {
2190 $from .= ' AND borrowers.branchcode LIKE ? ';
2191 push @query_params, $branch;
2194 if ( defined $estimateddeliverydatefrom or defined $estimateddeliverydateto ) {
2195 $from .= ' AND aqbooksellers.deliverytime IS NOT NULL ';
2197 if ( defined $estimateddeliverydatefrom ) {
2198 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) >= ?';
2199 push @query_params, $estimateddeliverydatefrom;
2201 if ( defined $estimateddeliverydateto ) {
2202 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= ?';
2203 push @query_params, $estimateddeliverydateto;
2205 if ( defined $estimateddeliverydatefrom and not defined $estimateddeliverydateto ) {
2206 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= CAST(now() AS date)';
2208 if (C4::Context->preference("IndependentBranches")
2209 && !C4::Context->IsSuperLibrarian() ) {
2210 $from .= ' AND borrowers.branchcode LIKE ? ';
2211 push @query_params, C4::Context->userenv->{branch};
2213 $from .= " AND orderstatus <> 'cancelled' ";
2214 my $query = "$select $from $having\nORDER BY latesince, basketno, borrowers.branchcode, supplier";
2215 $debug and print STDERR "GetLateOrders query: $query\nGetLateOrders args: " . join(" ",@query_params);
2216 my $sth = $dbh->prepare($query);
2217 $sth->execute(@query_params);
2218 my @results;
2219 while (my $data = $sth->fetchrow_hashref) {
2220 push @results, $data;
2222 return @results;
2225 #------------------------------------------------------------#
2227 =head3 GetHistory
2229 (\@order_loop, $total_qty, $total_price, $total_qtyreceived) = GetHistory( %params );
2231 Retreives some acquisition history information
2233 params:
2234 title
2235 author
2236 name
2237 isbn
2239 from_placed_on
2240 to_placed_on
2241 basket - search both basket name and number
2242 booksellerinvoicenumber
2243 basketgroupname
2244 budget
2245 orderstatus (note that orderstatus '' will retrieve orders
2246 of any status except cancelled)
2247 biblionumber
2248 get_canceled_order (if set to a true value, cancelled orders will
2249 be included)
2251 returns:
2252 $order_loop is a list of hashrefs that each look like this:
2254 'author' => 'Twain, Mark',
2255 'basketno' => '1',
2256 'biblionumber' => '215',
2257 'count' => 1,
2258 'creationdate' => 'MM/DD/YYYY',
2259 'datereceived' => undef,
2260 'ecost' => '1.00',
2261 'id' => '1',
2262 'invoicenumber' => undef,
2263 'name' => '',
2264 'ordernumber' => '1',
2265 'quantity' => 1,
2266 'quantityreceived' => undef,
2267 'title' => 'The Adventures of Huckleberry Finn'
2269 $total_qty is the sum of all of the quantities in $order_loop
2270 $total_price is the cost of each in $order_loop times the quantity
2271 $total_qtyreceived is the sum of all of the quantityreceived entries in $order_loop
2273 =cut
2275 sub GetHistory {
2276 # don't run the query if there are no parameters (list would be too long for sure !)
2277 croak "No search params" unless @_;
2278 my %params = @_;
2279 my $title = $params{title};
2280 my $author = $params{author};
2281 my $isbn = $params{isbn};
2282 my $ean = $params{ean};
2283 my $name = $params{name};
2284 my $from_placed_on = $params{from_placed_on};
2285 my $to_placed_on = $params{to_placed_on};
2286 my $basket = $params{basket};
2287 my $booksellerinvoicenumber = $params{booksellerinvoicenumber};
2288 my $basketgroupname = $params{basketgroupname};
2289 my $budget = $params{budget};
2290 my $orderstatus = $params{orderstatus};
2291 my $biblionumber = $params{biblionumber};
2292 my $get_canceled_order = $params{get_canceled_order} || 0;
2293 my $ordernumber = $params{ordernumber};
2294 my $search_children_too = $params{search_children_too} || 0;
2296 my @order_loop;
2297 my $total_qty = 0;
2298 my $total_qtyreceived = 0;
2299 my $total_price = 0;
2301 my $dbh = C4::Context->dbh;
2302 my $query ="
2303 SELECT
2304 COALESCE(biblio.title, deletedbiblio.title) AS title,
2305 COALESCE(biblio.author, deletedbiblio.author) AS author,
2306 COALESCE(biblioitems.isbn, deletedbiblioitems.isbn) AS isbn,
2307 COALESCE(biblioitems.ean, deletedbiblioitems.ean) AS ean,
2308 aqorders.basketno,
2309 aqbasket.basketname,
2310 aqbasket.basketgroupid,
2311 aqbasketgroups.name as groupname,
2312 aqbooksellers.name,
2313 aqbasket.creationdate,
2314 aqorders.datereceived,
2315 aqorders.quantity,
2316 aqorders.quantityreceived,
2317 aqorders.ecost,
2318 aqorders.ordernumber,
2319 aqorders.invoiceid,
2320 aqinvoices.invoicenumber,
2321 aqbooksellers.id as id,
2322 aqorders.biblionumber,
2323 aqorders.orderstatus,
2324 aqorders.parent_ordernumber,
2325 aqbudgets.budget_name
2327 $query .= ", aqbudgets.budget_id AS budget" if defined $budget;
2328 $query .= "
2329 FROM aqorders
2330 LEFT JOIN aqbasket ON aqorders.basketno=aqbasket.basketno
2331 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid=aqbasketgroups.id
2332 LEFT JOIN aqbooksellers ON aqbasket.booksellerid=aqbooksellers.id
2333 LEFT JOIN biblioitems ON biblioitems.biblionumber=aqorders.biblionumber
2334 LEFT JOIN biblio ON biblio.biblionumber=aqorders.biblionumber
2335 LEFT JOIN aqbudgets ON aqorders.budget_id=aqbudgets.budget_id
2336 LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
2337 LEFT JOIN deletedbiblio ON deletedbiblio.biblionumber=aqorders.biblionumber
2338 LEFT JOIN deletedbiblioitems ON deletedbiblioitems.biblionumber=aqorders.biblionumber
2341 if ( C4::Context->preference("IndependentBranches") ) {
2342 $query .= " LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber";
2345 $query .= " WHERE 1 ";
2347 unless ($get_canceled_order or (defined $orderstatus and $orderstatus eq 'cancelled')) {
2348 $query .= " AND (datecancellationprinted is NULL or datecancellationprinted='0000-00-00') ";
2351 my @query_params = ();
2353 if ( $biblionumber ) {
2354 $query .= " AND biblio.biblionumber = ?";
2355 push @query_params, $biblionumber;
2358 if ( $title ) {
2359 $query .= " AND biblio.title LIKE ? ";
2360 $title =~ s/\s+/%/g;
2361 push @query_params, "%$title%";
2364 if ( $author ) {
2365 $query .= " AND biblio.author LIKE ? ";
2366 push @query_params, "%$author%";
2369 if ( $isbn ) {
2370 $query .= " AND biblioitems.isbn LIKE ? ";
2371 push @query_params, "%$isbn%";
2373 if ( $ean ) {
2374 $query .= " AND biblioitems.ean = ? ";
2375 push @query_params, "$ean";
2377 if ( $name ) {
2378 $query .= " AND aqbooksellers.name LIKE ? ";
2379 push @query_params, "%$name%";
2382 if ( $budget ) {
2383 $query .= " AND aqbudgets.budget_id = ? ";
2384 push @query_params, "$budget";
2387 if ( $from_placed_on ) {
2388 $query .= " AND creationdate >= ? ";
2389 push @query_params, $from_placed_on;
2392 if ( $to_placed_on ) {
2393 $query .= " AND creationdate <= ? ";
2394 push @query_params, $to_placed_on;
2397 if ( defined $orderstatus and $orderstatus ne '') {
2398 $query .= " AND aqorders.orderstatus = ? ";
2399 push @query_params, "$orderstatus";
2402 if ($basket) {
2403 if ($basket =~ m/^\d+$/) {
2404 $query .= " AND aqorders.basketno = ? ";
2405 push @query_params, $basket;
2406 } else {
2407 $query .= " AND aqbasket.basketname LIKE ? ";
2408 push @query_params, "%$basket%";
2412 if ($booksellerinvoicenumber) {
2413 $query .= " AND aqinvoices.invoicenumber LIKE ? ";
2414 push @query_params, "%$booksellerinvoicenumber%";
2417 if ($basketgroupname) {
2418 $query .= " AND aqbasketgroups.name LIKE ? ";
2419 push @query_params, "%$basketgroupname%";
2422 if ($ordernumber) {
2423 $query .= " AND (aqorders.ordernumber = ? ";
2424 push @query_params, $ordernumber;
2425 if ($search_children_too) {
2426 $query .= " OR aqorders.parent_ordernumber = ? ";
2427 push @query_params, $ordernumber;
2429 $query .= ") ";
2433 if ( C4::Context->preference("IndependentBranches") ) {
2434 unless ( C4::Context->IsSuperLibrarian() ) {
2435 $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
2436 push @query_params, C4::Context->userenv->{branch};
2439 $query .= " ORDER BY id";
2440 my $sth = $dbh->prepare($query);
2441 $sth->execute( @query_params );
2442 my $cnt = 1;
2443 while ( my $line = $sth->fetchrow_hashref ) {
2444 $line->{count} = $cnt++;
2445 $line->{toggle} = 1 if $cnt % 2;
2446 push @order_loop, $line;
2447 $total_qty += ( $line->{quantity} ) ? $line->{quantity} : 0;
2448 $total_qtyreceived += ( $line->{quantityreceived} ) ? $line->{quantityreceived} : 0;
2449 $total_price += ( $line->{quantity} and $line->{ecost} ) ? $line->{quantity} * $line->{ecost} : 0;
2451 return \@order_loop, $total_qty, $total_price, $total_qtyreceived;
2454 =head2 GetRecentAcqui
2456 $results = GetRecentAcqui($days);
2458 C<$results> is a ref to a table which containts hashref
2460 =cut
2462 sub GetRecentAcqui {
2463 my $limit = shift;
2464 my $dbh = C4::Context->dbh;
2465 my $query = "
2466 SELECT *
2467 FROM biblio
2468 ORDER BY timestamp DESC
2469 LIMIT 0,".$limit;
2471 my $sth = $dbh->prepare($query);
2472 $sth->execute;
2473 my $results = $sth->fetchall_arrayref({});
2474 return $results;
2477 #------------------------------------------------------------#
2479 =head3 AddClaim
2481 =over
2483 &AddClaim($ordernumber);
2485 Add a claim for an order
2487 =back
2489 =cut
2491 sub AddClaim {
2492 my ($ordernumber) = @_;
2493 my $dbh = C4::Context->dbh;
2494 my $query = "
2495 UPDATE aqorders SET
2496 claims_count = claims_count + 1,
2497 claimed_date = CURDATE()
2498 WHERE ordernumber = ?
2500 my $sth = $dbh->prepare($query);
2501 $sth->execute($ordernumber);
2504 =head3 GetInvoices
2506 my @invoices = GetInvoices(
2507 invoicenumber => $invoicenumber,
2508 supplierid => $supplierid,
2509 suppliername => $suppliername,
2510 shipmentdatefrom => $shipmentdatefrom, # ISO format
2511 shipmentdateto => $shipmentdateto, # ISO format
2512 billingdatefrom => $billingdatefrom, # ISO format
2513 billingdateto => $billingdateto, # ISO format
2514 isbneanissn => $isbn_or_ean_or_issn,
2515 title => $title,
2516 author => $author,
2517 publisher => $publisher,
2518 publicationyear => $publicationyear,
2519 branchcode => $branchcode,
2520 order_by => $order_by
2523 Return a list of invoices that match all given criteria.
2525 $order_by is "column_name (asc|desc)", where column_name is any of
2526 'invoicenumber', 'booksellerid', 'shipmentdate', 'billingdate', 'closedate',
2527 'shipmentcost', 'shipmentcost_budgetid'.
2529 asc is the default if omitted
2531 =cut
2533 sub GetInvoices {
2534 my %args = @_;
2536 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2537 closedate shipmentcost shipmentcost_budgetid);
2539 my $dbh = C4::Context->dbh;
2540 my $query = qq{
2541 SELECT aqinvoices.*, aqbooksellers.name AS suppliername,
2542 COUNT(
2543 DISTINCT IF(
2544 aqorders.datereceived IS NOT NULL,
2545 aqorders.biblionumber,
2546 NULL
2548 ) AS receivedbiblios,
2549 COUNT(
2550 DISTINCT IF(
2551 aqorders.subscriptionid IS NOT NULL,
2552 aqorders.subscriptionid,
2553 NULL
2555 ) AS is_linked_to_subscriptions,
2556 SUM(aqorders.quantityreceived) AS receiveditems
2557 FROM aqinvoices
2558 LEFT JOIN aqbooksellers ON aqbooksellers.id = aqinvoices.booksellerid
2559 LEFT JOIN aqorders ON aqorders.invoiceid = aqinvoices.invoiceid
2560 LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
2561 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
2562 LEFT JOIN biblio ON aqorders.biblionumber = biblio.biblionumber
2563 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
2564 LEFT JOIN subscription ON biblio.biblionumber = subscription.biblionumber
2567 my @bind_args;
2568 my @bind_strs;
2569 if($args{supplierid}) {
2570 push @bind_strs, " aqinvoices.booksellerid = ? ";
2571 push @bind_args, $args{supplierid};
2573 if($args{invoicenumber}) {
2574 push @bind_strs, " aqinvoices.invoicenumber LIKE ? ";
2575 push @bind_args, "%$args{invoicenumber}%";
2577 if($args{suppliername}) {
2578 push @bind_strs, " aqbooksellers.name LIKE ? ";
2579 push @bind_args, "%$args{suppliername}%";
2581 if($args{shipmentdatefrom}) {
2582 push @bind_strs, " aqinvoices.shipmentdate >= ? ";
2583 push @bind_args, $args{shipmentdatefrom};
2585 if($args{shipmentdateto}) {
2586 push @bind_strs, " aqinvoices.shipmentdate <= ? ";
2587 push @bind_args, $args{shipmentdateto};
2589 if($args{billingdatefrom}) {
2590 push @bind_strs, " aqinvoices.billingdate >= ? ";
2591 push @bind_args, $args{billingdatefrom};
2593 if($args{billingdateto}) {
2594 push @bind_strs, " aqinvoices.billingdate <= ? ";
2595 push @bind_args, $args{billingdateto};
2597 if($args{isbneanissn}) {
2598 push @bind_strs, " (biblioitems.isbn LIKE CONCAT('%', ?, '%') OR biblioitems.ean LIKE CONCAT('%', ?, '%') OR biblioitems.issn LIKE CONCAT('%', ?, '%') ) ";
2599 push @bind_args, $args{isbneanissn}, $args{isbneanissn}, $args{isbneanissn};
2601 if($args{title}) {
2602 push @bind_strs, " biblio.title LIKE CONCAT('%', ?, '%') ";
2603 push @bind_args, $args{title};
2605 if($args{author}) {
2606 push @bind_strs, " biblio.author LIKE CONCAT('%', ?, '%') ";
2607 push @bind_args, $args{author};
2609 if($args{publisher}) {
2610 push @bind_strs, " biblioitems.publishercode LIKE CONCAT('%', ?, '%') ";
2611 push @bind_args, $args{publisher};
2613 if($args{publicationyear}) {
2614 push @bind_strs, " ((biblioitems.publicationyear LIKE CONCAT('%', ?, '%')) OR (biblio.copyrightdate LIKE CONCAT('%', ?, '%'))) ";
2615 push @bind_args, $args{publicationyear}, $args{publicationyear};
2617 if($args{branchcode}) {
2618 push @bind_strs, " borrowers.branchcode = ? ";
2619 push @bind_args, $args{branchcode};
2622 $query .= " WHERE " . join(" AND ", @bind_strs) if @bind_strs;
2623 $query .= " GROUP BY aqinvoices.invoiceid ";
2625 if($args{order_by}) {
2626 my ($column, $direction) = split / /, $args{order_by};
2627 if(grep /^$column$/, @columns) {
2628 $direction ||= 'ASC';
2629 $query .= " ORDER BY $column $direction";
2633 my $sth = $dbh->prepare($query);
2634 $sth->execute(@bind_args);
2636 my $results = $sth->fetchall_arrayref({});
2637 return @$results;
2640 =head3 GetInvoice
2642 my $invoice = GetInvoice($invoiceid);
2644 Get informations about invoice with given $invoiceid
2646 Return a hash filled with aqinvoices.* fields
2648 =cut
2650 sub GetInvoice {
2651 my ($invoiceid) = @_;
2652 my $invoice;
2654 return unless $invoiceid;
2656 my $dbh = C4::Context->dbh;
2657 my $query = qq{
2658 SELECT *
2659 FROM aqinvoices
2660 WHERE invoiceid = ?
2662 my $sth = $dbh->prepare($query);
2663 $sth->execute($invoiceid);
2665 $invoice = $sth->fetchrow_hashref;
2666 return $invoice;
2669 =head3 GetInvoiceDetails
2671 my $invoice = GetInvoiceDetails($invoiceid)
2673 Return informations about an invoice + the list of related order lines
2675 Orders informations are in $invoice->{orders} (array ref)
2677 =cut
2679 sub GetInvoiceDetails {
2680 my ($invoiceid) = @_;
2682 if ( !defined $invoiceid ) {
2683 carp 'GetInvoiceDetails called without an invoiceid';
2684 return;
2687 my $dbh = C4::Context->dbh;
2688 my $query = q{
2689 SELECT aqinvoices.*, aqbooksellers.name AS suppliername
2690 FROM aqinvoices
2691 LEFT JOIN aqbooksellers ON aqinvoices.booksellerid = aqbooksellers.id
2692 WHERE invoiceid = ?
2694 my $sth = $dbh->prepare($query);
2695 $sth->execute($invoiceid);
2697 my $invoice = $sth->fetchrow_hashref;
2699 $query = q{
2700 SELECT aqorders.*, biblio.*, aqbasket.basketname
2701 FROM aqorders
2702 LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
2703 LEFT JOIN biblio ON aqorders.biblionumber = biblio.biblionumber
2704 WHERE invoiceid = ?
2706 $sth = $dbh->prepare($query);
2707 $sth->execute($invoiceid);
2708 $invoice->{orders} = $sth->fetchall_arrayref({});
2709 $invoice->{orders} ||= []; # force an empty arrayref if fetchall_arrayref fails
2711 return $invoice;
2714 =head3 AddInvoice
2716 my $invoiceid = AddInvoice(
2717 invoicenumber => $invoicenumber,
2718 booksellerid => $booksellerid,
2719 shipmentdate => $shipmentdate,
2720 billingdate => $billingdate,
2721 closedate => $closedate,
2722 shipmentcost => $shipmentcost,
2723 shipmentcost_budgetid => $shipmentcost_budgetid
2726 Create a new invoice and return its id or undef if it fails.
2728 =cut
2730 sub AddInvoice {
2731 my %invoice = @_;
2733 return unless(%invoice and $invoice{invoicenumber});
2735 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2736 closedate shipmentcost shipmentcost_budgetid);
2738 my @set_strs;
2739 my @set_args;
2740 foreach my $key (keys %invoice) {
2741 if(0 < grep(/^$key$/, @columns)) {
2742 push @set_strs, "$key = ?";
2743 push @set_args, ($invoice{$key} || undef);
2747 my $rv;
2748 if(@set_args > 0) {
2749 my $dbh = C4::Context->dbh;
2750 my $query = "INSERT INTO aqinvoices SET ";
2751 $query .= join (",", @set_strs);
2752 my $sth = $dbh->prepare($query);
2753 $rv = $sth->execute(@set_args);
2754 if($rv) {
2755 $rv = $dbh->last_insert_id(undef, undef, 'aqinvoices', undef);
2758 return $rv;
2761 =head3 ModInvoice
2763 ModInvoice(
2764 invoiceid => $invoiceid, # Mandatory
2765 invoicenumber => $invoicenumber,
2766 booksellerid => $booksellerid,
2767 shipmentdate => $shipmentdate,
2768 billingdate => $billingdate,
2769 closedate => $closedate,
2770 shipmentcost => $shipmentcost,
2771 shipmentcost_budgetid => $shipmentcost_budgetid
2774 Modify an invoice, invoiceid is mandatory.
2776 Return undef if it fails.
2778 =cut
2780 sub ModInvoice {
2781 my %invoice = @_;
2783 return unless(%invoice and $invoice{invoiceid});
2785 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2786 closedate shipmentcost shipmentcost_budgetid);
2788 my @set_strs;
2789 my @set_args;
2790 foreach my $key (keys %invoice) {
2791 if(0 < grep(/^$key$/, @columns)) {
2792 push @set_strs, "$key = ?";
2793 push @set_args, ($invoice{$key} || undef);
2797 my $dbh = C4::Context->dbh;
2798 my $query = "UPDATE aqinvoices SET ";
2799 $query .= join(",", @set_strs);
2800 $query .= " WHERE invoiceid = ?";
2802 my $sth = $dbh->prepare($query);
2803 $sth->execute(@set_args, $invoice{invoiceid});
2806 =head3 CloseInvoice
2808 CloseInvoice($invoiceid);
2810 Close an invoice.
2812 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => undef);
2814 =cut
2816 sub CloseInvoice {
2817 my ($invoiceid) = @_;
2819 return unless $invoiceid;
2821 my $dbh = C4::Context->dbh;
2822 my $query = qq{
2823 UPDATE aqinvoices
2824 SET closedate = CAST(NOW() AS DATE)
2825 WHERE invoiceid = ?
2827 my $sth = $dbh->prepare($query);
2828 $sth->execute($invoiceid);
2831 =head3 ReopenInvoice
2833 ReopenInvoice($invoiceid);
2835 Reopen an invoice
2837 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => C4::Dates->new()->output('iso'))
2839 =cut
2841 sub ReopenInvoice {
2842 my ($invoiceid) = @_;
2844 return unless $invoiceid;
2846 my $dbh = C4::Context->dbh;
2847 my $query = qq{
2848 UPDATE aqinvoices
2849 SET closedate = NULL
2850 WHERE invoiceid = ?
2852 my $sth = $dbh->prepare($query);
2853 $sth->execute($invoiceid);
2856 =head3 DelInvoice
2858 DelInvoice($invoiceid);
2860 Delete an invoice if there are no items attached to it.
2862 =cut
2864 sub DelInvoice {
2865 my ($invoiceid) = @_;
2867 return unless $invoiceid;
2869 my $dbh = C4::Context->dbh;
2870 my $query = qq{
2871 SELECT COUNT(*)
2872 FROM aqorders
2873 WHERE invoiceid = ?
2875 my $sth = $dbh->prepare($query);
2876 $sth->execute($invoiceid);
2877 my $res = $sth->fetchrow_arrayref;
2878 if ( $res && $res->[0] == 0 ) {
2879 $query = qq{
2880 DELETE FROM aqinvoices
2881 WHERE invoiceid = ?
2883 my $sth = $dbh->prepare($query);
2884 return ( $sth->execute($invoiceid) > 0 );
2886 return;
2889 =head3 MergeInvoices
2891 MergeInvoices($invoiceid, \@sourceids);
2893 Merge the invoices identified by the IDs in \@sourceids into
2894 the invoice identified by $invoiceid.
2896 =cut
2898 sub MergeInvoices {
2899 my ($invoiceid, $sourceids) = @_;
2901 return unless $invoiceid;
2902 foreach my $sourceid (@$sourceids) {
2903 next if $sourceid == $invoiceid;
2904 my $source = GetInvoiceDetails($sourceid);
2905 foreach my $order (@{$source->{'orders'}}) {
2906 $order->{'invoiceid'} = $invoiceid;
2907 ModOrder($order);
2909 DelInvoice($source->{'invoiceid'});
2911 return;
2914 =head3 GetBiblioCountByBasketno
2916 $biblio_count = &GetBiblioCountByBasketno($basketno);
2918 Looks up the biblio's count that has basketno value $basketno
2920 Returns a quantity
2922 =cut
2924 sub GetBiblioCountByBasketno {
2925 my ($basketno) = @_;
2926 my $dbh = C4::Context->dbh;
2927 my $query = "
2928 SELECT COUNT( DISTINCT( biblionumber ) )
2929 FROM aqorders
2930 WHERE basketno = ?
2931 AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')
2934 my $sth = $dbh->prepare($query);
2935 $sth->execute($basketno);
2936 return $sth->fetchrow;
2940 __END__
2942 =head1 AUTHOR
2944 Koha Development Team <http://koha-community.org/>
2946 =cut