Bug 11699: fixed saving notes entered when receiving orders
[koha-ffzg.git] / C4 / Acquisition.pm
1 package C4::Acquisition;
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
15 #
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.
19
20
21 use strict;
22 use warnings;
23 use Carp;
24 use C4::Context;
25 use C4::Debug;
26 use C4::Dates qw(format_date format_date_in_iso);
27 use MARC::Record;
28 use C4::Suggestions;
29 use C4::Biblio;
30 use C4::Debug;
31 use C4::SQLHelper qw(InsertInTable UpdateInTable);
32 use C4::Bookseller qw(GetBookSellerFromId);
33 use C4::Templates qw(gettemplate);
34
35 use Time::localtime;
36 use HTML::Entities;
37
38 use vars qw($VERSION @ISA @EXPORT);
39
40 BEGIN {
41     # set the version for version checking
42     $VERSION = 3.07.00.049;
43     require Exporter;
44     @ISA    = qw(Exporter);
45     @EXPORT = qw(
46         &GetBasket &NewBasket &CloseBasket &ReopenBasket &DelBasket &ModBasket
47         &GetBasketAsCSV &GetBasketGroupAsCSV
48         &GetBasketsByBookseller &GetBasketsByBasketgroup
49         &GetBasketsInfosByBookseller
50
51         &GetBasketUsers &ModBasketUsers
52         &CanUserManageBasket
53
54         &ModBasketHeader
55
56         &ModBasketgroup &NewBasketgroup &DelBasketgroup &GetBasketgroup &CloseBasketgroup
57         &GetBasketgroups &ReOpenBasketgroup
58
59         &NewOrder &DelOrder &ModOrder &GetOrder &GetOrders &GetOrdersByBiblionumber
60         &GetLateOrders &GetOrderFromItemnumber
61         &SearchOrders &GetHistory &GetRecentAcqui
62         &ModReceiveOrder &CancelReceipt
63         &GetCancelledOrders &TransferOrder
64         &GetLastOrderNotReceivedFromSubscriptionid &GetLastOrderReceivedFromSubscriptionid
65         &NewOrderItem &ModItemOrder
66
67         &GetParcels &GetParcel
68         &GetContracts &GetContract
69
70         &GetInvoices
71         &GetInvoice
72         &GetInvoiceDetails
73         &AddInvoice
74         &ModInvoice
75         &CloseInvoice
76         &ReopenInvoice
77         &DelInvoice
78         &MergeInvoices
79
80         &GetItemnumbersFromOrder
81
82         &AddClaim
83         &GetBiblioCountByBasketno
84     );
85 }
86
87
88
89
90
91 sub GetOrderFromItemnumber {
92     my ($itemnumber) = @_;
93     my $dbh          = C4::Context->dbh;
94     my $query        = qq|
95
96     SELECT  * from aqorders    LEFT JOIN aqorders_items
97     ON (     aqorders.ordernumber = aqorders_items.ordernumber   )
98     WHERE itemnumber = ?  |;
99
100     my $sth = $dbh->prepare($query);
101
102 #    $sth->trace(3);
103
104     $sth->execute($itemnumber);
105
106     my $order = $sth->fetchrow_hashref;
107     return ( $order  );
108
109 }
110
111 # Returns the itemnumber(s) associated with the ordernumber given in parameter
112 sub GetItemnumbersFromOrder {
113     my ($ordernumber) = @_;
114     my $dbh          = C4::Context->dbh;
115     my $query        = "SELECT itemnumber FROM aqorders_items WHERE ordernumber=?";
116     my $sth = $dbh->prepare($query);
117     $sth->execute($ordernumber);
118     my @tab;
119
120     while (my $order = $sth->fetchrow_hashref) {
121     push @tab, $order->{'itemnumber'};
122     }
123
124     return @tab;
125
126 }
127
128
129
130
131
132
133 =head1 NAME
134
135 C4::Acquisition - Koha functions for dealing with orders and acquisitions
136
137 =head1 SYNOPSIS
138
139 use C4::Acquisition;
140
141 =head1 DESCRIPTION
142
143 The functions in this module deal with acquisitions, managing book
144 orders, basket and parcels.
145
146 =head1 FUNCTIONS
147
148 =head2 FUNCTIONS ABOUT BASKETS
149
150 =head3 GetBasket
151
152   $aqbasket = &GetBasket($basketnumber);
153
154 get all basket informations in aqbasket for a given basket
155
156 B<returns:> informations for a given basket returned as a hashref.
157
158 =cut
159
160 sub GetBasket {
161     my ($basketno) = @_;
162     my $dbh        = C4::Context->dbh;
163     my $query = "
164         SELECT  aqbasket.*,
165                 concat( b.firstname,' ',b.surname) AS authorisedbyname
166         FROM    aqbasket
167         LEFT JOIN borrowers b ON aqbasket.authorisedby=b.borrowernumber
168         WHERE basketno=?
169     ";
170     my $sth=$dbh->prepare($query);
171     $sth->execute($basketno);
172     my $basket = $sth->fetchrow_hashref;
173     return ( $basket );
174 }
175
176 #------------------------------------------------------------#
177
178 =head3 NewBasket
179
180   $basket = &NewBasket( $booksellerid, $authorizedby, $basketname, 
181       $basketnote, $basketbooksellernote, $basketcontractnumber, $deliveryplace, $billingplace );
182
183 Create a new basket in aqbasket table
184
185 =over
186
187 =item C<$booksellerid> is a foreign key in the aqbasket table
188
189 =item C<$authorizedby> is the username of who created the basket
190
191 =back
192
193 The other parameters are optional, see ModBasketHeader for more info on them.
194
195 =cut
196
197 sub NewBasket {
198     my ( $booksellerid, $authorisedby, $basketname, $basketnote,
199         $basketbooksellernote, $basketcontractnumber, $deliveryplace,
200         $billingplace ) = @_;
201     my $dbh = C4::Context->dbh;
202     my $query =
203         'INSERT INTO aqbasket (creationdate,booksellerid,authorisedby) '
204       . 'VALUES  (now(),?,?)';
205     $dbh->do( $query, {}, $booksellerid, $authorisedby );
206
207     my $basket = $dbh->{mysql_insertid};
208     $basketname           ||= q{}; # default to empty strings
209     $basketnote           ||= q{};
210     $basketbooksellernote ||= q{};
211     ModBasketHeader( $basket, $basketname, $basketnote, $basketbooksellernote,
212         $basketcontractnumber, $booksellerid, $deliveryplace, $billingplace );
213     return $basket;
214 }
215
216 #------------------------------------------------------------#
217
218 =head3 CloseBasket
219
220   &CloseBasket($basketno);
221
222 close a basket (becomes unmodifiable, except for receives)
223
224 =cut
225
226 sub CloseBasket {
227     my ($basketno) = @_;
228     my $dbh        = C4::Context->dbh;
229     my $query = "
230         UPDATE aqbasket
231         SET    closedate=now()
232         WHERE  basketno=?
233     ";
234     my $sth = $dbh->prepare($query);
235     $sth->execute($basketno);
236
237     my @orders = GetOrders($basketno);
238     foreach my $order (@orders) {
239         $query = qq{
240             UPDATE aqorders
241             SET orderstatus = 'ordered'
242             WHERE ordernumber = ?;
243         };
244         $sth = $dbh->prepare($query);
245         $sth->execute($order->{'ordernumber'});
246     }
247 }
248
249 =head3 ReopenBasket
250
251   &ReopenBasket($basketno);
252
253 reopen a basket
254
255 =cut
256
257 sub ReopenBasket {
258     my ($basketno) = @_;
259     my $dbh        = C4::Context->dbh;
260     my $query = "
261         UPDATE aqbasket
262         SET    closedate=NULL
263         WHERE  basketno=?
264     ";
265     my $sth = $dbh->prepare($query);
266     $sth->execute($basketno);
267
268     my @orders = GetOrders($basketno);
269     foreach my $order (@orders) {
270         $query = qq{
271             UPDATE aqorders
272             SET orderstatus = 'new'
273             WHERE ordernumber = ?;
274         };
275         $sth = $dbh->prepare($query);
276         $sth->execute($order->{'ordernumber'});
277     }
278 }
279
280 #------------------------------------------------------------#
281
282 =head3 GetBasketAsCSV
283
284   &GetBasketAsCSV($basketno);
285
286 Export a basket as CSV
287
288 $cgi parameter is needed for column name translation
289
290 =cut
291
292 sub GetBasketAsCSV {
293     my ($basketno, $cgi) = @_;
294     my $basket = GetBasket($basketno);
295     my @orders = GetOrders($basketno);
296     my $contract = GetContract($basket->{'contractnumber'});
297
298     my $template = C4::Templates::gettemplate("acqui/csv/basket.tmpl", "intranet", $cgi);
299
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->{'notes'},
314             quantity => $order->{'quantity'},
315             rrp => $order->{'rrp'},
316             deliveryplace => C4::Branch::GetBranchName( $basket->{'deliveryplace'} ),
317             billingplace => C4::Branch::GetBranchName( $basket->{'billingplace'} ),
318         };
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->{$_};
325         }
326         push @rows, $row;
327     }
328
329     @rows = sort {
330         if(defined $a->{publishercode} and defined $b->{publishercode}) {
331             $a->{publishercode} cmp $b->{publishercode};
332         }
333     } @rows;
334
335     $template->param(rows => \@rows);
336
337     return $template->output;
338 }
339
340
341 =head3 GetBasketGroupAsCSV
342
343 =over
344
345 &GetBasketGroupAsCSV($basketgroupid);
346
347 Export a basket group as CSV
348
349 $cgi parameter is needed for column name translation
350
351 =back
352
353 =cut
354
355 sub GetBasketGroupAsCSV {
356     my ($basketgroupid, $cgi) = @_;
357     my $baskets = GetBasketsByBasketgroup($basketgroupid);
358
359     my $template = C4::Templates::gettemplate('acqui/csv/basketgroup.tmpl', 'intranet', $cgi);
360
361     my @rows;
362     for my $basket (@$baskets) {
363         my @orders     = GetOrders( $$basket{basketno} );
364         my $contract   = GetContract( $$basket{contractnumber} );
365         my $bookseller = GetBookSellerFromId( $$basket{booksellerid} );
366         my $basketgroup = GetBasketgroup( $$basket{basketgroupid} );
367
368         foreach my $order (@orders) {
369             my $bd = GetBiblioData( $order->{'biblionumber'} );
370             my $row = {
371                 clientnumber => $bookseller->{accountnumber},
372                 basketname => $basket->{basketname},
373                 ordernumber => $order->{ordernumber},
374                 author => $bd->{author},
375                 title => $bd->{title},
376                 publishercode => $bd->{publishercode},
377                 publicationyear => $bd->{publicationyear},
378                 collectiontitle => $bd->{collectiontitle},
379                 isbn => $order->{isbn},
380                 quantity => $order->{quantity},
381                 rrp => $order->{rrp},
382                 discount => $bookseller->{discount},
383                 ecost => $order->{ecost},
384                 notes => $order->{notes},
385                 entrydate => $order->{entrydate},
386                 booksellername => $bookseller->{name},
387                 bookselleraddress => $bookseller->{address1},
388                 booksellerpostal => $bookseller->{postal},
389                 contractnumber => $contract->{contractnumber},
390                 contractname => $contract->{contractname},
391                 basketgroupdeliveryplace => C4::Branch::GetBranchName( $basketgroup->{deliveryplace} ),
392                 basketgroupbillingplace => C4::Branch::GetBranchName( $basketgroup->{billingplace} ),
393                 basketdeliveryplace => C4::Branch::GetBranchName( $basket->{deliveryplace} ),
394                 basketbillingplace => C4::Branch::GetBranchName( $basket->{billingplace} ),
395             };
396             foreach(qw(
397                 basketname author title publishercode collectiontitle notes
398                 booksellername bookselleraddress booksellerpostal contractname
399                 basketgroupdeliveryplace basketgroupbillingplace
400                 basketdeliveryplace basketbillingplace
401             ) ) {
402                 # Double the quotes to not be interpreted as a field end
403                 $row->{$_} =~ s/"/""/g if $row->{$_};
404             }
405             push @rows, $row;
406          }
407      }
408     $template->param(rows => \@rows);
409
410     return $template->output;
411
412 }
413
414 =head3 CloseBasketgroup
415
416   &CloseBasketgroup($basketgroupno);
417
418 close a basketgroup
419
420 =cut
421
422 sub CloseBasketgroup {
423     my ($basketgroupno) = @_;
424     my $dbh        = C4::Context->dbh;
425     my $sth = $dbh->prepare("
426         UPDATE aqbasketgroups
427         SET    closed=1
428         WHERE  id=?
429     ");
430     $sth->execute($basketgroupno);
431 }
432
433 #------------------------------------------------------------#
434
435 =head3 ReOpenBaskergroup($basketgroupno)
436
437   &ReOpenBaskergroup($basketgroupno);
438
439 reopen a basketgroup
440
441 =cut
442
443 sub ReOpenBasketgroup {
444     my ($basketgroupno) = @_;
445     my $dbh        = C4::Context->dbh;
446     my $sth = $dbh->prepare("
447         UPDATE aqbasketgroups
448         SET    closed=0
449         WHERE  id=?
450     ");
451     $sth->execute($basketgroupno);
452 }
453
454 #------------------------------------------------------------#
455
456
457 =head3 DelBasket
458
459   &DelBasket($basketno);
460
461 Deletes the basket that has basketno field $basketno in the aqbasket table.
462
463 =over
464
465 =item C<$basketno> is the primary key of the basket in the aqbasket table.
466
467 =back
468
469 =cut
470
471 sub DelBasket {
472     my ( $basketno ) = @_;
473     my $query = "DELETE FROM aqbasket WHERE basketno=?";
474     my $dbh = C4::Context->dbh;
475     my $sth = $dbh->prepare($query);
476     $sth->execute($basketno);
477     return;
478 }
479
480 #------------------------------------------------------------#
481
482 =head3 ModBasket
483
484   &ModBasket($basketinfo);
485
486 Modifies a basket, using a hashref $basketinfo for the relevant information, only $basketinfo->{'basketno'} is required.
487
488 =over
489
490 =item C<$basketno> is the primary key of the basket in the aqbasket table.
491
492 =back
493
494 =cut
495
496 sub ModBasket {
497     my $basketinfo = shift;
498     my $query = "UPDATE aqbasket SET ";
499     my @params;
500     foreach my $key (keys %$basketinfo){
501         if ($key ne 'basketno'){
502             $query .= "$key=?, ";
503             push(@params, $basketinfo->{$key} || undef );
504         }
505     }
506 # get rid of the "," at the end of $query
507     if (substr($query, length($query)-2) eq ', '){
508         chop($query);
509         chop($query);
510         $query .= ' ';
511     }
512     $query .= "WHERE basketno=?";
513     push(@params, $basketinfo->{'basketno'});
514     my $dbh = C4::Context->dbh;
515     my $sth = $dbh->prepare($query);
516     $sth->execute(@params);
517
518     return;
519 }
520
521 #------------------------------------------------------------#
522
523 =head3 ModBasketHeader
524
525   &ModBasketHeader($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid);
526
527 Modifies a basket's header.
528
529 =over
530
531 =item C<$basketno> is the "basketno" field in the "aqbasket" table;
532
533 =item C<$basketname> is the "basketname" field in the "aqbasket" table;
534
535 =item C<$note> is the "note" field in the "aqbasket" table;
536
537 =item C<$booksellernote> is the "booksellernote" field in the "aqbasket" table;
538
539 =item C<$contractnumber> is the "contractnumber" (foreign) key in the "aqbasket" table.
540
541 =item C<$booksellerid> is the id (foreign) key in the "aqbooksellers" table for the vendor.
542
543 =item C<$deliveryplace> is the "deliveryplace" field in the aqbasket table.
544
545 =item C<$billingplace> is the "billingplace" field in the aqbasket table.
546
547 =back
548
549 =cut
550
551 sub ModBasketHeader {
552     my ($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid, $deliveryplace, $billingplace) = @_;
553     my $query = qq{
554         UPDATE aqbasket
555         SET basketname=?, note=?, booksellernote=?, booksellerid=?, deliveryplace=?, billingplace=?
556         WHERE basketno=?
557     };
558
559     my $dbh = C4::Context->dbh;
560     my $sth = $dbh->prepare($query);
561     $sth->execute($basketname, $note, $booksellernote, $booksellerid, $deliveryplace, $billingplace, $basketno);
562
563     if ( $contractnumber ) {
564         my $query2 ="UPDATE aqbasket SET contractnumber=? WHERE basketno=?";
565         my $sth2 = $dbh->prepare($query2);
566         $sth2->execute($contractnumber,$basketno);
567     }
568     return;
569 }
570
571 #------------------------------------------------------------#
572
573 =head3 GetBasketsByBookseller
574
575   @results = &GetBasketsByBookseller($booksellerid, $extra);
576
577 Returns a list of hashes of all the baskets that belong to bookseller 'booksellerid'.
578
579 =over
580
581 =item C<$booksellerid> is the 'id' field of the bookseller in the aqbooksellers table
582
583 =item C<$extra> is the extra sql parameters, can be
584
585  $extra->{groupby}: group baskets by column
586     ex. $extra->{groupby} = aqbasket.basketgroupid
587  $extra->{orderby}: order baskets by column
588  $extra->{limit}: limit number of results (can be helpful for pagination)
589
590 =back
591
592 =cut
593
594 sub GetBasketsByBookseller {
595     my ($booksellerid, $extra) = @_;
596     my $query = "SELECT * FROM aqbasket WHERE booksellerid=?";
597     if ($extra){
598         if ($extra->{groupby}) {
599             $query .= " GROUP by $extra->{groupby}";
600         }
601         if ($extra->{orderby}){
602             $query .= " ORDER by $extra->{orderby}";
603         }
604         if ($extra->{limit}){
605             $query .= " LIMIT $extra->{limit}";
606         }
607     }
608     my $dbh = C4::Context->dbh;
609     my $sth = $dbh->prepare($query);
610     $sth->execute($booksellerid);
611     return $sth->fetchall_arrayref({});
612 }
613
614 =head3 GetBasketsInfosByBookseller
615
616     my $baskets = GetBasketsInfosByBookseller($supplierid, $allbaskets);
617
618 The optional second parameter allbaskets is a boolean allowing you to
619 select all baskets from the supplier; by default only active baskets (open or 
620 closed but still something to receive) are returned.
621
622 Returns in a arrayref of hashref all about booksellers baskets, plus:
623     total_biblios: Number of distinct biblios in basket
624     total_items: Number of items in basket
625     expected_items: Number of non-received items in basket
626
627 =cut
628
629 sub GetBasketsInfosByBookseller {
630     my ($supplierid, $allbaskets) = @_;
631
632     return unless $supplierid;
633
634     my $dbh = C4::Context->dbh;
635     my $query = qq{
636         SELECT aqbasket.*,
637           SUM(aqorders.quantity) AS total_items,
638           COUNT(DISTINCT aqorders.biblionumber) AS total_biblios,
639           SUM(
640             IF(aqorders.datereceived IS NULL
641               AND aqorders.datecancellationprinted IS NULL
642             , aqorders.quantity
643             , 0)
644           ) AS expected_items
645         FROM aqbasket
646           LEFT JOIN aqorders ON aqorders.basketno = aqbasket.basketno
647         WHERE booksellerid = ?};
648     if(!$allbaskets) {
649         $query.=" AND (closedate IS NULL OR (aqorders.quantity > aqorders.quantityreceived AND datecancellationprinted IS NULL))";
650     }
651     $query.=" GROUP BY aqbasket.basketno";
652
653     my $sth = $dbh->prepare($query);
654     $sth->execute($supplierid);
655     return $sth->fetchall_arrayref({});
656 }
657
658 =head3 GetBasketUsers
659
660     $basketusers_ids = &GetBasketUsers($basketno);
661
662 Returns a list of all borrowernumbers that are in basket users list
663
664 =cut
665
666 sub GetBasketUsers {
667     my $basketno = shift;
668
669     return unless $basketno;
670
671     my $query = qq{
672         SELECT borrowernumber
673         FROM aqbasketusers
674         WHERE basketno = ?
675     };
676     my $dbh = C4::Context->dbh;
677     my $sth = $dbh->prepare($query);
678     $sth->execute($basketno);
679     my $results = $sth->fetchall_arrayref( {} );
680
681     my @borrowernumbers;
682     foreach (@$results) {
683         push @borrowernumbers, $_->{'borrowernumber'};
684     }
685
686     return @borrowernumbers;
687 }
688
689 =head3 ModBasketUsers
690
691     my @basketusers_ids = (1, 2, 3);
692     &ModBasketUsers($basketno, @basketusers_ids);
693
694 Delete all users from basket users list, and add users in C<@basketusers_ids>
695 to this users list.
696
697 =cut
698
699 sub ModBasketUsers {
700     my ($basketno, @basketusers_ids) = @_;
701
702     return unless $basketno;
703
704     my $dbh = C4::Context->dbh;
705     my $query = qq{
706         DELETE FROM aqbasketusers
707         WHERE basketno = ?
708     };
709     my $sth = $dbh->prepare($query);
710     $sth->execute($basketno);
711
712     $query = qq{
713         INSERT INTO aqbasketusers (basketno, borrowernumber)
714         VALUES (?, ?)
715     };
716     $sth = $dbh->prepare($query);
717     foreach my $basketuser_id (@basketusers_ids) {
718         $sth->execute($basketno, $basketuser_id);
719     }
720     return;
721 }
722
723 =head3 CanUserManageBasket
724
725     my $bool = CanUserManageBasket($borrower, $basket[, $userflags]);
726     my $bool = CanUserManageBasket($borrowernumber, $basketno[, $userflags]);
727
728 Check if a borrower can manage a basket, according to system preference
729 AcqViewBaskets, user permissions and basket properties (creator, users list,
730 branch).
731
732 First parameter can be either a borrowernumber or a hashref as returned by
733 C4::Members::GetMember.
734
735 Second parameter can be either a basketno or a hashref as returned by
736 C4::Acquisition::GetBasket.
737
738 The third parameter is optional. If given, it should be a hashref as returned
739 by C4::Auth::getuserflags. If not, getuserflags is called.
740
741 If user is authorised to manage basket, returns 1.
742 Otherwise returns 0.
743
744 =cut
745
746 sub CanUserManageBasket {
747     my ($borrower, $basket, $userflags) = @_;
748
749     if (!ref $borrower) {
750         $borrower = C4::Members::GetMember(borrowernumber => $borrower);
751     }
752     if (!ref $basket) {
753         $basket = GetBasket($basket);
754     }
755
756     return 0 unless ($basket and $borrower);
757
758     my $borrowernumber = $borrower->{borrowernumber};
759     my $basketno = $basket->{basketno};
760
761     my $AcqViewBaskets = C4::Context->preference('AcqViewBaskets');
762
763     if (!defined $userflags) {
764         my $dbh = C4::Context->dbh;
765         my $sth = $dbh->prepare("SELECT flags FROM borrowers WHERE borrowernumber = ?");
766         $sth->execute($borrowernumber);
767         my ($flags) = $sth->fetchrow_array;
768         $sth->finish;
769
770         $userflags = C4::Auth::getuserflags($flags, $borrower->{userid}, $dbh);
771     }
772
773     unless ($userflags->{superlibrarian}
774     || (ref $userflags->{acquisition} && $userflags->{acquisition}->{order_manage_all})
775     || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
776     {
777         if (not exists $userflags->{acquisition}) {
778             return 0;
779         }
780
781         if ( (ref $userflags->{acquisition} && !$userflags->{acquisition}->{order_manage})
782         || (!ref $userflags->{acquisition} && !$userflags->{acquisition}) ) {
783             return 0;
784         }
785
786         if ($AcqViewBaskets eq 'user'
787         && $basket->{authorisedby} != $borrowernumber
788         && grep($borrowernumber, GetBasketUsers($basketno)) == 0) {
789             return 0;
790         }
791
792         if ($AcqViewBaskets eq 'branch' && defined $basket->{branch}
793         && $basket->{branch} ne $borrower->{branchcode}) {
794             return 0;
795         }
796     }
797
798     return 1;
799 }
800
801 #------------------------------------------------------------#
802
803 =head3 GetBasketsByBasketgroup
804
805   $baskets = &GetBasketsByBasketgroup($basketgroupid);
806
807 Returns a reference to all baskets that belong to basketgroup $basketgroupid.
808
809 =cut
810
811 sub GetBasketsByBasketgroup {
812     my $basketgroupid = shift;
813     my $query = qq{
814         SELECT *, aqbasket.booksellerid as booksellerid
815         FROM aqbasket
816         LEFT JOIN aqcontract USING(contractnumber) WHERE basketgroupid=?
817     };
818     my $dbh = C4::Context->dbh;
819     my $sth = $dbh->prepare($query);
820     $sth->execute($basketgroupid);
821     return $sth->fetchall_arrayref({});
822 }
823
824 #------------------------------------------------------------#
825
826 =head3 NewBasketgroup
827
828   $basketgroupid = NewBasketgroup(\%hashref);
829
830 Adds a basketgroup to the aqbasketgroups table, and add the initial baskets to it.
831
832 $hashref->{'booksellerid'} is the 'id' field of the bookseller in the aqbooksellers table,
833
834 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
835
836 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
837
838 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
839
840 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
841
842 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
843
844 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
845
846 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
847
848 =cut
849
850 sub NewBasketgroup {
851     my $basketgroupinfo = shift;
852     die "booksellerid is required to create a basketgroup" unless $basketgroupinfo->{'booksellerid'};
853     my $query = "INSERT INTO aqbasketgroups (";
854     my @params;
855     foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
856         if ( defined $basketgroupinfo->{$field} ) {
857             $query .= "$field, ";
858             push(@params, $basketgroupinfo->{$field});
859         }
860     }
861     $query .= "booksellerid) VALUES (";
862     foreach (@params) {
863         $query .= "?, ";
864     }
865     $query .= "?)";
866     push(@params, $basketgroupinfo->{'booksellerid'});
867     my $dbh = C4::Context->dbh;
868     my $sth = $dbh->prepare($query);
869     $sth->execute(@params);
870     my $basketgroupid = $dbh->{'mysql_insertid'};
871     if( $basketgroupinfo->{'basketlist'} ) {
872         foreach my $basketno (@{$basketgroupinfo->{'basketlist'}}) {
873             my $query2 = "UPDATE aqbasket SET basketgroupid=? WHERE basketno=?";
874             my $sth2 = $dbh->prepare($query2);
875             $sth2->execute($basketgroupid, $basketno);
876         }
877     }
878     return $basketgroupid;
879 }
880
881 #------------------------------------------------------------#
882
883 =head3 ModBasketgroup
884
885   ModBasketgroup(\%hashref);
886
887 Modifies a basketgroup in the aqbasketgroups table, and add the baskets to it.
888
889 $hashref->{'id'} is the 'id' field of the basketgroup in the aqbasketgroup table, this parameter is mandatory,
890
891 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
892
893 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
894
895 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
896
897 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
898
899 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
900
901 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
902
903 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
904
905 =cut
906
907 sub ModBasketgroup {
908     my $basketgroupinfo = shift;
909     die "basketgroup id is required to edit a basketgroup" unless $basketgroupinfo->{'id'};
910     my $dbh = C4::Context->dbh;
911     my $query = "UPDATE aqbasketgroups SET ";
912     my @params;
913     foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
914         if ( defined $basketgroupinfo->{$field} ) {
915             $query .= "$field=?, ";
916             push(@params, $basketgroupinfo->{$field});
917         }
918     }
919     chop($query);
920     chop($query);
921     $query .= " WHERE id=?";
922     push(@params, $basketgroupinfo->{'id'});
923     my $sth = $dbh->prepare($query);
924     $sth->execute(@params);
925
926     $sth = $dbh->prepare('UPDATE aqbasket SET basketgroupid = NULL WHERE basketgroupid = ?');
927     $sth->execute($basketgroupinfo->{'id'});
928
929     if($basketgroupinfo->{'basketlist'} && @{$basketgroupinfo->{'basketlist'}}){
930         $sth = $dbh->prepare("UPDATE aqbasket SET basketgroupid=? WHERE basketno=?");
931         foreach my $basketno (@{$basketgroupinfo->{'basketlist'}}) {
932             $sth->execute($basketgroupinfo->{'id'}, $basketno);
933         }
934     }
935     return;
936 }
937
938 #------------------------------------------------------------#
939
940 =head3 DelBasketgroup
941
942   DelBasketgroup($basketgroupid);
943
944 Deletes a basketgroup in the aqbasketgroups table, and removes the reference to it from the baskets,
945
946 =over
947
948 =item C<$basketgroupid> is the 'id' field of the basket in the aqbasketgroup table
949
950 =back
951
952 =cut
953
954 sub DelBasketgroup {
955     my $basketgroupid = shift;
956     die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
957     my $query = "DELETE FROM aqbasketgroups WHERE id=?";
958     my $dbh = C4::Context->dbh;
959     my $sth = $dbh->prepare($query);
960     $sth->execute($basketgroupid);
961     return;
962 }
963
964 #------------------------------------------------------------#
965
966
967 =head2 FUNCTIONS ABOUT ORDERS
968
969 =head3 GetBasketgroup
970
971   $basketgroup = &GetBasketgroup($basketgroupid);
972
973 Returns a reference to the hash containing all information about the basketgroup.
974
975 =cut
976
977 sub GetBasketgroup {
978     my $basketgroupid = shift;
979     die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
980     my $dbh = C4::Context->dbh;
981     my $result_set = $dbh->selectall_arrayref(
982         'SELECT * FROM aqbasketgroups WHERE id=?',
983         { Slice => {} },
984         $basketgroupid
985     );
986     return $result_set->[0];    # id is unique
987 }
988
989 #------------------------------------------------------------#
990
991 =head3 GetBasketgroups
992
993   $basketgroups = &GetBasketgroups($booksellerid);
994
995 Returns a reference to the array of all the basketgroups of bookseller $booksellerid.
996
997 =cut
998
999 sub GetBasketgroups {
1000     my $booksellerid = shift;
1001     die 'bookseller id is required to edit a basketgroup' unless $booksellerid;
1002     my $query = 'SELECT * FROM aqbasketgroups WHERE booksellerid=? ORDER BY id DESC';
1003     my $dbh = C4::Context->dbh;
1004     my $sth = $dbh->prepare($query);
1005     $sth->execute($booksellerid);
1006     return $sth->fetchall_arrayref({});
1007 }
1008
1009 #------------------------------------------------------------#
1010
1011 =head2 FUNCTIONS ABOUT ORDERS
1012
1013 =head3 GetOrders
1014
1015   @orders = &GetOrders($basketnumber, $orderby);
1016
1017 Looks up the pending (non-cancelled) orders with the given basket
1018 number. If C<$booksellerID> is non-empty, only orders from that seller
1019 are returned.
1020
1021 return :
1022 C<&basket> returns a two-element array. C<@orders> is an array of
1023 references-to-hash, whose keys are the fields from the aqorders,
1024 biblio, and biblioitems tables in the Koha database.
1025
1026 =cut
1027
1028 sub GetOrders {
1029     my ( $basketno, $orderby ) = @_;
1030     return () unless $basketno;
1031     my $dbh   = C4::Context->dbh;
1032     my $query  ="
1033         SELECT biblio.*,biblioitems.*,
1034                 aqorders.*,
1035                 aqbudgets.*,
1036                 biblio.title,
1037                 aqorders_transfers.ordernumber_from AS transferred_from,
1038                 aqorders_transfers.timestamp AS transferred_from_timestamp
1039         FROM    aqorders
1040             LEFT JOIN aqbudgets        ON aqbudgets.budget_id = aqorders.budget_id
1041             LEFT JOIN biblio           ON biblio.biblionumber = aqorders.biblionumber
1042             LEFT JOIN biblioitems      ON biblioitems.biblionumber =biblio.biblionumber
1043             LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_to = aqorders.ordernumber
1044         WHERE   basketno=?
1045             AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')
1046     ";
1047
1048     $orderby = "biblioitems.publishercode,biblio.title" unless $orderby;
1049     $query .= " ORDER BY $orderby";
1050     my $result_set =
1051       $dbh->selectall_arrayref( $query, { Slice => {} }, $basketno );
1052     return @{$result_set};
1053
1054 }
1055
1056 #------------------------------------------------------------#
1057 =head3 GetOrdersByBiblionumber
1058
1059   @orders = &GetOrdersByBiblionumber($biblionumber);
1060
1061 Looks up the orders with linked to a specific $biblionumber, including
1062 cancelled orders and received orders.
1063
1064 return :
1065 C<@orders> is an array of references-to-hash, whose keys are the
1066 fields from the aqorders, biblio, and biblioitems tables in the Koha database.
1067
1068 =cut
1069
1070 sub GetOrdersByBiblionumber {
1071     my $biblionumber = shift;
1072     return unless $biblionumber;
1073     my $dbh   = C4::Context->dbh;
1074     my $query  ="
1075         SELECT biblio.*,biblioitems.*,
1076                 aqorders.*,
1077                 aqbudgets.*
1078         FROM    aqorders
1079             LEFT JOIN aqbudgets        ON aqbudgets.budget_id = aqorders.budget_id
1080             LEFT JOIN biblio           ON biblio.biblionumber = aqorders.biblionumber
1081             LEFT JOIN biblioitems      ON biblioitems.biblionumber =biblio.biblionumber
1082         WHERE   aqorders.biblionumber=?
1083     ";
1084     my $result_set =
1085       $dbh->selectall_arrayref( $query, { Slice => {} }, $biblionumber );
1086     return @{$result_set};
1087
1088 }
1089
1090 #------------------------------------------------------------#
1091
1092 =head3 GetOrder
1093
1094   $order = &GetOrder($ordernumber);
1095
1096 Looks up an order by order number.
1097
1098 Returns a reference-to-hash describing the order. The keys of
1099 C<$order> are fields from the biblio, biblioitems, aqorders tables of the Koha database.
1100
1101 =cut
1102
1103 sub GetOrder {
1104     my ($ordernumber) = @_;
1105     return unless $ordernumber;
1106
1107     my $dbh      = C4::Context->dbh;
1108     my $query = qq{SELECT
1109                 aqorders.*,
1110                 biblio.title,
1111                 biblio.author,
1112                 aqbasket.basketname,
1113                 borrowers.branchcode,
1114                 biblioitems.publicationyear,
1115                 biblio.copyrightdate,
1116                 biblioitems.editionstatement,
1117                 biblioitems.isbn,
1118                 biblioitems.ean,
1119                 biblio.seriestitle,
1120                 biblioitems.publishercode,
1121                 aqorders.rrp              AS unitpricesupplier,
1122                 aqorders.ecost            AS unitpricelib,
1123                 aqorders.claims_count     AS claims_count,
1124                 aqorders.claimed_date     AS claimed_date,
1125                 aqbudgets.budget_name     AS budget,
1126                 aqbooksellers.name        AS supplier,
1127                 aqbooksellers.id          AS supplierid,
1128                 biblioitems.publishercode AS publisher,
1129                 ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) AS estimateddeliverydate,
1130                 DATE(aqbasket.closedate)  AS orderdate,
1131                 aqorders.quantity - COALESCE(aqorders.quantityreceived,0)                 AS quantity_to_receive,
1132                 (aqorders.quantity - COALESCE(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
1133                 DATEDIFF(CURDATE( ),closedate) AS latesince
1134                 FROM aqorders LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1135                 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
1136                 LEFT JOIN aqbudgets ON aqorders.budget_id = aqbudgets.budget_id,
1137                 aqbasket LEFT JOIN borrowers  ON aqbasket.authorisedby = borrowers.borrowernumber
1138                 LEFT JOIN aqbooksellers       ON aqbasket.booksellerid = aqbooksellers.id
1139                 WHERE aqorders.basketno = aqbasket.basketno
1140                     AND ordernumber=?};
1141     my $result_set =
1142       $dbh->selectall_arrayref( $query, { Slice => {} }, $ordernumber );
1143
1144     # result_set assumed to contain 1 match
1145     return $result_set->[0];
1146 }
1147
1148 =head3 GetLastOrderNotReceivedFromSubscriptionid
1149
1150   $order = &GetLastOrderNotReceivedFromSubscriptionid($subscriptionid);
1151
1152 Returns a reference-to-hash describing the last order not received for a subscription.
1153
1154 =cut
1155
1156 sub GetLastOrderNotReceivedFromSubscriptionid {
1157     my ( $subscriptionid ) = @_;
1158     my $dbh                = C4::Context->dbh;
1159     my $query              = qq|
1160         SELECT * FROM aqorders
1161         LEFT JOIN subscription
1162             ON ( aqorders.subscriptionid = subscription.subscriptionid )
1163         WHERE aqorders.subscriptionid = ?
1164             AND aqorders.datereceived IS NULL
1165         LIMIT 1
1166     |;
1167     my $result_set =
1168       $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid );
1169
1170     # result_set assumed to contain 1 match
1171     return $result_set->[0];
1172 }
1173
1174 =head3 GetLastOrderReceivedFromSubscriptionid
1175
1176   $order = &GetLastOrderReceivedFromSubscriptionid($subscriptionid);
1177
1178 Returns a reference-to-hash describing the last order received for a subscription.
1179
1180 =cut
1181
1182 sub GetLastOrderReceivedFromSubscriptionid {
1183     my ( $subscriptionid ) = @_;
1184     my $dbh                = C4::Context->dbh;
1185     my $query              = qq|
1186         SELECT * FROM aqorders
1187         LEFT JOIN subscription
1188             ON ( aqorders.subscriptionid = subscription.subscriptionid )
1189         WHERE aqorders.subscriptionid = ?
1190             AND aqorders.datereceived =
1191                 (
1192                     SELECT MAX( aqorders.datereceived )
1193                     FROM aqorders
1194                     LEFT JOIN subscription
1195                         ON ( aqorders.subscriptionid = subscription.subscriptionid )
1196                         WHERE aqorders.subscriptionid = ?
1197                             AND aqorders.datereceived IS NOT NULL
1198                 )
1199         ORDER BY ordernumber DESC
1200         LIMIT 1
1201     |;
1202     my $result_set =
1203       $dbh->selectall_arrayref( $query, { Slice => {} }, $subscriptionid, $subscriptionid );
1204
1205     # result_set assumed to contain 1 match
1206     return $result_set->[0];
1207
1208 }
1209
1210
1211 #------------------------------------------------------------#
1212
1213 =head3 NewOrder
1214
1215   &NewOrder(\%hashref);
1216
1217 Adds a new order to the database. Any argument that isn't described
1218 below is the new value of the field with the same name in the aqorders
1219 table of the Koha database.
1220
1221 =over
1222
1223 =item $hashref->{'basketno'} is the basketno foreign key in aqorders, it is mandatory
1224
1225 =item $hashref->{'ordernumber'} is a "minimum order number."
1226
1227 =item $hashref->{'budgetdate'} is effectively ignored.
1228 If it's undef (anything false) or the string 'now', the current day is used.
1229 Else, the upcoming July 1st is used.
1230
1231 =item $hashref->{'subscription'} may be either "yes", or anything else for "no".
1232
1233 =item $hashref->{'uncertainprice'} may be 0 for "the price is known" or 1 for "the price is uncertain"
1234
1235 =item defaults entrydate to Now
1236
1237 The following keys are used: "biblionumber", "title", "basketno", "quantity", "notes", "rrp", "ecost", "gstrate", "unitprice", "subscription", "sort1", "sort2", "booksellerinvoicenumber", "listprice", "budgetdate", "purchaseordernumber", "branchcode", "booksellerinvoicenumber", "budget_id".
1238
1239 =back
1240
1241 =cut
1242
1243 sub NewOrder {
1244     my $orderinfo = shift;
1245
1246     my $dbh = C4::Context->dbh;
1247     my @params;
1248
1249
1250     # if these parameters are missing, we can't continue
1251     for my $key (qw/basketno quantity biblionumber budget_id/) {
1252         croak "Mandatory parameter $key missing" unless $orderinfo->{$key};
1253     }
1254
1255     if ( defined $orderinfo->{subscription} && $orderinfo->{'subscription'} eq 'yes' ) {
1256         $orderinfo->{'subscription'} = 1;
1257     } else {
1258         $orderinfo->{'subscription'} = 0;
1259     }
1260     $orderinfo->{'entrydate'} ||= C4::Dates->new()->output("iso");
1261     if (!$orderinfo->{quantityreceived}) {
1262         $orderinfo->{quantityreceived} = 0;
1263     }
1264
1265     my $ordernumber=InsertInTable("aqorders",$orderinfo);
1266     if (not $orderinfo->{parent_ordernumber}) {
1267         my $sth = $dbh->prepare("
1268             UPDATE aqorders
1269             SET parent_ordernumber = ordernumber
1270             WHERE ordernumber = ?
1271         ");
1272         $sth->execute($ordernumber);
1273     }
1274     return ( $orderinfo->{'basketno'}, $ordernumber );
1275 }
1276
1277
1278
1279 #------------------------------------------------------------#
1280
1281 =head3 NewOrderItem
1282
1283   &NewOrderItem();
1284
1285 =cut
1286
1287 sub NewOrderItem {
1288     my ($itemnumber, $ordernumber)  = @_;
1289     my $dbh = C4::Context->dbh;
1290     my $query = qq|
1291             INSERT INTO aqorders_items
1292                 (itemnumber, ordernumber)
1293             VALUES (?,?)    |;
1294
1295     my $sth = $dbh->prepare($query);
1296     $sth->execute( $itemnumber, $ordernumber);
1297 }
1298
1299 #------------------------------------------------------------#
1300
1301 =head3 ModOrder
1302
1303   &ModOrder(\%hashref);
1304
1305 Modifies an existing order. Updates the order with order number
1306 $hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All 
1307 other keys of the hash update the fields with the same name in the aqorders 
1308 table of the Koha database.
1309
1310 =cut
1311
1312 sub ModOrder {
1313     my $orderinfo = shift;
1314
1315     die "Ordernumber is required"     if $orderinfo->{'ordernumber'} eq  '' ;
1316     die "Biblionumber is required"  if  $orderinfo->{'biblionumber'} eq '';
1317
1318     my $dbh = C4::Context->dbh;
1319     my @params;
1320
1321     # update uncertainprice to an integer, just in case (under FF, checked boxes have the value "ON" by default)
1322     $orderinfo->{uncertainprice}=1 if $orderinfo->{uncertainprice};
1323
1324 #    delete($orderinfo->{'branchcode'});
1325     # the hash contains a lot of entries not in aqorders, so get the columns ...
1326     my $sth = $dbh->prepare("SELECT * FROM aqorders LIMIT 1;");
1327     $sth->execute;
1328     my $colnames = $sth->{NAME};
1329         #FIXME Be careful. If aqorders would have columns with diacritics,
1330         #you should need to decode what you get back from NAME.
1331         #See report 10110 and guided_reports.pl
1332     my $query = "UPDATE aqorders SET ";
1333
1334     foreach my $orderinfokey (grep(!/ordernumber/, keys %$orderinfo)){
1335         # ... and skip hash entries that are not in the aqorders table
1336         # FIXME : probably not the best way to do it (would be better to have a correct hash)
1337         next unless grep(/^$orderinfokey$/, @$colnames);
1338             $query .= "$orderinfokey=?, ";
1339             push(@params, $orderinfo->{$orderinfokey});
1340     }
1341
1342     $query .= "timestamp=NOW()  WHERE  ordernumber=?";
1343     push(@params, $orderinfo->{'ordernumber'} );
1344     $sth = $dbh->prepare($query);
1345     $sth->execute(@params);
1346     return;
1347 }
1348
1349 #------------------------------------------------------------#
1350
1351 =head3 ModItemOrder
1352
1353     ModItemOrder($itemnumber, $ordernumber);
1354
1355 Modifies the ordernumber of an item in aqorders_items.
1356
1357 =cut
1358
1359 sub ModItemOrder {
1360     my ($itemnumber, $ordernumber) = @_;
1361
1362     return unless ($itemnumber and $ordernumber);
1363
1364     my $dbh = C4::Context->dbh;
1365     my $query = qq{
1366         UPDATE aqorders_items
1367         SET ordernumber = ?
1368         WHERE itemnumber = ?
1369     };
1370     my $sth = $dbh->prepare($query);
1371     return $sth->execute($ordernumber, $itemnumber);
1372 }
1373
1374 #------------------------------------------------------------#
1375
1376 =head3 GetCancelledOrders
1377
1378   my @orders = GetCancelledOrders($basketno, $orderby);
1379
1380 Returns cancelled orders for a basket
1381
1382 =cut
1383
1384 sub GetCancelledOrders {
1385     my ( $basketno, $orderby ) = @_;
1386
1387     return () unless $basketno;
1388
1389     my $dbh   = C4::Context->dbh;
1390     my $query = "
1391         SELECT
1392             biblio.*,
1393             biblioitems.*,
1394             aqorders.*,
1395             aqbudgets.*,
1396             aqorders_transfers.ordernumber_to AS transferred_to,
1397             aqorders_transfers.timestamp AS transferred_to_timestamp
1398         FROM aqorders
1399           LEFT JOIN aqbudgets   ON aqbudgets.budget_id = aqorders.budget_id
1400           LEFT JOIN biblio      ON biblio.biblionumber = aqorders.biblionumber
1401           LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
1402           LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_from = aqorders.ordernumber
1403         WHERE basketno = ?
1404           AND (datecancellationprinted IS NOT NULL
1405                AND datecancellationprinted <> '0000-00-00')
1406     ";
1407
1408     $orderby = "aqorders.datecancellationprinted desc, aqorders.timestamp desc"
1409         unless $orderby;
1410     $query .= " ORDER BY $orderby";
1411     my $sth = $dbh->prepare($query);
1412     $sth->execute($basketno);
1413     my $results = $sth->fetchall_arrayref( {} );
1414
1415     return @$results;
1416 }
1417
1418
1419 #------------------------------------------------------------#
1420
1421 =head3 ModReceiveOrder
1422
1423   &ModReceiveOrder($biblionumber, $ordernumber, $quantityreceived, $user,
1424     $cost, $ecost, $invoiceid, rrp, budget_id, datereceived, \@received_itemnumbers);
1425
1426 Updates an order, to reflect the fact that it was received, at least
1427 in part. All arguments not mentioned below update the fields with the
1428 same name in the aqorders table of the Koha database.
1429
1430 If a partial order is received, splits the order into two.
1431
1432 Updates the order with bibilionumber C<$biblionumber> and ordernumber
1433 C<$ordernumber>.
1434
1435 =cut
1436
1437
1438 sub ModReceiveOrder {
1439     my (
1440         $biblionumber,    $ordernumber,  $quantrec, $user, $cost, $ecost,
1441         $invoiceid, $rrp, $budget_id, $datereceived, $received_items, $notes
1442     )
1443     = @_;
1444
1445     my $dbh = C4::Context->dbh;
1446     $datereceived = C4::Dates->output('iso') unless $datereceived;
1447     my $suggestionid = GetSuggestionFromBiblionumber( $biblionumber );
1448     if ($suggestionid) {
1449         ModSuggestion( {suggestionid=>$suggestionid,
1450                         STATUS=>'AVAILABLE',
1451                         biblionumber=> $biblionumber}
1452                         );
1453     }
1454
1455     my $result_set = $dbh->selectall_arrayref(
1456 q{SELECT * FROM aqorders WHERE biblionumber=? AND aqorders.ordernumber=?},
1457         { Slice => {} }, $biblionumber, $ordernumber
1458     );
1459
1460     # we assume we have a unique order
1461     my $order = $result_set->[0];
1462
1463     my $new_ordernumber = $ordernumber;
1464     if ( $order->{quantity} > $quantrec ) {
1465         # Split order line in two parts: the first is the original order line
1466         # without received items (the quantity is decreased),
1467         # the second part is a new order line with quantity=quantityrec
1468         # (entirely received)
1469         my $query = q|
1470             UPDATE aqorders
1471             SET quantity = ?,
1472                 orderstatus = 'partial'|;
1473         $query .= q|, notes = ?| if defined $notes;
1474         $query .= q| WHERE ordernumber = ?|;
1475         my $sth = $dbh->prepare($query);
1476
1477         $sth->execute($order->{quantity} - $quantrec, ( defined $notes ? $notes : () ), $ordernumber);
1478
1479         delete $order->{'ordernumber'};
1480         $order->{'budget_id'} = ( $budget_id || $order->{'budget_id'} );
1481         $order->{'quantity'} = $quantrec;
1482         $order->{'quantityreceived'} = $quantrec;
1483         $order->{'datereceived'} = $datereceived;
1484         $order->{'invoiceid'} = $invoiceid;
1485         $order->{'unitprice'} = $cost;
1486         $order->{'rrp'} = $rrp;
1487         $order->{ecost} = $ecost;
1488         $order->{'orderstatus'} = 'complete';
1489         my $basketno;
1490         ( $basketno, $new_ordernumber ) = NewOrder($order);
1491
1492         if ($received_items) {
1493             foreach my $itemnumber (@$received_items) {
1494                 ModItemOrder($itemnumber, $new_ordernumber);
1495             }
1496         }
1497     } else {
1498         my $query = q|
1499             update aqorders
1500             set quantityreceived=?,datereceived=?,invoiceid=?,
1501                 unitprice=?,rrp=?,ecost=?,budget_id=?,orderstatus='complete'|;
1502         $query .= q|, notes = ?| if defined $notes;
1503         $query .= q| where biblionumber=? and ordernumber=?|;
1504         my $sth = $dbh->prepare( $query );
1505         $sth->execute($quantrec,$datereceived,$invoiceid,$cost,$rrp,$ecost,$budget_id,( defined $notes ? $notes : () ),$biblionumber,$ordernumber);
1506     }
1507     return ($datereceived, $new_ordernumber);
1508 }
1509
1510 =head3 CancelReceipt
1511
1512     my $parent_ordernumber = CancelReceipt($ordernumber);
1513
1514     Cancel an order line receipt and update the parent order line, as if no
1515     receipt was made.
1516     If items are created at receipt (AcqCreateItem = receiving) then delete
1517     these items.
1518
1519 =cut
1520
1521 sub CancelReceipt {
1522     my $ordernumber = shift;
1523
1524     return unless $ordernumber;
1525
1526     my $dbh = C4::Context->dbh;
1527     my $query = qq{
1528         SELECT datereceived, parent_ordernumber, quantity
1529         FROM aqorders
1530         WHERE ordernumber = ?
1531     };
1532     my $sth = $dbh->prepare($query);
1533     $sth->execute($ordernumber);
1534     my $order = $sth->fetchrow_hashref;
1535     unless($order) {
1536         warn "CancelReceipt: order $ordernumber does not exist";
1537         return;
1538     }
1539     unless($order->{'datereceived'}) {
1540         warn "CancelReceipt: order $ordernumber is not received";
1541         return;
1542     }
1543
1544     my $parent_ordernumber = $order->{'parent_ordernumber'};
1545
1546     if($parent_ordernumber == $ordernumber || not $parent_ordernumber) {
1547         # The order line has no parent, just mark it as not received
1548         $query = qq{
1549             UPDATE aqorders
1550             SET quantityreceived = ?,
1551                 datereceived = ?,
1552                 invoiceid = ?,
1553                 orderstatus = 'ordered'
1554             WHERE ordernumber = ?
1555         };
1556         $sth = $dbh->prepare($query);
1557         $sth->execute(0, undef, undef, $ordernumber);
1558     } else {
1559         # The order line has a parent, increase parent quantity and delete
1560         # the order line.
1561         $query = qq{
1562             SELECT quantity, datereceived
1563             FROM aqorders
1564             WHERE ordernumber = ?
1565         };
1566         $sth = $dbh->prepare($query);
1567         $sth->execute($parent_ordernumber);
1568         my $parent_order = $sth->fetchrow_hashref;
1569         unless($parent_order) {
1570             warn "Parent order $parent_ordernumber does not exist.";
1571             return;
1572         }
1573         if($parent_order->{'datereceived'}) {
1574             warn "CancelReceipt: parent order is received.".
1575                 " Can't cancel receipt.";
1576             return;
1577         }
1578         $query = qq{
1579             UPDATE aqorders
1580             SET quantity = ?,
1581                 orderstatus = 'ordered'
1582             WHERE ordernumber = ?
1583         };
1584         $sth = $dbh->prepare($query);
1585         my $rv = $sth->execute(
1586             $order->{'quantity'} + $parent_order->{'quantity'},
1587             $parent_ordernumber
1588         );
1589         unless($rv) {
1590             warn "Cannot update parent order line, so do not cancel".
1591                 " receipt";
1592             return;
1593         }
1594         if(C4::Context->preference('AcqCreateItem') eq 'receiving') {
1595             # Remove items that were created at receipt
1596             $query = qq{
1597                 DELETE FROM items, aqorders_items
1598                 USING items, aqorders_items
1599                 WHERE items.itemnumber = ? AND aqorders_items.itemnumber = ?
1600             };
1601             $sth = $dbh->prepare($query);
1602             my @itemnumbers = GetItemnumbersFromOrder($ordernumber);
1603             foreach my $itemnumber (@itemnumbers) {
1604                 $sth->execute($itemnumber, $itemnumber);
1605             }
1606         } else {
1607             # Update items
1608             my @itemnumbers = GetItemnumbersFromOrder($ordernumber);
1609             foreach my $itemnumber (@itemnumbers) {
1610                 ModItemOrder($itemnumber, $parent_ordernumber);
1611             }
1612         }
1613         # Delete order line
1614         $query = qq{
1615             DELETE FROM aqorders
1616             WHERE ordernumber = ?
1617         };
1618         $sth = $dbh->prepare($query);
1619         $sth->execute($ordernumber);
1620
1621     }
1622
1623     return $parent_ordernumber;
1624 }
1625
1626 #------------------------------------------------------------#
1627
1628 =head3 SearchOrders
1629
1630 @results = &SearchOrders({
1631     ordernumber => $ordernumber,
1632     search => $search,
1633     biblionumber => $biblionumber,
1634     ean => $ean,
1635     booksellerid => $booksellerid,
1636     basketno => $basketno,
1637     owner => $owner,
1638     pending => $pending
1639     ordered => $ordered
1640 });
1641
1642 Searches for orders.
1643
1644 C<$owner> Finds order for the logged in user.
1645 C<$pending> Finds pending orders. Ignores completed and cancelled orders.
1646 C<$ordered> Finds orders to receive only (status 'ordered' or 'partial').
1647
1648
1649 C<@results> is an array of references-to-hash with the keys are fields
1650 from aqorders, biblio, biblioitems and aqbasket tables.
1651
1652 =cut
1653
1654 sub SearchOrders {
1655     my ( $params ) = @_;
1656     my $ordernumber = $params->{ordernumber};
1657     my $search = $params->{search};
1658     my $ean = $params->{ean};
1659     my $booksellerid = $params->{booksellerid};
1660     my $basketno = $params->{basketno};
1661     my $basketname = $params->{basketname};
1662     my $basketgroupname = $params->{basketgroupname};
1663     my $owner = $params->{owner};
1664     my $pending = $params->{pending};
1665     my $ordered = $params->{ordered};
1666
1667     my $dbh = C4::Context->dbh;
1668     my @args = ();
1669     my $query = q{
1670         SELECT aqbasket.basketno,
1671                borrowers.surname,
1672                borrowers.firstname,
1673                biblio.*,
1674                biblioitems.isbn,
1675                biblioitems.biblioitemnumber,
1676                aqbasket.authorisedby,
1677                aqbasket.booksellerid,
1678                aqbasket.closedate,
1679                aqbasket.creationdate,
1680                aqbasket.basketname,
1681                aqbasketgroups.id as basketgroupid,
1682                aqbasketgroups.name as basketgroupname,
1683                aqorders.*
1684         FROM aqorders
1685             LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
1686             LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
1687             LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1688             LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1689             LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
1690         WHERE (datecancellationprinted is NULL)
1691     };
1692
1693     if ( $pending or $ordered ) {
1694         $query .= q{ AND (quantity > quantityreceived OR quantityreceived is NULL)};
1695     }
1696     if ( $ordered ) {
1697         $query .= q{ AND aqorders.orderstatus IN ( "ordered", "partial" )};
1698     }
1699
1700     my $userenv = C4::Context->userenv;
1701     if ( C4::Context->preference("IndependentBranches") ) {
1702         unless ( C4::Context->IsSuperLibrarian() ) {
1703             $query .= q{
1704                 AND (
1705                     borrowers.branchcode = ?
1706                     OR borrowers.branchcode  = ''
1707                 )
1708             };
1709             push @args, $userenv->{branch};
1710         }
1711     }
1712
1713     if ( $ordernumber ) {
1714         $query .= ' AND (aqorders.ordernumber=?)';
1715         push @args, $ordernumber;
1716     }
1717     if( $search ) {
1718         $query .= ' AND (biblio.title LIKE ? OR biblio.author LIKE ? OR biblioitems.isbn LIKE ?)';
1719         push @args, ("%$search%","%$search%","%$search%");
1720     }
1721     if ( $ean ) {
1722         $query .= ' AND biblioitems.ean = ?';
1723         push @args, $ean;
1724     }
1725     if ( $booksellerid ) {
1726         $query .= 'AND aqbasket.booksellerid = ?';
1727         push @args, $booksellerid;
1728     }
1729     if( $basketno ) {
1730         $query .= 'AND aqbasket.basketno = ?';
1731         push @args, $basketno;
1732     }
1733     if( $basketname ) {
1734         $query .= 'AND aqbasket.basketname LIKE ?';
1735         push @args, "%$basketname%";
1736     }
1737     if( $basketgroupname ) {
1738         $query .= ' AND aqbasketgroups.name LIKE ?';
1739         push @args, "%$basketgroupname%";
1740     }
1741
1742     if ( $owner ) {
1743         $query .= ' AND aqbasket.authorisedby=? ';
1744         push @args, $userenv->{'number'};
1745     }
1746
1747     $query .= ' ORDER BY aqbasket.basketno';
1748
1749     my $sth = $dbh->prepare($query);
1750     $sth->execute(@args);
1751     return $sth->fetchall_arrayref({});
1752 }
1753
1754 #------------------------------------------------------------#
1755
1756 =head3 DelOrder
1757
1758   &DelOrder($biblionumber, $ordernumber);
1759
1760 Cancel the order with the given order and biblio numbers. It does not
1761 delete any entries in the aqorders table, it merely marks them as
1762 cancelled.
1763
1764 =cut
1765
1766 sub DelOrder {
1767     my ( $bibnum, $ordernumber ) = @_;
1768     my $dbh = C4::Context->dbh;
1769     my $query = "
1770         UPDATE aqorders
1771         SET    datecancellationprinted=now(), orderstatus='cancelled'
1772         WHERE  biblionumber=? AND ordernumber=?
1773     ";
1774     my $sth = $dbh->prepare($query);
1775     $sth->execute( $bibnum, $ordernumber );
1776     my @itemnumbers = GetItemnumbersFromOrder( $ordernumber );
1777     foreach my $itemnumber (@itemnumbers){
1778         C4::Items::DelItem( $dbh, $bibnum, $itemnumber );
1779     }
1780     return;
1781 }
1782
1783 =head3 TransferOrder
1784
1785     my $newordernumber = TransferOrder($ordernumber, $basketno);
1786
1787 Transfer an order line to a basket.
1788 Mark $ordernumber as cancelled with an internal note 'Cancelled and transfered
1789 to BOOKSELLER on DATE' and create new order with internal note
1790 'Transfered from BOOKSELLER on DATE'.
1791 Move all attached items to the new order.
1792 Received orders cannot be transfered.
1793 Return the ordernumber of created order.
1794
1795 =cut
1796
1797 sub TransferOrder {
1798     my ($ordernumber, $basketno) = @_;
1799
1800     return unless ($ordernumber and $basketno);
1801
1802     my $order = GetOrder( $ordernumber );
1803     return if $order->{datereceived};
1804     my $basket = GetBasket($basketno);
1805     return unless $basket;
1806
1807     my $dbh = C4::Context->dbh;
1808     my ($query, $sth, $rv);
1809
1810     $query = q{
1811         UPDATE aqorders
1812         SET datecancellationprinted = CAST(NOW() AS date)
1813         WHERE ordernumber = ?
1814     };
1815     $sth = $dbh->prepare($query);
1816     $rv = $sth->execute($ordernumber);
1817
1818     delete $order->{'ordernumber'};
1819     delete $order->{parent_ordernumber};
1820     $order->{'basketno'} = $basketno;
1821     my $newordernumber;
1822     (undef, $newordernumber) = NewOrder($order);
1823
1824     $query = q{
1825         UPDATE aqorders_items
1826         SET ordernumber = ?
1827         WHERE ordernumber = ?
1828     };
1829     $sth = $dbh->prepare($query);
1830     $sth->execute($newordernumber, $ordernumber);
1831
1832     $query = q{
1833         INSERT INTO aqorders_transfers (ordernumber_from, ordernumber_to)
1834         VALUES (?, ?)
1835     };
1836     $sth = $dbh->prepare($query);
1837     $sth->execute($ordernumber, $newordernumber);
1838
1839     return $newordernumber;
1840 }
1841
1842 =head2 FUNCTIONS ABOUT PARCELS
1843
1844 =cut
1845
1846 #------------------------------------------------------------#
1847
1848 =head3 GetParcel
1849
1850   @results = &GetParcel($booksellerid, $code, $date);
1851
1852 Looks up all of the received items from the supplier with the given
1853 bookseller ID at the given date, for the given code (bookseller Invoice number). Ignores cancelled and completed orders.
1854
1855 C<@results> is an array of references-to-hash. The keys of each element are fields from
1856 the aqorders, biblio, and biblioitems tables of the Koha database.
1857
1858 C<@results> is sorted alphabetically by book title.
1859
1860 =cut
1861
1862 sub GetParcel {
1863     #gets all orders from a certain supplier, orders them alphabetically
1864     my ( $supplierid, $code, $datereceived ) = @_;
1865     my $dbh     = C4::Context->dbh;
1866     my @results = ();
1867     $code .= '%'
1868     if $code;  # add % if we search on a given code (otherwise, let him empty)
1869     my $strsth ="
1870         SELECT  authorisedby,
1871                 creationdate,
1872                 aqbasket.basketno,
1873                 closedate,surname,
1874                 firstname,
1875                 aqorders.biblionumber,
1876                 aqorders.ordernumber,
1877                 aqorders.parent_ordernumber,
1878                 aqorders.quantity,
1879                 aqorders.quantityreceived,
1880                 aqorders.unitprice,
1881                 aqorders.listprice,
1882                 aqorders.rrp,
1883                 aqorders.ecost,
1884                 aqorders.gstrate,
1885                 biblio.title
1886         FROM aqorders
1887         LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
1888         LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1889         LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1890         LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
1891         WHERE
1892             aqbasket.booksellerid = ?
1893             AND aqinvoices.invoicenumber LIKE ?
1894             AND aqorders.datereceived = ? ";
1895
1896     my @query_params = ( $supplierid, $code, $datereceived );
1897     if ( C4::Context->preference("IndependentBranches") ) {
1898         unless ( C4::Context->IsSuperLibrarian() ) {
1899             $strsth .= " and (borrowers.branchcode = ?
1900                         or borrowers.branchcode  = '')";
1901             push @query_params, C4::Context->userenv->{branch};
1902         }
1903     }
1904     $strsth .= " ORDER BY aqbasket.basketno";
1905     my $result_set = $dbh->selectall_arrayref(
1906         $strsth,
1907         { Slice => {} },
1908         @query_params);
1909
1910     return @{$result_set};
1911 }
1912
1913 #------------------------------------------------------------#
1914
1915 =head3 GetParcels
1916
1917   $results = &GetParcels($bookseller, $order, $code, $datefrom, $dateto);
1918
1919 get a lists of parcels.
1920
1921 * Input arg :
1922
1923 =over
1924
1925 =item $bookseller
1926 is the bookseller this function has to get parcels.
1927
1928 =item $order
1929 To know on what criteria the results list has to be ordered.
1930
1931 =item $code
1932 is the booksellerinvoicenumber.
1933
1934 =item $datefrom & $dateto
1935 to know on what date this function has to filter its search.
1936
1937 =back
1938
1939 * return:
1940 a pointer on a hash list containing parcel informations as such :
1941
1942 =over
1943
1944 =item Creation date
1945
1946 =item Last operation
1947
1948 =item Number of biblio
1949
1950 =item Number of items
1951
1952 =back
1953
1954 =cut
1955
1956 sub GetParcels {
1957     my ($bookseller,$order, $code, $datefrom, $dateto) = @_;
1958     my $dbh    = C4::Context->dbh;
1959     my @query_params = ();
1960     my $strsth ="
1961         SELECT  aqinvoices.invoicenumber,
1962                 datereceived,purchaseordernumber,
1963                 count(DISTINCT biblionumber) AS biblio,
1964                 sum(quantity) AS itemsexpected,
1965                 sum(quantityreceived) AS itemsreceived
1966         FROM   aqorders LEFT JOIN aqbasket ON aqbasket.basketno = aqorders.basketno
1967         LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
1968         WHERE aqbasket.booksellerid = ? and datereceived IS NOT NULL
1969     ";
1970     push @query_params, $bookseller;
1971
1972     if ( defined $code ) {
1973         $strsth .= ' and aqinvoices.invoicenumber like ? ';
1974         # add a % to the end of the code to allow stemming.
1975         push @query_params, "$code%";
1976     }
1977
1978     if ( defined $datefrom ) {
1979         $strsth .= ' and datereceived >= ? ';
1980         push @query_params, $datefrom;
1981     }
1982
1983     if ( defined $dateto ) {
1984         $strsth .=  'and datereceived <= ? ';
1985         push @query_params, $dateto;
1986     }
1987
1988     $strsth .= "group by aqinvoices.invoicenumber,datereceived ";
1989
1990     # can't use a placeholder to place this column name.
1991     # but, we could probably be checking to make sure it is a column that will be fetched.
1992     $strsth .= "order by $order " if ($order);
1993
1994     my $sth = $dbh->prepare($strsth);
1995
1996     $sth->execute( @query_params );
1997     my $results = $sth->fetchall_arrayref({});
1998     return @{$results};
1999 }
2000
2001 #------------------------------------------------------------#
2002
2003 =head3 GetLateOrders
2004
2005   @results = &GetLateOrders;
2006
2007 Searches for bookseller with late orders.
2008
2009 return:
2010 the table of supplier with late issues. This table is full of hashref.
2011
2012 =cut
2013
2014 sub GetLateOrders {
2015     my $delay      = shift;
2016     my $supplierid = shift;
2017     my $branch     = shift;
2018     my $estimateddeliverydatefrom = shift;
2019     my $estimateddeliverydateto = shift;
2020
2021     my $dbh = C4::Context->dbh;
2022
2023     #BEWARE, order of parenthesis and LEFT JOIN is important for speed
2024     my $dbdriver = C4::Context->config("db_scheme") || "mysql";
2025
2026     my @query_params = ();
2027     my $select = "
2028     SELECT aqbasket.basketno,
2029         aqorders.ordernumber,
2030         DATE(aqbasket.closedate)  AS orderdate,
2031         aqorders.rrp              AS unitpricesupplier,
2032         aqorders.ecost            AS unitpricelib,
2033         aqorders.claims_count     AS claims_count,
2034         aqorders.claimed_date     AS claimed_date,
2035         aqbudgets.budget_name     AS budget,
2036         borrowers.branchcode      AS branch,
2037         aqbooksellers.name        AS supplier,
2038         aqbooksellers.id          AS supplierid,
2039         biblio.author, biblio.title,
2040         biblioitems.publishercode AS publisher,
2041         biblioitems.publicationyear,
2042         ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) AS estimateddeliverydate,
2043     ";
2044     my $from = "
2045     FROM
2046         aqorders LEFT JOIN biblio     ON biblio.biblionumber         = aqorders.biblionumber
2047         LEFT JOIN biblioitems         ON biblioitems.biblionumber    = biblio.biblionumber
2048         LEFT JOIN aqbudgets           ON aqorders.budget_id          = aqbudgets.budget_id,
2049         aqbasket LEFT JOIN borrowers  ON aqbasket.authorisedby       = borrowers.borrowernumber
2050         LEFT JOIN aqbooksellers       ON aqbasket.booksellerid       = aqbooksellers.id
2051         WHERE aqorders.basketno = aqbasket.basketno
2052         AND ( datereceived = ''
2053             OR datereceived IS NULL
2054             OR aqorders.quantityreceived < aqorders.quantity
2055         )
2056         AND aqbasket.closedate IS NOT NULL
2057         AND (aqorders.datecancellationprinted IS NULL OR aqorders.datecancellationprinted='0000-00-00')
2058     ";
2059     my $having = "";
2060     if ($dbdriver eq "mysql") {
2061         $select .= "
2062         aqorders.quantity - COALESCE(aqorders.quantityreceived,0)                 AS quantity,
2063         (aqorders.quantity - COALESCE(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
2064         DATEDIFF(CAST(now() AS date),closedate) AS latesince
2065         ";
2066         if ( defined $delay ) {
2067             $from .= " AND (closedate <= DATE_SUB(CAST(now() AS date),INTERVAL ? DAY)) " ;
2068             push @query_params, $delay;
2069         }
2070         $having = "
2071         HAVING quantity          <> 0
2072             AND unitpricesupplier <> 0
2073             AND unitpricelib      <> 0
2074         ";
2075     } else {
2076         # FIXME: account for IFNULL as above
2077         $select .= "
2078                 aqorders.quantity                AS quantity,
2079                 aqorders.quantity * aqorders.rrp AS subtotal,
2080                 (CAST(now() AS date) - closedate)            AS latesince
2081         ";
2082         if ( defined $delay ) {
2083             $from .= " AND (closedate <= (CAST(now() AS date) -(INTERVAL ? DAY)) ";
2084             push @query_params, $delay;
2085         }
2086     }
2087     if (defined $supplierid) {
2088         $from .= ' AND aqbasket.booksellerid = ? ';
2089         push @query_params, $supplierid;
2090     }
2091     if (defined $branch) {
2092         $from .= ' AND borrowers.branchcode LIKE ? ';
2093         push @query_params, $branch;
2094     }
2095
2096     if ( defined $estimateddeliverydatefrom or defined $estimateddeliverydateto ) {
2097         $from .= ' AND aqbooksellers.deliverytime IS NOT NULL ';
2098     }
2099     if ( defined $estimateddeliverydatefrom ) {
2100         $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) >= ?';
2101         push @query_params, $estimateddeliverydatefrom;
2102     }
2103     if ( defined $estimateddeliverydateto ) {
2104         $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= ?';
2105         push @query_params, $estimateddeliverydateto;
2106     }
2107     if ( defined $estimateddeliverydatefrom and not defined $estimateddeliverydateto ) {
2108         $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= CAST(now() AS date)';
2109     }
2110     if (C4::Context->preference("IndependentBranches")
2111             && !C4::Context->IsSuperLibrarian() ) {
2112         $from .= ' AND borrowers.branchcode LIKE ? ';
2113         push @query_params, C4::Context->userenv->{branch};
2114     }
2115     $from .= " AND orderstatus <> 'cancelled' ";
2116     my $query = "$select $from $having\nORDER BY latesince, basketno, borrowers.branchcode, supplier";
2117     $debug and print STDERR "GetLateOrders query: $query\nGetLateOrders args: " . join(" ",@query_params);
2118     my $sth = $dbh->prepare($query);
2119     $sth->execute(@query_params);
2120     my @results;
2121     while (my $data = $sth->fetchrow_hashref) {
2122         $data->{orderdate} = format_date($data->{orderdate});
2123         $data->{claimed_date} = format_date($data->{claimed_date});
2124         push @results, $data;
2125     }
2126     return @results;
2127 }
2128
2129 #------------------------------------------------------------#
2130
2131 =head3 GetHistory
2132
2133   (\@order_loop, $total_qty, $total_price, $total_qtyreceived) = GetHistory( %params );
2134
2135 Retreives some acquisition history information
2136
2137 params:  
2138   title
2139   author
2140   name
2141   isbn
2142   ean
2143   from_placed_on
2144   to_placed_on
2145   basket                  - search both basket name and number
2146   booksellerinvoicenumber 
2147   basketgroupname
2148   budget
2149   orderstatus (note that orderstatus '' will retrieve orders
2150                of any status except cancelled)
2151   biblionumber
2152   get_canceled_order (if set to a true value, cancelled orders will
2153                       be included)
2154
2155 returns:
2156     $order_loop is a list of hashrefs that each look like this:
2157             {
2158                 'author'           => 'Twain, Mark',
2159                 'basketno'         => '1',
2160                 'biblionumber'     => '215',
2161                 'count'            => 1,
2162                 'creationdate'     => 'MM/DD/YYYY',
2163                 'datereceived'     => undef,
2164                 'ecost'            => '1.00',
2165                 'id'               => '1',
2166                 'invoicenumber'    => undef,
2167                 'name'             => '',
2168                 'ordernumber'      => '1',
2169                 'quantity'         => 1,
2170                 'quantityreceived' => undef,
2171                 'title'            => 'The Adventures of Huckleberry Finn'
2172             }
2173     $total_qty is the sum of all of the quantities in $order_loop
2174     $total_price is the cost of each in $order_loop times the quantity
2175     $total_qtyreceived is the sum of all of the quantityreceived entries in $order_loop
2176
2177 =cut
2178
2179 sub GetHistory {
2180 # don't run the query if there are no parameters (list would be too long for sure !)
2181     croak "No search params" unless @_;
2182     my %params = @_;
2183     my $title = $params{title};
2184     my $author = $params{author};
2185     my $isbn   = $params{isbn};
2186     my $ean    = $params{ean};
2187     my $name = $params{name};
2188     my $from_placed_on = $params{from_placed_on};
2189     my $to_placed_on = $params{to_placed_on};
2190     my $basket = $params{basket};
2191     my $booksellerinvoicenumber = $params{booksellerinvoicenumber};
2192     my $basketgroupname = $params{basketgroupname};
2193     my $budget = $params{budget};
2194     my $orderstatus = $params{orderstatus};
2195     my $biblionumber = $params{biblionumber};
2196     my $get_canceled_order = $params{get_canceled_order} || 0;
2197
2198     my @order_loop;
2199     my $total_qty         = 0;
2200     my $total_qtyreceived = 0;
2201     my $total_price       = 0;
2202
2203     my $dbh   = C4::Context->dbh;
2204     my $query ="
2205         SELECT
2206             COALESCE(biblio.title,     deletedbiblio.title)     AS title,
2207             COALESCE(biblio.author,    deletedbiblio.author)    AS author,
2208             COALESCE(biblioitems.isbn, deletedbiblioitems.isbn) AS isbn,
2209             COALESCE(biblioitems.ean,  deletedbiblioitems.ean)  AS ean,
2210             aqorders.basketno,
2211             aqbasket.basketname,
2212             aqbasket.basketgroupid,
2213             aqbasketgroups.name as groupname,
2214             aqbooksellers.name,
2215             aqbasket.creationdate,
2216             aqorders.datereceived,
2217             aqorders.quantity,
2218             aqorders.quantityreceived,
2219             aqorders.ecost,
2220             aqorders.ordernumber,
2221             aqorders.invoiceid,
2222             aqinvoices.invoicenumber,
2223             aqbooksellers.id as id,
2224             aqorders.biblionumber,
2225             aqorders.orderstatus,
2226             aqorders.parent_ordernumber,
2227             aqbudgets.budget_name
2228             ";
2229     $query .= ", aqbudgets.budget_id AS budget" if defined $budget;
2230     $query .= "
2231         FROM aqorders
2232         LEFT JOIN aqbasket ON aqorders.basketno=aqbasket.basketno
2233         LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid=aqbasketgroups.id
2234         LEFT JOIN aqbooksellers ON aqbasket.booksellerid=aqbooksellers.id
2235         LEFT JOIN biblioitems ON biblioitems.biblionumber=aqorders.biblionumber
2236         LEFT JOIN biblio ON biblio.biblionumber=aqorders.biblionumber
2237         LEFT JOIN aqbudgets ON aqorders.budget_id=aqbudgets.budget_id
2238         LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
2239         LEFT JOIN deletedbiblio ON deletedbiblio.biblionumber=aqorders.biblionumber
2240         LEFT JOIN deletedbiblioitems ON deletedbiblioitems.biblionumber=aqorders.biblionumber
2241         ";
2242
2243     if ( C4::Context->preference("IndependentBranches") ) {
2244         $query .= " LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber";
2245     }
2246
2247     $query .= " WHERE 1 ";
2248
2249     unless ($get_canceled_order or (defined $orderstatus and $orderstatus eq 'cancelled')) {
2250         $query .= " AND (datecancellationprinted is NULL or datecancellationprinted='0000-00-00') ";
2251     }
2252
2253     my @query_params  = ();
2254
2255     if ( $biblionumber ) {
2256         $query .= " AND biblio.biblionumber = ?";
2257         push @query_params, $biblionumber;
2258     }
2259
2260     if ( $title ) {
2261         $query .= " AND biblio.title LIKE ? ";
2262         $title =~ s/\s+/%/g;
2263         push @query_params, "%$title%";
2264     }
2265
2266     if ( $author ) {
2267         $query .= " AND biblio.author LIKE ? ";
2268         push @query_params, "%$author%";
2269     }
2270
2271     if ( $isbn ) {
2272         $query .= " AND biblioitems.isbn LIKE ? ";
2273         push @query_params, "%$isbn%";
2274     }
2275     if ( $ean ) {
2276         $query .= " AND biblioitems.ean = ? ";
2277         push @query_params, "$ean";
2278     }
2279     if ( $name ) {
2280         $query .= " AND aqbooksellers.name LIKE ? ";
2281         push @query_params, "%$name%";
2282     }
2283
2284     if ( $budget ) {
2285         $query .= " AND aqbudgets.budget_id = ? ";
2286         push @query_params, "$budget";
2287     }
2288
2289     if ( $from_placed_on ) {
2290         $query .= " AND creationdate >= ? ";
2291         push @query_params, $from_placed_on;
2292     }
2293
2294     if ( $to_placed_on ) {
2295         $query .= " AND creationdate <= ? ";
2296         push @query_params, $to_placed_on;
2297     }
2298
2299     if ( defined $orderstatus and $orderstatus ne '') {
2300         $query .= " AND aqorders.orderstatus = ? ";
2301         push @query_params, "$orderstatus";
2302     }
2303
2304     if ($basket) {
2305         if ($basket =~ m/^\d+$/) {
2306             $query .= " AND aqorders.basketno = ? ";
2307             push @query_params, $basket;
2308         } else {
2309             $query .= " AND aqbasket.basketname LIKE ? ";
2310             push @query_params, "%$basket%";
2311         }
2312     }
2313
2314     if ($booksellerinvoicenumber) {
2315         $query .= " AND aqinvoices.invoicenumber LIKE ? ";
2316         push @query_params, "%$booksellerinvoicenumber%";
2317     }
2318
2319     if ($basketgroupname) {
2320         $query .= " AND aqbasketgroups.name LIKE ? ";
2321         push @query_params, "%$basketgroupname%";
2322     }
2323
2324     if ( C4::Context->preference("IndependentBranches") ) {
2325         unless ( C4::Context->IsSuperLibrarian() ) {
2326             $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
2327             push @query_params, C4::Context->userenv->{branch};
2328         }
2329     }
2330     $query .= " ORDER BY id";
2331     my $sth = $dbh->prepare($query);
2332     $sth->execute( @query_params );
2333     my $cnt = 1;
2334     while ( my $line = $sth->fetchrow_hashref ) {
2335         $line->{count} = $cnt++;
2336         $line->{toggle} = 1 if $cnt % 2;
2337         push @order_loop, $line;
2338         $total_qty         += ( $line->{quantity} ) ? $line->{quantity} : 0;
2339         $total_qtyreceived += ( $line->{quantityreceived} ) ? $line->{quantityreceived} : 0;
2340         $total_price       += ( $line->{quantity} and $line->{ecost} ) ? $line->{quantity} * $line->{ecost} : 0;
2341     }
2342     return \@order_loop, $total_qty, $total_price, $total_qtyreceived;
2343 }
2344
2345 =head2 GetRecentAcqui
2346
2347   $results = GetRecentAcqui($days);
2348
2349 C<$results> is a ref to a table which containts hashref
2350
2351 =cut
2352
2353 sub GetRecentAcqui {
2354     my $limit  = shift;
2355     my $dbh    = C4::Context->dbh;
2356     my $query = "
2357         SELECT *
2358         FROM   biblio
2359         ORDER BY timestamp DESC
2360         LIMIT  0,".$limit;
2361
2362     my $sth = $dbh->prepare($query);
2363     $sth->execute;
2364     my $results = $sth->fetchall_arrayref({});
2365     return $results;
2366 }
2367
2368 =head3 GetContracts
2369
2370   $contractlist = &GetContracts($booksellerid, $activeonly);
2371
2372 Looks up the contracts that belong to a bookseller
2373
2374 Returns a list of contracts
2375
2376 =over
2377
2378 =item C<$booksellerid> is the "id" field in the "aqbooksellers" table.
2379
2380 =item C<$activeonly> if exists get only contracts that are still active.
2381
2382 =back
2383
2384 =cut
2385
2386 sub GetContracts {
2387     my ( $booksellerid, $activeonly ) = @_;
2388     my $dbh = C4::Context->dbh;
2389     my $query;
2390     if (! $activeonly) {
2391         $query = "
2392             SELECT *
2393             FROM   aqcontract
2394             WHERE  booksellerid=?
2395         ";
2396     } else {
2397         $query = "SELECT *
2398             FROM aqcontract
2399             WHERE booksellerid=?
2400                 AND contractenddate >= CURDATE( )";
2401     }
2402     my $result_set =
2403       $dbh->selectall_arrayref( $query, { Slice => {} }, $booksellerid );
2404     return @{$result_set};
2405 }
2406
2407 #------------------------------------------------------------#
2408
2409 =head3 GetContract
2410
2411   $contract = &GetContract($contractID);
2412
2413 Looks up the contract that has PRIMKEY (contractnumber) value $contractID
2414
2415 Returns a contract
2416
2417 =cut
2418
2419 sub GetContract {
2420     my ( $contractno ) = @_;
2421     my $dbh = C4::Context->dbh;
2422     my $query = "
2423         SELECT *
2424         FROM   aqcontract
2425         WHERE  contractnumber=?
2426         ";
2427
2428     my $sth = $dbh->prepare($query);
2429     $sth->execute( $contractno );
2430     my $result = $sth->fetchrow_hashref;
2431     return $result;
2432 }
2433
2434 =head3 AddClaim
2435
2436 =over
2437
2438 &AddClaim($ordernumber);
2439
2440 Add a claim for an order
2441
2442 =back
2443
2444 =cut
2445
2446 sub AddClaim {
2447     my ($ordernumber) = @_;
2448     my $dbh          = C4::Context->dbh;
2449     my $query        = "
2450         UPDATE aqorders SET
2451             claims_count = claims_count + 1,
2452             claimed_date = CURDATE()
2453         WHERE ordernumber = ?
2454         ";
2455     my $sth = $dbh->prepare($query);
2456     $sth->execute($ordernumber);
2457 }
2458
2459 =head3 GetInvoices
2460
2461     my @invoices = GetInvoices(
2462         invoicenumber => $invoicenumber,
2463         supplierid => $supplierid,
2464         suppliername => $suppliername,
2465         shipmentdatefrom => $shipmentdatefrom, # ISO format
2466         shipmentdateto => $shipmentdateto, # ISO format
2467         billingdatefrom => $billingdatefrom, # ISO format
2468         billingdateto => $billingdateto, # ISO format
2469         isbneanissn => $isbn_or_ean_or_issn,
2470         title => $title,
2471         author => $author,
2472         publisher => $publisher,
2473         publicationyear => $publicationyear,
2474         branchcode => $branchcode,
2475         order_by => $order_by
2476     );
2477
2478 Return a list of invoices that match all given criteria.
2479
2480 $order_by is "column_name (asc|desc)", where column_name is any of
2481 'invoicenumber', 'booksellerid', 'shipmentdate', 'billingdate', 'closedate',
2482 'shipmentcost', 'shipmentcost_budgetid'.
2483
2484 asc is the default if omitted
2485
2486 =cut
2487
2488 sub GetInvoices {
2489     my %args = @_;
2490
2491     my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2492         closedate shipmentcost shipmentcost_budgetid);
2493
2494     my $dbh = C4::Context->dbh;
2495     my $query = qq{
2496         SELECT aqinvoices.*, aqbooksellers.name AS suppliername,
2497           COUNT(
2498             DISTINCT IF(
2499               aqorders.datereceived IS NOT NULL,
2500               aqorders.biblionumber,
2501               NULL
2502             )
2503           ) AS receivedbiblios,
2504           SUM(aqorders.quantityreceived) AS receiveditems
2505         FROM aqinvoices
2506           LEFT JOIN aqbooksellers ON aqbooksellers.id = aqinvoices.booksellerid
2507           LEFT JOIN aqorders ON aqorders.invoiceid = aqinvoices.invoiceid
2508           LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
2509           LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
2510           LEFT JOIN biblio ON aqorders.biblionumber = biblio.biblionumber
2511           LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
2512           LEFT JOIN subscription ON biblio.biblionumber = subscription.biblionumber
2513     };
2514
2515     my @bind_args;
2516     my @bind_strs;
2517     if($args{supplierid}) {
2518         push @bind_strs, " aqinvoices.booksellerid = ? ";
2519         push @bind_args, $args{supplierid};
2520     }
2521     if($args{invoicenumber}) {
2522         push @bind_strs, " aqinvoices.invoicenumber LIKE ? ";
2523         push @bind_args, "%$args{invoicenumber}%";
2524     }
2525     if($args{suppliername}) {
2526         push @bind_strs, " aqbooksellers.name LIKE ? ";
2527         push @bind_args, "%$args{suppliername}%";
2528     }
2529     if($args{shipmentdatefrom}) {
2530         push @bind_strs, " aqinvoices.shipmentdate >= ? ";
2531         push @bind_args, $args{shipmentdatefrom};
2532     }
2533     if($args{shipmentdateto}) {
2534         push @bind_strs, " aqinvoices.shipmentdate <= ? ";
2535         push @bind_args, $args{shipmentdateto};
2536     }
2537     if($args{billingdatefrom}) {
2538         push @bind_strs, " aqinvoices.billingdate >= ? ";
2539         push @bind_args, $args{billingdatefrom};
2540     }
2541     if($args{billingdateto}) {
2542         push @bind_strs, " aqinvoices.billingdate <= ? ";
2543         push @bind_args, $args{billingdateto};
2544     }
2545     if($args{isbneanissn}) {
2546         push @bind_strs, " (biblioitems.isbn LIKE CONCAT('%', ?, '%') OR biblioitems.ean LIKE CONCAT('%', ?, '%') OR biblioitems.issn LIKE CONCAT('%', ?, '%') ) ";
2547         push @bind_args, $args{isbneanissn}, $args{isbneanissn}, $args{isbneanissn};
2548     }
2549     if($args{title}) {
2550         push @bind_strs, " biblio.title LIKE CONCAT('%', ?, '%') ";
2551         push @bind_args, $args{title};
2552     }
2553     if($args{author}) {
2554         push @bind_strs, " biblio.author LIKE CONCAT('%', ?, '%') ";
2555         push @bind_args, $args{author};
2556     }
2557     if($args{publisher}) {
2558         push @bind_strs, " biblioitems.publishercode LIKE CONCAT('%', ?, '%') ";
2559         push @bind_args, $args{publisher};
2560     }
2561     if($args{publicationyear}) {
2562         push @bind_strs, " ((biblioitems.publicationyear LIKE CONCAT('%', ?, '%')) OR (biblio.copyrightdate LIKE CONCAT('%', ?, '%'))) ";
2563         push @bind_args, $args{publicationyear}, $args{publicationyear};
2564     }
2565     if($args{branchcode}) {
2566         push @bind_strs, " borrowers.branchcode = ? ";
2567         push @bind_args, $args{branchcode};
2568     }
2569
2570     $query .= " WHERE " . join(" AND ", @bind_strs) if @bind_strs;
2571     $query .= " GROUP BY aqinvoices.invoiceid ";
2572
2573     if($args{order_by}) {
2574         my ($column, $direction) = split / /, $args{order_by};
2575         if(grep /^$column$/, @columns) {
2576             $direction ||= 'ASC';
2577             $query .= " ORDER BY $column $direction";
2578         }
2579     }
2580
2581     my $sth = $dbh->prepare($query);
2582     $sth->execute(@bind_args);
2583
2584     my $results = $sth->fetchall_arrayref({});
2585     return @$results;
2586 }
2587
2588 =head3 GetInvoice
2589
2590     my $invoice = GetInvoice($invoiceid);
2591
2592 Get informations about invoice with given $invoiceid
2593
2594 Return a hash filled with aqinvoices.* fields
2595
2596 =cut
2597
2598 sub GetInvoice {
2599     my ($invoiceid) = @_;
2600     my $invoice;
2601
2602     return unless $invoiceid;
2603
2604     my $dbh = C4::Context->dbh;
2605     my $query = qq{
2606         SELECT *
2607         FROM aqinvoices
2608         WHERE invoiceid = ?
2609     };
2610     my $sth = $dbh->prepare($query);
2611     $sth->execute($invoiceid);
2612
2613     $invoice = $sth->fetchrow_hashref;
2614     return $invoice;
2615 }
2616
2617 =head3 GetInvoiceDetails
2618
2619     my $invoice = GetInvoiceDetails($invoiceid)
2620
2621 Return informations about an invoice + the list of related order lines
2622
2623 Orders informations are in $invoice->{orders} (array ref)
2624
2625 =cut
2626
2627 sub GetInvoiceDetails {
2628     my ($invoiceid) = @_;
2629
2630     if ( !defined $invoiceid ) {
2631         carp 'GetInvoiceDetails called without an invoiceid';
2632         return;
2633     }
2634
2635     my $dbh = C4::Context->dbh;
2636     my $query = q{
2637         SELECT aqinvoices.*, aqbooksellers.name AS suppliername
2638         FROM aqinvoices
2639           LEFT JOIN aqbooksellers ON aqinvoices.booksellerid = aqbooksellers.id
2640         WHERE invoiceid = ?
2641     };
2642     my $sth = $dbh->prepare($query);
2643     $sth->execute($invoiceid);
2644
2645     my $invoice = $sth->fetchrow_hashref;
2646
2647     $query = q{
2648         SELECT aqorders.*, biblio.*, aqbasket.basketname
2649         FROM aqorders
2650           LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
2651           LEFT JOIN biblio ON aqorders.biblionumber = biblio.biblionumber
2652         WHERE invoiceid = ?
2653     };
2654     $sth = $dbh->prepare($query);
2655     $sth->execute($invoiceid);
2656     $invoice->{orders} = $sth->fetchall_arrayref({});
2657     $invoice->{orders} ||= []; # force an empty arrayref if fetchall_arrayref fails
2658
2659     return $invoice;
2660 }
2661
2662 =head3 AddInvoice
2663
2664     my $invoiceid = AddInvoice(
2665         invoicenumber => $invoicenumber,
2666         booksellerid => $booksellerid,
2667         shipmentdate => $shipmentdate,
2668         billingdate => $billingdate,
2669         closedate => $closedate,
2670         shipmentcost => $shipmentcost,
2671         shipmentcost_budgetid => $shipmentcost_budgetid
2672     );
2673
2674 Create a new invoice and return its id or undef if it fails.
2675
2676 =cut
2677
2678 sub AddInvoice {
2679     my %invoice = @_;
2680
2681     return unless(%invoice and $invoice{invoicenumber});
2682
2683     my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2684         closedate shipmentcost shipmentcost_budgetid);
2685
2686     my @set_strs;
2687     my @set_args;
2688     foreach my $key (keys %invoice) {
2689         if(0 < grep(/^$key$/, @columns)) {
2690             push @set_strs, "$key = ?";
2691             push @set_args, ($invoice{$key} || undef);
2692         }
2693     }
2694
2695     my $rv;
2696     if(@set_args > 0) {
2697         my $dbh = C4::Context->dbh;
2698         my $query = "INSERT INTO aqinvoices SET ";
2699         $query .= join (",", @set_strs);
2700         my $sth = $dbh->prepare($query);
2701         $rv = $sth->execute(@set_args);
2702         if($rv) {
2703             $rv = $dbh->last_insert_id(undef, undef, 'aqinvoices', undef);
2704         }
2705     }
2706     return $rv;
2707 }
2708
2709 =head3 ModInvoice
2710
2711     ModInvoice(
2712         invoiceid => $invoiceid,    # Mandatory
2713         invoicenumber => $invoicenumber,
2714         booksellerid => $booksellerid,
2715         shipmentdate => $shipmentdate,
2716         billingdate => $billingdate,
2717         closedate => $closedate,
2718         shipmentcost => $shipmentcost,
2719         shipmentcost_budgetid => $shipmentcost_budgetid
2720     );
2721
2722 Modify an invoice, invoiceid is mandatory.
2723
2724 Return undef if it fails.
2725
2726 =cut
2727
2728 sub ModInvoice {
2729     my %invoice = @_;
2730
2731     return unless(%invoice and $invoice{invoiceid});
2732
2733     my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2734         closedate shipmentcost shipmentcost_budgetid);
2735
2736     my @set_strs;
2737     my @set_args;
2738     foreach my $key (keys %invoice) {
2739         if(0 < grep(/^$key$/, @columns)) {
2740             push @set_strs, "$key = ?";
2741             push @set_args, ($invoice{$key} || undef);
2742         }
2743     }
2744
2745     my $dbh = C4::Context->dbh;
2746     my $query = "UPDATE aqinvoices SET ";
2747     $query .= join(",", @set_strs);
2748     $query .= " WHERE invoiceid = ?";
2749
2750     my $sth = $dbh->prepare($query);
2751     $sth->execute(@set_args, $invoice{invoiceid});
2752 }
2753
2754 =head3 CloseInvoice
2755
2756     CloseInvoice($invoiceid);
2757
2758 Close an invoice.
2759
2760 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => undef);
2761
2762 =cut
2763
2764 sub CloseInvoice {
2765     my ($invoiceid) = @_;
2766
2767     return unless $invoiceid;
2768
2769     my $dbh = C4::Context->dbh;
2770     my $query = qq{
2771         UPDATE aqinvoices
2772         SET closedate = CAST(NOW() AS DATE)
2773         WHERE invoiceid = ?
2774     };
2775     my $sth = $dbh->prepare($query);
2776     $sth->execute($invoiceid);
2777 }
2778
2779 =head3 ReopenInvoice
2780
2781     ReopenInvoice($invoiceid);
2782
2783 Reopen an invoice
2784
2785 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => C4::Dates->new()->output('iso'))
2786
2787 =cut
2788
2789 sub ReopenInvoice {
2790     my ($invoiceid) = @_;
2791
2792     return unless $invoiceid;
2793
2794     my $dbh = C4::Context->dbh;
2795     my $query = qq{
2796         UPDATE aqinvoices
2797         SET closedate = NULL
2798         WHERE invoiceid = ?
2799     };
2800     my $sth = $dbh->prepare($query);
2801     $sth->execute($invoiceid);
2802 }
2803
2804 =head3 DelInvoice
2805
2806     DelInvoice($invoiceid);
2807
2808 Delete an invoice if there are no items attached to it.
2809
2810 =cut
2811
2812 sub DelInvoice {
2813     my ($invoiceid) = @_;
2814
2815     return unless $invoiceid;
2816
2817     my $dbh   = C4::Context->dbh;
2818     my $query = qq{
2819         SELECT COUNT(*)
2820         FROM aqorders
2821         WHERE invoiceid = ?
2822     };
2823     my $sth = $dbh->prepare($query);
2824     $sth->execute($invoiceid);
2825     my $res = $sth->fetchrow_arrayref;
2826     if ( $res && $res->[0] == 0 ) {
2827         $query = qq{
2828             DELETE FROM aqinvoices
2829             WHERE invoiceid = ?
2830         };
2831         my $sth = $dbh->prepare($query);
2832         return ( $sth->execute($invoiceid) > 0 );
2833     }
2834     return;
2835 }
2836
2837 =head3 MergeInvoices
2838
2839     MergeInvoices($invoiceid, \@sourceids);
2840
2841 Merge the invoices identified by the IDs in \@sourceids into
2842 the invoice identified by $invoiceid.
2843
2844 =cut
2845
2846 sub MergeInvoices {
2847     my ($invoiceid, $sourceids) = @_;
2848
2849     return unless $invoiceid;
2850     foreach my $sourceid (@$sourceids) {
2851         next if $sourceid == $invoiceid;
2852         my $source = GetInvoiceDetails($sourceid);
2853         foreach my $order (@{$source->{'orders'}}) {
2854             $order->{'invoiceid'} = $invoiceid;
2855             ModOrder($order);
2856         }
2857         DelInvoice($source->{'invoiceid'});
2858     }
2859     return;
2860 }
2861
2862 =head3 GetBiblioCountByBasketno
2863
2864 $biblio_count = &GetBiblioCountByBasketno($basketno);
2865
2866 Looks up the biblio's count that has basketno value $basketno
2867
2868 Returns a quantity
2869
2870 =cut
2871
2872 sub GetBiblioCountByBasketno {
2873     my ($basketno) = @_;
2874     my $dbh          = C4::Context->dbh;
2875     my $query        = "
2876         SELECT COUNT( DISTINCT( biblionumber ) )
2877         FROM   aqorders
2878         WHERE  basketno = ?
2879             AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')
2880         ";
2881
2882     my $sth = $dbh->prepare($query);
2883     $sth->execute($basketno);
2884     return $sth->fetchrow;
2885 }
2886
2887 1;
2888 __END__
2889
2890 =head1 AUTHOR
2891
2892 Koha Development Team <http://koha-community.org/>
2893
2894 =cut