1 package C4
::Acquisition
;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 use C4
::Dates
qw(format_date format_date_in_iso);
31 use C4
::SQLHelper
qw(InsertInTable);
36 use vars
qw($VERSION @ISA @EXPORT);
39 # set the version for version checking
44 &GetBasket &NewBasket &CloseBasket &DelBasket &ModBasket
46 &GetBasketsByBookseller &GetBasketsByBasketgroup
50 &ModBasketgroup &NewBasketgroup &DelBasketgroup &GetBasketgroup &CloseBasketgroup
51 &GetBasketgroups &ReOpenBasketgroup
53 &NewOrder &DelOrder &ModOrder &GetPendingOrders &GetOrder &GetOrders
54 &GetOrderNumber &GetLateOrders &GetOrderFromItemnumber
55 &SearchOrder &GetHistory &GetRecentAcqui
56 &ModReceiveOrder &ModOrderBiblioitemNumber
58 &NewOrderItem &ModOrderItem
60 &GetParcels &GetParcel
61 &GetContracts &GetContract
63 &GetItemnumbersFromOrder
71 sub GetOrderFromItemnumber
{
72 my ($itemnumber) = @_;
73 my $dbh = C4
::Context
->dbh;
76 SELECT
* from aqorders LEFT JOIN aqorders_items
77 ON
( aqorders
.ordernumber
= aqorders_items
.ordernumber
)
78 WHERE itemnumber
= ?
|;
80 my $sth = $dbh->prepare($query);
84 $sth->execute($itemnumber);
86 my $order = $sth->fetchrow_hashref;
91 # Returns the itemnumber(s) associated with the ordernumber given in parameter
92 sub GetItemnumbersFromOrder
{
93 my ($ordernumber) = @_;
94 my $dbh = C4
::Context
->dbh;
95 my $query = "SELECT itemnumber FROM aqorders_items WHERE ordernumber=?";
96 my $sth = $dbh->prepare($query);
97 $sth->execute($ordernumber);
100 while (my $order = $sth->fetchrow_hashref) {
101 push @tab, $order->{'itemnumber'};
115 C4::Acquisition - Koha functions for dealing with orders and acquisitions
123 The functions in this module deal with acquisitions, managing book
124 orders, basket and parcels.
128 =head2 FUNCTIONS ABOUT BASKETS
132 $aqbasket = &GetBasket($basketnumber);
134 get all basket informations in aqbasket for a given basket
136 B<returns:> informations for a given basket returned as a hashref.
142 my $dbh = C4
::Context
->dbh;
145 concat( b.firstname,' ',b.surname) AS authorisedbyname,
146 b.branchcode AS branch
148 LEFT JOIN borrowers b ON aqbasket.authorisedby=b.borrowernumber
151 my $sth=$dbh->prepare($query);
152 $sth->execute($basketno);
153 my $basket = $sth->fetchrow_hashref;
157 #------------------------------------------------------------#
161 $basket = &NewBasket( $booksellerid, $authorizedby, $basketname,
162 $basketnote, $basketbooksellernote, $basketcontractnumber );
164 Create a new basket in aqbasket table
168 =item C<$booksellerid> is a foreign key in the aqbasket table
170 =item C<$authorizedby> is the username of who created the basket
174 The other parameters are optional, see ModBasketHeader for more info on them.
178 # FIXME : this function seems to be unused.
181 my ( $booksellerid, $authorisedby, $basketname, $basketnote, $basketbooksellernote, $basketcontractnumber ) = @_;
182 my $dbh = C4
::Context
->dbh;
185 (creationdate,booksellerid,authorisedby)
186 VALUES (now(),'$booksellerid','$authorisedby')
190 #find & return basketno MYSQL dependant, but $dbh->last_insert_id always returns null :-(
191 my $basket = $dbh->{'mysql_insertid'};
192 ModBasketHeader
($basket, $basketname || '', $basketnote || '', $basketbooksellernote || '', $basketcontractnumber || undef);
196 #------------------------------------------------------------#
200 &CloseBasket($basketno);
202 close a basket (becomes unmodifiable,except for recieves)
208 my $dbh = C4
::Context
->dbh;
214 my $sth = $dbh->prepare($query);
215 $sth->execute($basketno);
218 #------------------------------------------------------------#
220 =head3 GetBasketAsCSV
222 &GetBasketAsCSV($basketno);
224 Export a basket as CSV
230 my $basket = GetBasket
($basketno);
231 my @orders = GetOrders
($basketno);
232 my $contract = GetContract
($basket->{'contractnumber'});
233 my $csv = Text
::CSV
->new();
236 # TODO: Translate headers
237 my @headers = qw(contractname ordernumber entrydate isbn author title publishercode collectiontitle notes quantity rrp);
239 $csv->combine(@headers);
240 $output = $csv->string() . "\n";
243 foreach my $order (@orders) {
245 # newlines are not valid characters for Text::CSV combine()
246 $order->{'notes'} =~ s/[\r\n]+//g;
248 $contract->{'contractname'},
249 $order->{'ordernumber'},
250 $order->{'entrydate'},
254 $order->{'publishercode'},
255 $order->{'collectiontitle'},
257 $order->{'quantity'},
260 push (@rows, \
@cols);
263 foreach my $row (@rows) {
264 $csv->combine(@
$row);
265 $output .= $csv->string() . "\n";
274 =head3 CloseBasketgroup
276 &CloseBasketgroup($basketgroupno);
282 sub CloseBasketgroup
{
283 my ($basketgroupno) = @_;
284 my $dbh = C4
::Context
->dbh;
285 my $sth = $dbh->prepare("
286 UPDATE aqbasketgroups
290 $sth->execute($basketgroupno);
293 #------------------------------------------------------------#
295 =head3 ReOpenBaskergroup($basketgroupno)
297 &ReOpenBaskergroup($basketgroupno);
303 sub ReOpenBasketgroup
{
304 my ($basketgroupno) = @_;
305 my $dbh = C4
::Context
->dbh;
306 my $sth = $dbh->prepare("
307 UPDATE aqbasketgroups
311 $sth->execute($basketgroupno);
314 #------------------------------------------------------------#
319 &DelBasket($basketno);
321 Deletes the basket that has basketno field $basketno in the aqbasket table.
325 =item C<$basketno> is the primary key of the basket in the aqbasket table.
332 my ( $basketno ) = @_;
333 my $query = "DELETE FROM aqbasket WHERE basketno=?";
334 my $dbh = C4
::Context
->dbh;
335 my $sth = $dbh->prepare($query);
336 $sth->execute($basketno);
340 #------------------------------------------------------------#
344 &ModBasket($basketinfo);
346 Modifies a basket, using a hashref $basketinfo for the relevant information, only $basketinfo->{'basketno'} is required.
350 =item C<$basketno> is the primary key of the basket in the aqbasket table.
357 my $basketinfo = shift;
358 my $query = "UPDATE aqbasket SET ";
360 foreach my $key (keys %$basketinfo){
361 if ($key ne 'basketno'){
362 $query .= "$key=?, ";
363 push(@params, $basketinfo->{$key} || undef );
366 # get rid of the "," at the end of $query
367 if (substr($query, length($query)-2) eq ', '){
372 $query .= "WHERE basketno=?";
373 push(@params, $basketinfo->{'basketno'});
374 my $dbh = C4
::Context
->dbh;
375 my $sth = $dbh->prepare($query);
376 $sth->execute(@params);
380 #------------------------------------------------------------#
382 =head3 ModBasketHeader
384 &ModBasketHeader($basketno, $basketname, $note, $booksellernote, $contractnumber);
386 Modifies a basket's header.
390 =item C<$basketno> is the "basketno" field in the "aqbasket" table;
392 =item C<$basketname> is the "basketname" field in the "aqbasket" table;
394 =item C<$note> is the "note" field in the "aqbasket" table;
396 =item C<$booksellernote> is the "booksellernote" field in the "aqbasket" table;
398 =item C<$contractnumber> is the "contractnumber" (foreign) key in the "aqbasket" table.
404 sub ModBasketHeader
{
405 my ($basketno, $basketname, $note, $booksellernote, $contractnumber) = @_;
406 my $query = "UPDATE aqbasket SET basketname=?, note=?, booksellernote=? WHERE basketno=?";
407 my $dbh = C4
::Context
->dbh;
408 my $sth = $dbh->prepare($query);
409 $sth->execute($basketname,$note,$booksellernote,$basketno);
410 if ( $contractnumber ) {
411 my $query2 ="UPDATE aqbasket SET contractnumber=? WHERE basketno=?";
412 my $sth2 = $dbh->prepare($query2);
413 $sth2->execute($contractnumber,$basketno);
419 #------------------------------------------------------------#
421 =head3 GetBasketsByBookseller
423 @results = &GetBasketsByBookseller($booksellerid, $extra);
425 Returns a list of hashes of all the baskets that belong to bookseller 'booksellerid'.
429 =item C<$booksellerid> is the 'id' field of the bookseller in the aqbooksellers table
431 =item C<$extra> is the extra sql parameters, can be
433 $extra->{groupby}: group baskets by column
434 ex. $extra->{groupby} = aqbasket.basketgroupid
435 $extra->{orderby}: order baskets by column
436 $extra->{limit}: limit number of results (can be helpful for pagination)
442 sub GetBasketsByBookseller
{
443 my ($booksellerid, $extra) = @_;
444 my $query = "SELECT * FROM aqbasket WHERE booksellerid=?";
446 if ($extra->{groupby
}) {
447 $query .= " GROUP by $extra->{groupby}";
449 if ($extra->{orderby
}){
450 $query .= " ORDER by $extra->{orderby}";
452 if ($extra->{limit
}){
453 $query .= " LIMIT $extra->{limit}";
456 my $dbh = C4
::Context
->dbh;
457 my $sth = $dbh->prepare($query);
458 $sth->execute($booksellerid);
459 my $results = $sth->fetchall_arrayref({});
464 #------------------------------------------------------------#
466 =head3 GetBasketsByBasketgroup
468 $baskets = &GetBasketsByBasketgroup($basketgroupid);
470 Returns a reference to all baskets that belong to basketgroup $basketgroupid.
474 sub GetBasketsByBasketgroup
{
475 my $basketgroupid = shift;
476 my $query = "SELECT * FROM aqbasket
477 LEFT JOIN aqcontract USING(contractnumber) WHERE basketgroupid=?";
478 my $dbh = C4
::Context
->dbh;
479 my $sth = $dbh->prepare($query);
480 $sth->execute($basketgroupid);
481 my $results = $sth->fetchall_arrayref({});
486 #------------------------------------------------------------#
488 =head3 NewBasketgroup
490 $basketgroupid = NewBasketgroup(\%hashref);
492 Adds a basketgroup to the aqbasketgroups table, and add the initial baskets to it.
494 $hashref->{'booksellerid'} is the 'id' field of the bookseller in the aqbooksellers table,
496 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
498 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
500 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
502 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
504 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
509 my $basketgroupinfo = shift;
510 die "booksellerid is required to create a basketgroup" unless $basketgroupinfo->{'booksellerid'};
511 my $query = "INSERT INTO aqbasketgroups (";
513 foreach my $field ('name', 'deliveryplace', 'deliverycomment', 'closed') {
514 if ( $basketgroupinfo->{$field} ) {
515 $query .= "$field, ";
516 push(@params, $basketgroupinfo->{$field});
519 $query .= "booksellerid) VALUES (";
524 push(@params, $basketgroupinfo->{'booksellerid'});
525 my $dbh = C4
::Context
->dbh;
526 my $sth = $dbh->prepare($query);
527 $sth->execute(@params);
528 my $basketgroupid = $dbh->{'mysql_insertid'};
529 if( $basketgroupinfo->{'basketlist'} ) {
530 foreach my $basketno (@
{$basketgroupinfo->{'basketlist'}}) {
531 my $query2 = "UPDATE aqbasket SET basketgroupid=? WHERE basketno=?";
532 my $sth2 = $dbh->prepare($query2);
533 $sth2->execute($basketgroupid, $basketno);
536 return $basketgroupid;
539 #------------------------------------------------------------#
541 =head3 ModBasketgroup
543 ModBasketgroup(\%hashref);
545 Modifies a basketgroup in the aqbasketgroups table, and add the baskets to it.
547 $hashref->{'id'} is the 'id' field of the basketgroup in the aqbasketgroup table, this parameter is mandatory,
549 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
551 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
553 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
555 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
557 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
559 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
564 my $basketgroupinfo = shift;
565 die "basketgroup id is required to edit a basketgroup" unless $basketgroupinfo->{'id'};
566 my $dbh = C4
::Context
->dbh;
567 my $query = "UPDATE aqbasketgroups SET ";
569 foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
570 if ( defined $basketgroupinfo->{$field} ) {
571 $query .= "$field=?, ";
572 push(@params, $basketgroupinfo->{$field});
577 $query .= " WHERE id=?";
578 push(@params, $basketgroupinfo->{'id'});
579 my $sth = $dbh->prepare($query);
580 $sth->execute(@params);
582 $sth = $dbh->prepare('UPDATE aqbasket SET basketgroupid = NULL WHERE basketgroupid = ?');
583 $sth->execute($basketgroupinfo->{'id'});
585 if($basketgroupinfo->{'basketlist'} && @
{$basketgroupinfo->{'basketlist'}}){
586 $sth = $dbh->prepare("UPDATE aqbasket SET basketgroupid=? WHERE basketno=?");
587 foreach my $basketno (@
{$basketgroupinfo->{'basketlist'}}) {
588 $sth->execute($basketgroupinfo->{'id'}, $basketno);
595 #------------------------------------------------------------#
597 =head3 DelBasketgroup
599 DelBasketgroup($basketgroupid);
601 Deletes a basketgroup in the aqbasketgroups table, and removes the reference to it from the baskets,
605 =item C<$basketgroupid> is the 'id' field of the basket in the aqbasketgroup table
612 my $basketgroupid = shift;
613 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
614 my $query = "DELETE FROM aqbasketgroups WHERE id=?";
615 my $dbh = C4
::Context
->dbh;
616 my $sth = $dbh->prepare($query);
617 $sth->execute($basketgroupid);
621 #------------------------------------------------------------#
624 =head2 FUNCTIONS ABOUT ORDERS
626 =head3 GetBasketgroup
628 $basketgroup = &GetBasketgroup($basketgroupid);
630 Returns a reference to the hash containing all infermation about the basketgroup.
635 my $basketgroupid = shift;
636 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
637 my $query = "SELECT * FROM aqbasketgroups WHERE id=?";
638 my $dbh = C4
::Context
->dbh;
639 my $sth = $dbh->prepare($query);
640 $sth->execute($basketgroupid);
641 my $result = $sth->fetchrow_hashref;
646 #------------------------------------------------------------#
648 =head3 GetBasketgroups
650 $basketgroups = &GetBasketgroups($booksellerid);
652 Returns a reference to the array of all the basketgroups of bookseller $booksellerid.
656 sub GetBasketgroups
{
657 my $booksellerid = shift;
658 die "bookseller id is required to edit a basketgroup" unless $booksellerid;
659 my $query = "SELECT * FROM aqbasketgroups WHERE booksellerid=? ORDER BY `id` DESC";
660 my $dbh = C4
::Context
->dbh;
661 my $sth = $dbh->prepare($query);
662 $sth->execute($booksellerid);
663 my $results = $sth->fetchall_arrayref({});
668 #------------------------------------------------------------#
670 =head2 FUNCTIONS ABOUT ORDERS
674 #------------------------------------------------------------#
676 =head3 GetPendingOrders
678 $orders = &GetPendingOrders($booksellerid, $grouped, $owner);
680 Finds pending orders from the bookseller with the given ID. Ignores
681 completed and cancelled orders.
683 C<$booksellerid> contains the bookseller identifier
684 C<$grouped> contains 0 or 1. 0 means returns the list, 1 means return the total
685 C<$owner> contains 0 or 1. 0 means any owner. 1 means only the list of orders entered by the user itself.
687 C<$orders> is a reference-to-array; each element is a
688 reference-to-hash with the following fields:
689 C<$grouped> is a boolean that, if set to 1 will group all order lines of the same basket
690 in a single result line
694 =item C<authorizedby>
702 These give the value of the corresponding field in the aqorders table
703 of the Koha database.
705 Results are ordered from most to least recent.
709 sub GetPendingOrders
{
710 my ($supplierid,$grouped,$owner,$basketno) = @_;
711 my $dbh = C4
::Context
->dbh;
713 SELECT ".($grouped?
"count(*),":"")."aqbasket.basketno,
714 surname,firstname,aqorders.*,biblio.*,biblioitems.isbn,
715 aqbasket.closedate, aqbasket.creationdate, aqbasket.basketname
717 LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
718 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
719 LEFT JOIN biblio ON biblio.biblionumber=aqorders.biblionumber
720 LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
722 AND (quantity > quantityreceived OR quantityreceived is NULL)
723 AND datecancellationprinted IS NULL";
724 my @query_params = ( $supplierid );
725 my $userenv = C4
::Context
->userenv;
726 if ( C4
::Context
->preference("IndependantBranches") ) {
727 if ( ($userenv) && ( $userenv->{flags
} != 1 ) ) {
728 $strsth .= " and (borrowers.branchcode = ?
729 or borrowers.branchcode = '')";
730 push @query_params, $userenv->{branch
};
734 $strsth .= " AND aqbasket.authorisedby=? ";
735 push @query_params, $userenv->{'number'};
738 $strsth .= " AND aqbasket.basketno=? ";
739 push @query_params, $basketno;
741 $strsth .= " group by aqbasket.basketno" if $grouped;
742 $strsth .= " order by aqbasket.basketno";
744 my $sth = $dbh->prepare($strsth);
745 $sth->execute( @query_params );
746 my $results = $sth->fetchall_arrayref({});
751 #------------------------------------------------------------#
755 @orders = &GetOrders($basketnumber, $orderby);
757 Looks up the pending (non-cancelled) orders with the given basket
758 number. If C<$booksellerID> is non-empty, only orders from that seller
762 C<&basket> returns a two-element array. C<@orders> is an array of
763 references-to-hash, whose keys are the fields from the aqorders,
764 biblio, and biblioitems tables in the Koha database.
769 my ( $basketno, $orderby ) = @_;
770 my $dbh = C4
::Context
->dbh;
772 SELECT biblio.*,biblioitems.*,
777 LEFT JOIN aqbudgets ON aqbudgets.budget_id = aqorders.budget_id
778 LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
779 LEFT JOIN biblioitems ON biblioitems.biblionumber =biblio.biblionumber
781 AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')
784 $orderby = "biblioitems.publishercode,biblio.title" unless $orderby;
785 $query .= " ORDER BY $orderby";
786 my $sth = $dbh->prepare($query);
787 $sth->execute($basketno);
788 my $results = $sth->fetchall_arrayref({});
793 #------------------------------------------------------------#
795 =head3 GetOrderNumber
797 $ordernumber = &GetOrderNumber($biblioitemnumber, $biblionumber);
799 Looks up the ordernumber with the given biblionumber and biblioitemnumber.
801 Returns the number of this order.
805 =item C<$ordernumber> is the order number.
812 my ( $biblionumber,$biblioitemnumber ) = @_;
813 my $dbh = C4
::Context
->dbh;
818 AND biblioitemnumber=?
820 my $sth = $dbh->prepare($query);
821 $sth->execute( $biblionumber, $biblioitemnumber );
823 return $sth->fetchrow;
826 #------------------------------------------------------------#
830 $order = &GetOrder($ordernumber);
832 Looks up an order by order number.
834 Returns a reference-to-hash describing the order. The keys of
835 C<$order> are fields from the biblio, biblioitems, aqorders tables of the Koha database.
840 my ($ordernumber) = @_;
841 my $dbh = C4
::Context
->dbh;
843 SELECT biblioitems.*, biblio.*, aqorders.*
845 LEFT JOIN biblio on biblio.biblionumber=aqorders.biblionumber
846 LEFT JOIN biblioitems on biblioitems.biblionumber=aqorders.biblionumber
847 WHERE aqorders.ordernumber=?
850 my $sth= $dbh->prepare($query);
851 $sth->execute($ordernumber);
852 my $data = $sth->fetchrow_hashref;
857 #------------------------------------------------------------#
861 &NewOrder(\%hashref);
863 Adds a new order to the database. Any argument that isn't described
864 below is the new value of the field with the same name in the aqorders
865 table of the Koha database.
869 =item $hashref->{'basketno'} is the basketno foreign key in aqorders, it is mandatory
871 =item $hashref->{'ordernumber'} is a "minimum order number."
873 =item $hashref->{'budgetdate'} is effectively ignored.
874 If it's undef (anything false) or the string 'now', the current day is used.
875 Else, the upcoming July 1st is used.
877 =item $hashref->{'subscription'} may be either "yes", or anything else for "no".
879 =item $hashref->{'uncertainprice'} may be 0 for "the price is known" or 1 for "the price is uncertain"
881 =item defaults entrydate to Now
883 The following keys are used: "biblionumber", "title", "basketno", "quantity", "notes", "biblioitemnumber", "rrp", "ecost", "gst", "unitprice", "subscription", "sort1", "sort2", "booksellerinvoicenumber", "listprice", "budgetdate", "purchaseordernumber", "branchcode", "booksellerinvoicenumber", "bookfundid".
890 my $orderinfo = shift;
891 #### ------------------------------
892 my $dbh = C4
::Context
->dbh;
896 # if these parameters are missing, we can't continue
897 for my $key (qw
/basketno quantity biblionumber budget_id/) {
898 croak
"Mandatory parameter $key missing" unless $orderinfo->{$key};
901 if ( defined $orderinfo->{subscription
} && $orderinfo->{'subscription'} eq 'yes' ) {
902 $orderinfo->{'subscription'} = 1;
904 $orderinfo->{'subscription'} = 0;
906 $orderinfo->{'entrydate'} ||= C4
::Dates
->new()->output("iso");
907 if (!$orderinfo->{quantityreceived
}) {
908 $orderinfo->{quantityreceived
} = 0;
911 my $ordernumber=InsertInTable
("aqorders",$orderinfo);
912 return ( $orderinfo->{'basketno'}, $ordernumber );
917 #------------------------------------------------------------#
926 #my ($biblioitemnumber,$ordernumber, $biblionumber) = @_;
927 my ($itemnumber, $ordernumber) = @_;
928 my $dbh = C4
::Context
->dbh;
930 INSERT INTO aqorders_items
931 (itemnumber
, ordernumber
)
934 my $sth = $dbh->prepare($query);
935 $sth->execute( $itemnumber, $ordernumber);
938 #------------------------------------------------------------#
942 &ModOrder(\%hashref);
944 Modifies an existing order. Updates the order with order number
945 $hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All
946 other keys of the hash update the fields with the same name in the aqorders
947 table of the Koha database.
952 my $orderinfo = shift;
954 die "Ordernumber is required" if $orderinfo->{'ordernumber'} eq '' ;
955 die "Biblionumber is required" if $orderinfo->{'biblionumber'} eq '';
957 my $dbh = C4
::Context
->dbh;
960 # update uncertainprice to an integer, just in case (under FF, checked boxes have the value "ON" by default)
961 $orderinfo->{uncertainprice
}=1 if $orderinfo->{uncertainprice
};
963 # delete($orderinfo->{'branchcode'});
964 # the hash contains a lot of entries not in aqorders, so get the columns ...
965 my $sth = $dbh->prepare("SELECT * FROM aqorders LIMIT 1;");
967 my $colnames = $sth->{NAME
};
968 my $query = "UPDATE aqorders SET ";
970 foreach my $orderinfokey (grep(!/ordernumber/, keys %$orderinfo)){
971 # ... and skip hash entries that are not in the aqorders table
972 # FIXME : probably not the best way to do it (would be better to have a correct hash)
973 next unless grep(/^$orderinfokey$/, @
$colnames);
974 $query .= "$orderinfokey=?, ";
975 push(@params, $orderinfo->{$orderinfokey});
978 $query .= "timestamp=NOW() WHERE ordernumber=?";
979 # push(@params, $specorderinfo{'ordernumber'});
980 push(@params, $orderinfo->{'ordernumber'} );
981 $sth = $dbh->prepare($query);
982 $sth->execute(@params);
986 #------------------------------------------------------------#
990 &ModOrderItem(\%hashref);
992 Modifies the itemnumber in the aqorders_items table. The input hash needs three entities:
996 =item - itemnumber: the old itemnumber
997 =item - ordernumber: the order this item is attached to
998 =item - newitemnumber: the new itemnumber we want to attach the line to
1005 my $orderiteminfo = shift;
1006 if (! $orderiteminfo->{'ordernumber'} || ! $orderiteminfo->{'itemnumber'} || ! $orderiteminfo->{'newitemnumber'}){
1007 die "Ordernumber, itemnumber and newitemnumber is required";
1010 my $dbh = C4
::Context
->dbh;
1012 my $query = "UPDATE aqorders_items set itemnumber=? where itemnumber=? and ordernumber=?";
1013 my @params = ($orderiteminfo->{'newitemnumber'}, $orderiteminfo->{'itemnumber'}, $orderiteminfo->{'ordernumber'});
1014 my $sth = $dbh->prepare($query);
1015 $sth->execute(@params);
1019 #------------------------------------------------------------#
1022 =head3 ModOrderBibliotemNumber
1024 &ModOrderBiblioitemNumber($biblioitemnumber,$ordernumber, $biblionumber);
1026 Modifies the biblioitemnumber for an existing order.
1027 Updates the order with order number C<$ordernum> and biblionumber C<$biblionumber>.
1031 #FIXME: is this used at all?
1032 sub ModOrderBiblioitemNumber
{
1033 my ($biblioitemnumber,$ordernumber, $biblionumber) = @_;
1034 my $dbh = C4
::Context
->dbh;
1037 SET biblioitemnumber = ?
1038 WHERE ordernumber = ?
1039 AND biblionumber = ?";
1040 my $sth = $dbh->prepare($query);
1041 $sth->execute( $biblioitemnumber, $ordernumber, $biblionumber );
1044 #------------------------------------------------------------#
1046 =head3 ModReceiveOrder
1048 &ModReceiveOrder($biblionumber, $ordernumber, $quantityreceived, $user,
1049 $unitprice, $booksellerinvoicenumber, $biblioitemnumber,
1050 $freight, $bookfund, $rrp);
1052 Updates an order, to reflect the fact that it was received, at least
1053 in part. All arguments not mentioned below update the fields with the
1054 same name in the aqorders table of the Koha database.
1056 If a partial order is received, splits the order into two. The received
1057 portion must have a booksellerinvoicenumber.
1059 Updates the order with bibilionumber C<$biblionumber> and ordernumber
1065 sub ModReceiveOrder
{
1067 $biblionumber, $ordernumber, $quantrec, $user, $cost,
1068 $invoiceno, $freight, $rrp, $budget_id, $datereceived
1071 my $dbh = C4
::Context
->dbh;
1072 # warn "DATE BEFORE : $daterecieved";
1073 # $daterecieved=POSIX::strftime("%Y-%m-%d",CORE::localtime) unless $daterecieved;
1074 # warn "DATE REC : $daterecieved";
1075 $datereceived = C4
::Dates
->output('iso') unless $datereceived;
1076 my $suggestionid = GetSuggestionFromBiblionumber
( $dbh, $biblionumber );
1077 if ($suggestionid) {
1078 ModSuggestion
( {suggestionid
=>$suggestionid,
1079 STATUS
=>'AVAILABLE',
1080 biblionumber
=> $biblionumber}
1084 my $sth=$dbh->prepare("
1085 SELECT * FROM aqorders
1086 WHERE biblionumber=? AND aqorders.ordernumber=?");
1088 $sth->execute($biblionumber,$ordernumber);
1089 my $order = $sth->fetchrow_hashref();
1092 if ( $order->{quantity
} > $quantrec ) {
1093 $sth=$dbh->prepare("
1095 SET quantityreceived=?
1097 , booksellerinvoicenumber=?
1102 WHERE biblionumber=? AND ordernumber=?");
1104 $sth->execute($quantrec,$datereceived,$invoiceno,$cost,$freight,$rrp,$quantrec,$biblionumber,$ordernumber);
1107 # create a new order for the remaining items, and set its bookfund.
1108 foreach my $orderkey ( "linenumber", "allocation" ) {
1109 delete($order->{'$orderkey'});
1111 $order->{'quantity'} -= $quantrec;
1112 $order->{'quantityreceived'} = 0;
1113 my $newOrder = NewOrder
($order);
1115 $sth=$dbh->prepare("update aqorders
1116 set quantityreceived=?,datereceived=?,booksellerinvoicenumber=?,
1117 unitprice=?,freight=?,rrp=?
1118 where biblionumber=? and ordernumber=?");
1119 $sth->execute($quantrec,$datereceived,$invoiceno,$cost,$freight,$rrp,$biblionumber,$ordernumber);
1122 return $datereceived;
1124 #------------------------------------------------------------#
1128 @results = &SearchOrder($search, $biblionumber, $complete);
1130 Searches for orders.
1132 C<$search> may take one of several forms: if it is an ISBN,
1133 C<&ordersearch> returns orders with that ISBN. If C<$search> is an
1134 order number, C<&ordersearch> returns orders with that order number
1135 and biblionumber C<$biblionumber>. Otherwise, C<$search> is considered
1136 to be a space-separated list of search terms; in this case, all of the
1137 terms must appear in the title (matching the beginning of title
1140 If C<$complete> is C<yes>, the results will include only completed
1141 orders. In any case, C<&ordersearch> ignores cancelled orders.
1143 C<&ordersearch> returns an array.
1144 C<@results> is an array of references-to-hash with the following keys:
1150 =item C<seriestitle>
1161 #### -------- SearchOrder-------------------------------
1162 my ($ordernumber, $search, $supplierid, $basket) = @_;
1164 my $dbh = C4
::Context
->dbh;
1169 LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1170 LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
1171 LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
1172 WHERE (datecancellationprinted is NULL)";
1175 $query .= " AND (aqorders.ordernumber=?)";
1176 push @args, $ordernumber;
1179 $query .= " AND (biblio.title like ? OR biblio.author LIKE ? OR biblioitems.isbn like ?)";
1180 push @args, ("%$search%","%$search%","%$search%");
1183 $query .= "AND aqbasket.booksellerid = ?";
1184 push @args, $supplierid;
1187 $query .= "AND aqorders.basketno = ?";
1188 push @args, $basket;
1191 my $sth = $dbh->prepare($query);
1192 $sth->execute(@args);
1193 my $results = $sth->fetchall_arrayref({});
1198 #------------------------------------------------------------#
1202 &DelOrder($biblionumber, $ordernumber);
1204 Cancel the order with the given order and biblio numbers. It does not
1205 delete any entries in the aqorders table, it merely marks them as
1211 my ( $bibnum, $ordernumber ) = @_;
1212 my $dbh = C4
::Context
->dbh;
1215 SET datecancellationprinted=now()
1216 WHERE biblionumber=? AND ordernumber=?
1218 my $sth = $dbh->prepare($query);
1219 $sth->execute( $bibnum, $ordernumber );
1221 my @itemnumbers = GetItemnumbersFromOrder
( $ordernumber );
1222 foreach my $itemnumber (@itemnumbers){
1223 C4
::Items
::DelItem
( $dbh, $bibnum, $itemnumber );
1228 =head2 FUNCTIONS ABOUT PARCELS
1232 #------------------------------------------------------------#
1236 @results = &GetParcel($booksellerid, $code, $date);
1238 Looks up all of the received items from the supplier with the given
1239 bookseller ID at the given date, for the given code (bookseller Invoice number). Ignores cancelled and completed orders.
1241 C<@results> is an array of references-to-hash. The keys of each element are fields from
1242 the aqorders, biblio, and biblioitems tables of the Koha database.
1244 C<@results> is sorted alphabetically by book title.
1249 #gets all orders from a certain supplier, orders them alphabetically
1250 my ( $supplierid, $code, $datereceived ) = @_;
1251 my $dbh = C4
::Context
->dbh;
1254 if $code; # add % if we search on a given code (otherwise, let him empty)
1256 SELECT authorisedby,
1261 aqorders.biblionumber,
1262 aqorders.ordernumber,
1264 aqorders.quantityreceived,
1271 LEFT JOIN aqbasket ON aqbasket.basketno=aqorders.basketno
1272 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1273 LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1275 aqbasket.booksellerid = ?
1276 AND aqorders.booksellerinvoicenumber LIKE ?
1277 AND aqorders.datereceived = ? ";
1279 my @query_params = ( $supplierid, $code, $datereceived );
1280 if ( C4
::Context
->preference("IndependantBranches") ) {
1281 my $userenv = C4
::Context
->userenv;
1282 if ( ($userenv) && ( $userenv->{flags
} != 1 ) ) {
1283 $strsth .= " and (borrowers.branchcode = ?
1284 or borrowers.branchcode = '')";
1285 push @query_params, $userenv->{branch
};
1288 $strsth .= " ORDER BY aqbasket.basketno";
1289 # ## parcelinformation : $strsth
1290 my $sth = $dbh->prepare($strsth);
1291 $sth->execute( @query_params );
1292 while ( my $data = $sth->fetchrow_hashref ) {
1293 push( @results, $data );
1295 # ## countparcelbiblio: scalar(@results)
1301 #------------------------------------------------------------#
1305 $results = &GetParcels($bookseller, $order, $code, $datefrom, $dateto);
1307 get a lists of parcels.
1314 is the bookseller this function has to get parcels.
1317 To know on what criteria the results list has to be ordered.
1320 is the booksellerinvoicenumber.
1322 =item $datefrom & $dateto
1323 to know on what date this function has to filter its search.
1328 a pointer on a hash list containing parcel informations as such :
1334 =item Last operation
1336 =item Number of biblio
1338 =item Number of items
1345 my ($bookseller,$order, $code, $datefrom, $dateto) = @_;
1346 my $dbh = C4
::Context
->dbh;
1347 my @query_params = ();
1349 SELECT aqorders.booksellerinvoicenumber,
1350 datereceived,purchaseordernumber,
1351 count(DISTINCT biblionumber) AS biblio,
1352 sum(quantity) AS itemsexpected,
1353 sum(quantityreceived) AS itemsreceived
1354 FROM aqorders LEFT JOIN aqbasket ON aqbasket.basketno = aqorders.basketno
1355 WHERE aqbasket.booksellerid = ? and datereceived IS NOT NULL
1357 push @query_params, $bookseller;
1359 if ( defined $code ) {
1360 $strsth .= ' and aqorders.booksellerinvoicenumber like ? ';
1361 # add a % to the end of the code to allow stemming.
1362 push @query_params, "$code%";
1365 if ( defined $datefrom ) {
1366 $strsth .= ' and datereceived >= ? ';
1367 push @query_params, $datefrom;
1370 if ( defined $dateto ) {
1371 $strsth .= 'and datereceived <= ? ';
1372 push @query_params, $dateto;
1375 $strsth .= "group by aqorders.booksellerinvoicenumber,datereceived ";
1377 # can't use a placeholder to place this column name.
1378 # but, we could probably be checking to make sure it is a column that will be fetched.
1379 $strsth .= "order by $order " if ($order);
1381 my $sth = $dbh->prepare($strsth);
1383 $sth->execute( @query_params );
1384 my $results = $sth->fetchall_arrayref({});
1389 #------------------------------------------------------------#
1391 =head3 GetLateOrders
1393 @results = &GetLateOrders;
1395 Searches for bookseller with late orders.
1398 the table of supplier with late issues. This table is full of hashref.
1404 my $supplierid = shift;
1407 my $dbh = C4
::Context
->dbh;
1409 #BEWARE, order of parenthesis and LEFT JOIN is important for speed
1410 my $dbdriver = C4
::Context
->config("db_scheme") || "mysql";
1412 my @query_params = ($delay); # delay is the first argument regardless
1414 SELECT aqbasket.basketno,
1415 aqorders.ordernumber,
1416 DATE(aqbasket.closedate) AS orderdate,
1417 aqorders.rrp AS unitpricesupplier,
1418 aqorders.ecost AS unitpricelib,
1419 aqbudgets.budget_name AS budget,
1420 borrowers.branchcode AS branch,
1421 aqbooksellers.name AS supplier,
1422 biblio.author, biblio.title,
1423 biblioitems.publishercode AS publisher,
1424 biblioitems.publicationyear,
1428 aqorders LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1429 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
1430 LEFT JOIN aqbudgets ON aqorders.budget_id = aqbudgets.budget_id,
1431 aqbasket LEFT JOIN borrowers ON aqbasket.authorisedby = borrowers.borrowernumber
1432 LEFT JOIN aqbooksellers ON aqbasket.booksellerid = aqbooksellers.id
1433 WHERE aqorders.basketno = aqbasket.basketno
1434 AND ( datereceived = ''
1435 OR datereceived IS NULL
1436 OR aqorders.quantityreceived < aqorders.quantity
1438 AND (aqorders.datecancellationprinted IS NULL OR aqorders.datecancellationprinted='0000-00-00')
1441 if ($dbdriver eq "mysql") {
1443 aqorders.quantity - IFNULL(aqorders.quantityreceived,0) AS quantity,
1444 (aqorders.quantity - IFNULL(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
1445 DATEDIFF(CURDATE( ),closedate) AS latesince
1447 $from .= " AND (closedate <= DATE_SUB(CURDATE( ),INTERVAL ? DAY)) ";
1449 HAVING quantity <> 0
1450 AND unitpricesupplier <> 0
1451 AND unitpricelib <> 0
1454 # FIXME: account for IFNULL as above
1456 aqorders.quantity AS quantity,
1457 aqorders.quantity * aqorders.rrp AS subtotal,
1458 (CURDATE - closedate) AS latesince
1460 $from .= " AND (closedate <= (CURDATE -(INTERVAL ? DAY)) ";
1462 if (defined $supplierid) {
1463 $from .= ' AND aqbasket.booksellerid = ? ';
1464 push @query_params, $supplierid;
1466 if (defined $branch) {
1467 $from .= ' AND borrowers.branchcode LIKE ? ';
1468 push @query_params, $branch;
1470 if (C4
::Context
->preference("IndependantBranches")
1471 && C4
::Context
->userenv
1472 && C4
::Context
->userenv->{flags
} != 1 ) {
1473 $from .= ' AND borrowers.branchcode LIKE ? ';
1474 push @query_params, C4
::Context
->userenv->{branch
};
1476 my $query = "$select $from $having\nORDER BY latesince, basketno, borrowers.branchcode, supplier";
1477 $debug and print STDERR
"GetLateOrders query: $query\nGetLateOrders args: " . join(" ",@query_params);
1478 my $sth = $dbh->prepare($query);
1479 $sth->execute(@query_params);
1481 while (my $data = $sth->fetchrow_hashref) {
1482 $data->{orderdate
} = format_date
($data->{orderdate
});
1483 push @results, $data;
1488 #------------------------------------------------------------#
1492 (\@order_loop, $total_qty, $total_price, $total_qtyreceived) = GetHistory( %params );
1494 Retreives some acquisition history information
1502 basket - search both basket name and number
1503 booksellerinvoicenumber
1506 $order_loop is a list of hashrefs that each look like this:
1508 'author' => 'Twain, Mark',
1510 'biblionumber' => '215',
1512 'creationdate' => 'MM/DD/YYYY',
1513 'datereceived' => undef,
1516 'invoicenumber' => undef,
1518 'ordernumber' => '1',
1520 'quantityreceived' => undef,
1521 'title' => 'The Adventures of Huckleberry Finn'
1523 $total_qty is the sum of all of the quantities in $order_loop
1524 $total_price is the cost of each in $order_loop times the quantity
1525 $total_qtyreceived is the sum of all of the quantityreceived entries in $order_loop
1530 # don't run the query if there are no parameters (list would be too long for sure !)
1531 croak
"No search params" unless @_;
1533 my $title = $params{title
};
1534 my $author = $params{author
};
1535 my $isbn = $params{isbn
};
1536 my $name = $params{name
};
1537 my $from_placed_on = $params{from_placed_on
};
1538 my $to_placed_on = $params{to_placed_on
};
1539 my $basket = $params{basket
};
1540 my $booksellerinvoicenumber = $params{booksellerinvoicenumber
};
1544 my $total_qtyreceived = 0;
1545 my $total_price = 0;
1547 my $dbh = C4
::Context
->dbh;
1554 aqbasket.basketname,
1555 aqbasket.basketgroupid,
1556 aqbasketgroups.name as groupname,
1558 aqbasket.creationdate,
1559 aqorders.datereceived,
1561 aqorders.quantityreceived,
1563 aqorders.ordernumber,
1564 aqorders.booksellerinvoicenumber as invoicenumber,
1565 aqbooksellers.id as id,
1566 aqorders.biblionumber
1568 LEFT JOIN aqbasket ON aqorders.basketno=aqbasket.basketno
1569 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid=aqbasketgroups.id
1570 LEFT JOIN aqbooksellers ON aqbasket.booksellerid=aqbooksellers.id
1571 LEFT JOIN biblioitems ON biblioitems.biblionumber=aqorders.biblionumber
1572 LEFT JOIN biblio ON biblio.biblionumber=aqorders.biblionumber";
1574 $query .= " LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber"
1575 if ( C4
::Context
->preference("IndependantBranches") );
1577 $query .= " WHERE (datecancellationprinted is NULL or datecancellationprinted='0000-00-00') ";
1579 my @query_params = ();
1582 $query .= " AND biblio.title LIKE ? ";
1583 $title =~ s/\s+/%/g;
1584 push @query_params, "%$title%";
1588 $query .= " AND biblio.author LIKE ? ";
1589 push @query_params, "%$author%";
1593 $query .= " AND biblioitems.isbn LIKE ? ";
1594 push @query_params, "%$isbn%";
1598 $query .= " AND aqbooksellers.name LIKE ? ";
1599 push @query_params, "%$name%";
1602 if ( $from_placed_on ) {
1603 $query .= " AND creationdate >= ? ";
1604 push @query_params, $from_placed_on;
1607 if ( $to_placed_on ) {
1608 $query .= " AND creationdate <= ? ";
1609 push @query_params, $to_placed_on;
1613 if ($basket =~ m/^\d+$/) {
1614 $query .= " AND aqorders.basketno = ? ";
1615 push @query_params, $basket;
1617 $query .= " AND aqbasket.basketname LIKE ? ";
1618 push @query_params, "%$basket%";
1622 if ($booksellerinvoicenumber) {
1623 $query .= " AND (aqorders.booksellerinvoicenumber LIKE ? OR aqbasket.booksellerinvoicenumber LIKE ?)";
1624 push @query_params, "%$booksellerinvoicenumber%", "%$booksellerinvoicenumber%";
1627 if ( C4
::Context
->preference("IndependantBranches") ) {
1628 my $userenv = C4
::Context
->userenv;
1629 if ( $userenv && ($userenv->{flags
} || 0) != 1 ) {
1630 $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
1631 push @query_params, $userenv->{branch
};
1634 $query .= " ORDER BY id";
1635 my $sth = $dbh->prepare($query);
1636 $sth->execute( @query_params );
1638 while ( my $line = $sth->fetchrow_hashref ) {
1639 $line->{count
} = $cnt++;
1640 $line->{toggle
} = 1 if $cnt % 2;
1641 push @order_loop, $line;
1642 $line->{creationdate
} = format_date
( $line->{creationdate
} );
1643 $line->{datereceived
} = format_date
( $line->{datereceived
} );
1644 $total_qty += $line->{'quantity'};
1645 $total_qtyreceived += $line->{'quantityreceived'};
1646 $total_price += $line->{'quantity'} * $line->{'ecost'};
1648 return \
@order_loop, $total_qty, $total_price, $total_qtyreceived;
1651 =head2 GetRecentAcqui
1653 $results = GetRecentAcqui($days);
1655 C<$results> is a ref to a table which containts hashref
1659 sub GetRecentAcqui
{
1661 my $dbh = C4
::Context
->dbh;
1665 ORDER BY timestamp DESC
1668 my $sth = $dbh->prepare($query);
1670 my $results = $sth->fetchall_arrayref({});
1676 $contractlist = &GetContracts($booksellerid, $activeonly);
1678 Looks up the contracts that belong to a bookseller
1680 Returns a list of contracts
1684 =item C<$booksellerid> is the "id" field in the "aqbooksellers" table.
1686 =item C<$activeonly> if exists get only contracts that are still active.
1693 my ( $booksellerid, $activeonly ) = @_;
1694 my $dbh = C4
::Context
->dbh;
1696 if (! $activeonly) {
1700 WHERE booksellerid=?
1705 WHERE booksellerid=?
1706 AND contractenddate >= CURDATE( )";
1708 my $sth = $dbh->prepare($query);
1709 $sth->execute( $booksellerid );
1711 while (my $data = $sth->fetchrow_hashref ) {
1712 push(@results, $data);
1718 #------------------------------------------------------------#
1722 $contract = &GetContract($contractID);
1724 Looks up the contract that has PRIMKEY (contractnumber) value $contractID
1731 my ( $contractno ) = @_;
1732 my $dbh = C4
::Context
->dbh;
1736 WHERE contractnumber=?
1739 my $sth = $dbh->prepare($query);
1740 $sth->execute( $contractno );
1741 my $result = $sth->fetchrow_hashref;
1750 Koha Development Team <http://koha-community.org/>