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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
29 use C4
::Templates
qw(gettemplate);
30 use Koha
::DateUtils
qw( dt_from_string output_pref );
31 use Koha
::Acquisition
::Baskets
;
32 use Koha
::Acquisition
::Booksellers
;
33 use Koha
::Acquisition
::Orders
;
37 use Koha
::Number
::Price
;
39 use Koha
::CsvProfiles
;
49 use vars
qw(@ISA @EXPORT);
55 &GetBasket &NewBasket &CloseBasket &ReopenBasket &DelBasket &ModBasket
56 &GetBasketAsCSV &GetBasketGroupAsCSV
57 &GetBasketsByBookseller &GetBasketsByBasketgroup
58 &GetBasketsInfosByBookseller
60 &GetBasketUsers &ModBasketUsers
65 &ModBasketgroup &NewBasketgroup &DelBasketgroup &GetBasketgroup &CloseBasketgroup
66 &GetBasketgroups &ReOpenBasketgroup
68 &DelOrder &ModOrder &GetOrder &GetOrders &GetOrdersByBiblionumber
69 &GetLateOrders &GetOrderFromItemnumber
70 &SearchOrders &GetHistory &GetRecentAcqui
71 &ModReceiveOrder &CancelReceipt
73 &GetLastOrderNotReceivedFromSubscriptionid &GetLastOrderReceivedFromSubscriptionid
89 &GetBiblioCountByBasketno
95 &FillWithDefaultValues
106 sub GetOrderFromItemnumber
{
107 my ($itemnumber) = @_;
108 my $dbh = C4
::Context
->dbh;
111 SELECT
* from aqorders LEFT JOIN aqorders_items
112 ON
( aqorders
.ordernumber
= aqorders_items
.ordernumber
)
113 WHERE itemnumber
= ?
|;
115 my $sth = $dbh->prepare($query);
119 $sth->execute($itemnumber);
121 my $order = $sth->fetchrow_hashref;
128 C4::Acquisition - Koha functions for dealing with orders and acquisitions
136 The functions in this module deal with acquisitions, managing book
137 orders, basket and parcels.
141 =head2 FUNCTIONS ABOUT BASKETS
145 $aqbasket = &GetBasket($basketnumber);
147 get all basket informations in aqbasket for a given basket
149 B<returns:> informations for a given basket returned as a hashref.
155 my $dbh = C4
::Context
->dbh;
158 concat( b.firstname,' ',b.surname) AS authorisedbyname
160 LEFT JOIN borrowers b ON aqbasket.authorisedby=b.borrowernumber
163 my $sth=$dbh->prepare($query);
164 $sth->execute($basketno);
165 my $basket = $sth->fetchrow_hashref;
169 #------------------------------------------------------------#
173 $basket = &NewBasket( $booksellerid, $authorizedby, $basketname,
174 $basketnote, $basketbooksellernote, $basketcontractnumber, $deliveryplace, $billingplace, $is_standing, $create_items );
176 Create a new basket in aqbasket table
180 =item C<$booksellerid> is a foreign key in the aqbasket table
182 =item C<$authorizedby> is the username of who created the basket
186 The other parameters are optional, see ModBasketHeader for more info on them.
191 my ( $booksellerid, $authorisedby, $basketname, $basketnote,
192 $basketbooksellernote, $basketcontractnumber, $deliveryplace,
193 $billingplace, $is_standing, $create_items ) = @_;
194 my $dbh = C4
::Context
->dbh;
196 'INSERT INTO aqbasket (creationdate,booksellerid,authorisedby) '
197 . 'VALUES (now(),?,?)';
198 $dbh->do( $query, {}, $booksellerid, $authorisedby );
200 my $basket = $dbh->{mysql_insertid
};
201 $basketname ||= q{}; # default to empty strings
203 $basketbooksellernote ||= q{};
204 ModBasketHeader
( $basket, $basketname, $basketnote, $basketbooksellernote,
205 $basketcontractnumber, $booksellerid, $deliveryplace, $billingplace, $is_standing, $create_items );
209 #------------------------------------------------------------#
213 &CloseBasket($basketno);
215 close a basket (becomes unmodifiable, except for receives)
221 my $dbh = C4
::Context
->dbh;
222 $dbh->do('UPDATE aqbasket SET closedate=now() WHERE basketno=?', {}, $basketno );
225 q{UPDATE aqorders SET orderstatus = 'ordered' WHERE basketno = ? AND orderstatus NOT IN ( 'complete', 'cancelled')},
233 &ReopenBasket($basketno);
241 my $dbh = C4
::Context
->dbh;
242 $dbh->do( q{UPDATE aqbasket SET closedate=NULL WHERE basketno=?}, {}, $basketno );
246 SET orderstatus = 'new'
248 AND orderstatus NOT IN ( 'complete', 'cancelled' )
253 #------------------------------------------------------------#
255 =head3 GetBasketAsCSV
257 &GetBasketAsCSV($basketno);
259 Export a basket as CSV
261 $cgi parameter is needed for column name translation
266 my ($basketno, $cgi, $csv_profile_id) = @_;
267 my $basket = GetBasket
($basketno);
268 my @orders = GetOrders
($basketno);
269 my $contract = GetContract
({
270 contractnumber
=> $basket->{'contractnumber'}
273 my $template = C4
::Templates
::gettemplate
("acqui/csv/basket.tt", "intranet", $cgi);
275 if ($csv_profile_id) {
276 my $csv_profile = Koha
::CsvProfiles
->find( $csv_profile_id );
277 Koha
::Exceptions
::ObjectNotFound
->throw( 'There is no valid csv profile given') unless $csv_profile;
279 my $csv = Text
::CSV_XS
->new({'quote_char'=>'"','escape_char'=>'"','sep_char'=>$csv_profile->csv_separator,'binary'=>1});
280 my $csv_profile_content = $csv_profile->content;
281 my ( @headers, @fields );
282 while ( $csv_profile_content =~ /
285 ([^\
|]*) # fieldname (table.row or row)
289 my $field = ($2 eq '') ?
$1 : $2;
291 $header =~ s/^\s+|\s+$//g; # Trim whitespaces
292 push @headers, $header;
294 $field =~ s/[^\.]*\.{1}//; # Remove the table name if exists.
295 $field =~ s/^\s+|\s+$//g; # Trim whitespaces
296 push @fields, $field;
298 for my $order (@orders) {
300 my $biblio = Koha
::Biblios
->find( $order->{biblionumber
} );
301 my $biblioitem = $biblio->biblioitem;
302 $order = { %$order, %{ $biblioitem->unblessed } };
304 $order = {%$order, %$contract};
306 $order = {%$order, %$basket, %{ $biblio->unblessed }};
307 for my $field (@fields) {
308 push @row, $order->{$field};
312 my $content = join( $csv_profile->csv_separator, @headers ) . "\n";
313 for my $row ( @rows ) {
314 $csv->combine(@
$row);
315 my $string = $csv->string;
316 $content .= $string . "\n";
321 foreach my $order (@orders) {
322 my $biblio = Koha
::Biblios
->find( $order->{biblionumber
} );
323 my $biblioitem = $biblio->biblioitem;
325 contractname
=> $contract->{'contractname'},
326 ordernumber
=> $order->{'ordernumber'},
327 entrydate
=> $order->{'entrydate'},
328 isbn
=> $order->{'isbn'},
329 author
=> $biblio->author,
330 title
=> $biblio->title,
331 publicationyear
=> $biblioitem->publicationyear,
332 publishercode
=> $biblioitem->publishercode,
333 collectiontitle
=> $biblioitem->collectiontitle,
334 notes
=> $order->{'order_vendornote'},
335 quantity
=> $order->{'quantity'},
336 rrp
=> $order->{'rrp'},
338 for my $place ( qw( deliveryplace billingplace ) ) {
339 if ( my $library = Koha
::Libraries
->find( $row->{deliveryplace
} ) ) {
340 $row->{$place} = $library->branchname
344 contractname author title publishercode collectiontitle notes
345 deliveryplace billingplace
347 # Double the quotes to not be interpreted as a field end
348 $row->{$_} =~ s/"/""/g if $row->{$_};
354 if(defined $a->{publishercode
} and defined $b->{publishercode
}) {
355 $a->{publishercode
} cmp $b->{publishercode
};
359 $template->param(rows
=> \
@rows);
361 return $template->output;
366 =head3 GetBasketGroupAsCSV
368 &GetBasketGroupAsCSV($basketgroupid);
370 Export a basket group as CSV
372 $cgi parameter is needed for column name translation
376 sub GetBasketGroupAsCSV
{
377 my ($basketgroupid, $cgi) = @_;
378 my $baskets = GetBasketsByBasketgroup
($basketgroupid);
380 my $template = C4
::Templates
::gettemplate
('acqui/csv/basketgroup.tt', 'intranet', $cgi);
383 for my $basket (@
$baskets) {
384 my @orders = GetOrders
( $basket->{basketno
} );
385 my $contract = GetContract
({
386 contractnumber
=> $basket->{contractnumber
}
388 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $basket->{booksellerid
} );
389 my $basketgroup = GetBasketgroup
( $$basket{basketgroupid
} );
391 foreach my $order (@orders) {
392 my $biblio = Koha
::Biblios
->find( $order->{biblionumber
} );
393 my $biblioitem = $biblio->biblioitem;
395 clientnumber
=> $bookseller->accountnumber,
396 basketname
=> $basket->{basketname
},
397 ordernumber
=> $order->{ordernumber
},
398 author
=> $biblio->author,
399 title
=> $biblio->title,
400 publishercode
=> $biblioitem->publishercode,
401 publicationyear
=> $biblioitem->publicationyear,
402 collectiontitle
=> $biblioitem->collectiontitle,
403 isbn
=> $order->{isbn
},
404 quantity
=> $order->{quantity
},
405 rrp_tax_included
=> $order->{rrp_tax_included
},
406 rrp_tax_excluded
=> $order->{rrp_tax_excluded
},
407 discount
=> $bookseller->discount,
408 ecost_tax_included
=> $order->{ecost_tax_included
},
409 ecost_tax_excluded
=> $order->{ecost_tax_excluded
},
410 notes
=> $order->{order_vendornote
},
411 entrydate
=> $order->{entrydate
},
412 booksellername
=> $bookseller->name,
413 bookselleraddress
=> $bookseller->address1,
414 booksellerpostal
=> $bookseller->postal,
415 contractnumber
=> $contract->{contractnumber
},
416 contractname
=> $contract->{contractname
},
419 basketgroupdeliveryplace
=> $basketgroup->{deliveryplace
},
420 basketgroupbillingplace
=> $basketgroup->{billingplace
},
421 basketdeliveryplace
=> $basket->{deliveryplace
},
422 basketbillingplace
=> $basket->{billingplace
},
424 for my $place (qw( basketgroupdeliveryplace basketgroupbillingplace basketdeliveryplace basketbillingplace )) {
425 if ( my $library = Koha
::Libraries
->find( $temp->{$place} ) ) {
426 $row->{$place} = $library->branchname;
430 basketname author title publishercode collectiontitle notes
431 booksellername bookselleraddress booksellerpostal contractname
432 basketgroupdeliveryplace basketgroupbillingplace
433 basketdeliveryplace basketbillingplace
435 # Double the quotes to not be interpreted as a field end
436 $row->{$_} =~ s/"/""/g if $row->{$_};
441 $template->param(rows
=> \
@rows);
443 return $template->output;
447 =head3 CloseBasketgroup
449 &CloseBasketgroup($basketgroupno);
455 sub CloseBasketgroup
{
456 my ($basketgroupno) = @_;
457 my $dbh = C4
::Context
->dbh;
458 my $sth = $dbh->prepare("
459 UPDATE aqbasketgroups
463 $sth->execute($basketgroupno);
466 #------------------------------------------------------------#
468 =head3 ReOpenBaskergroup($basketgroupno)
470 &ReOpenBaskergroup($basketgroupno);
476 sub ReOpenBasketgroup
{
477 my ($basketgroupno) = @_;
478 my $dbh = C4
::Context
->dbh;
479 my $sth = $dbh->prepare("
480 UPDATE aqbasketgroups
484 $sth->execute($basketgroupno);
487 #------------------------------------------------------------#
492 &DelBasket($basketno);
494 Deletes the basket that has basketno field $basketno in the aqbasket table.
498 =item C<$basketno> is the primary key of the basket in the aqbasket table.
505 my ( $basketno ) = @_;
506 my $query = "DELETE FROM aqbasket WHERE basketno=?";
507 my $dbh = C4
::Context
->dbh;
508 my $sth = $dbh->prepare($query);
509 $sth->execute($basketno);
513 #------------------------------------------------------------#
517 &ModBasket($basketinfo);
519 Modifies a basket, using a hashref $basketinfo for the relevant information, only $basketinfo->{'basketno'} is required.
523 =item C<$basketno> is the primary key of the basket in the aqbasket table.
530 my $basketinfo = shift;
531 my $query = "UPDATE aqbasket SET ";
533 foreach my $key (keys %$basketinfo){
534 if ($key ne 'basketno'){
535 $query .= "$key=?, ";
536 push(@params, $basketinfo->{$key} || undef );
539 # get rid of the "," at the end of $query
540 if (substr($query, length($query)-2) eq ', '){
545 $query .= "WHERE basketno=?";
546 push(@params, $basketinfo->{'basketno'});
547 my $dbh = C4
::Context
->dbh;
548 my $sth = $dbh->prepare($query);
549 $sth->execute(@params);
554 #------------------------------------------------------------#
556 =head3 ModBasketHeader
558 &ModBasketHeader($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid);
560 Modifies a basket's header.
564 =item C<$basketno> is the "basketno" field in the "aqbasket" table;
566 =item C<$basketname> is the "basketname" field in the "aqbasket" table;
568 =item C<$note> is the "note" field in the "aqbasket" table;
570 =item C<$booksellernote> is the "booksellernote" field in the "aqbasket" table;
572 =item C<$contractnumber> is the "contractnumber" (foreign) key in the "aqbasket" table.
574 =item C<$booksellerid> is the id (foreign) key in the "aqbooksellers" table for the vendor.
576 =item C<$deliveryplace> is the "deliveryplace" field in the aqbasket table.
578 =item C<$billingplace> is the "billingplace" field in the aqbasket table.
580 =item C<$is_standing> is the "is_standing" field in the aqbasket table.
582 =item C<$create_items> should be set to 'ordering', 'receiving' or 'cataloguing' (or undef, in which
583 case the AcqCreateItem syspref takes precedence).
589 sub ModBasketHeader
{
590 my ($basketno, $basketname, $note, $booksellernote, $contractnumber, $booksellerid, $deliveryplace, $billingplace, $is_standing, $create_items) = @_;
595 SET basketname
=?
, note
=?
, booksellernote
=?
, booksellerid
=?
, deliveryplace
=?
, billingplace
=?
, is_standing
=?
, create_items
=?
599 my $dbh = C4
::Context
->dbh;
600 my $sth = $dbh->prepare($query);
601 $sth->execute($basketname, $note, $booksellernote, $booksellerid, $deliveryplace, $billingplace, $is_standing, $create_items || undef, $basketno);
603 if ( $contractnumber ) {
604 my $query2 ="UPDATE aqbasket SET contractnumber=? WHERE basketno=?";
605 my $sth2 = $dbh->prepare($query2);
606 $sth2->execute($contractnumber,$basketno);
611 #------------------------------------------------------------#
613 =head3 GetBasketsByBookseller
615 @results = &GetBasketsByBookseller($booksellerid, $extra);
617 Returns a list of hashes of all the baskets that belong to bookseller 'booksellerid'.
621 =item C<$booksellerid> is the 'id' field of the bookseller in the aqbooksellers table
623 =item C<$extra> is the extra sql parameters, can be
625 $extra->{groupby}: group baskets by column
626 ex. $extra->{groupby} = aqbasket.basketgroupid
627 $extra->{orderby}: order baskets by column
628 $extra->{limit}: limit number of results (can be helpful for pagination)
634 sub GetBasketsByBookseller
{
635 my ($booksellerid, $extra) = @_;
636 my $query = "SELECT * FROM aqbasket WHERE booksellerid=?";
638 if ($extra->{groupby
}) {
639 $query .= " GROUP by $extra->{groupby}";
641 if ($extra->{orderby
}){
642 $query .= " ORDER by $extra->{orderby}";
644 if ($extra->{limit
}){
645 $query .= " LIMIT $extra->{limit}";
648 my $dbh = C4
::Context
->dbh;
649 my $sth = $dbh->prepare($query);
650 $sth->execute($booksellerid);
651 return $sth->fetchall_arrayref({});
654 =head3 GetBasketsInfosByBookseller
656 my $baskets = GetBasketsInfosByBookseller($supplierid, $allbaskets);
658 The optional second parameter allbaskets is a boolean allowing you to
659 select all baskets from the supplier; by default only active baskets (open or
660 closed but still something to receive) are returned.
662 Returns in a arrayref of hashref all about booksellers baskets, plus:
663 total_biblios: Number of distinct biblios in basket
664 total_items: Number of items in basket
665 expected_items: Number of non-received items in basket
669 sub GetBasketsInfosByBookseller
{
670 my ($supplierid, $allbaskets) = @_;
672 return unless $supplierid;
674 my $dbh = C4
::Context
->dbh;
676 SELECT aqbasket.basketno, aqbasket.basketname, aqbasket.note, aqbasket.booksellernote, aqbasket.contractnumber, aqbasket.creationdate, aqbasket.closedate, aqbasket.booksellerid, aqbasket.authorisedby, aqbasket.booksellerinvoicenumber, aqbasket.basketgroupid, aqbasket.deliveryplace, aqbasket.billingplace, aqbasket.branch, aqbasket.is_standing, aqbasket.create_items,
677 SUM(aqorders.quantity) AS total_items,
679 IF ( aqorders.orderstatus = 'cancelled', aqorders.quantity, 0 )
680 ) AS total_items_cancelled,
681 COUNT(DISTINCT aqorders.biblionumber) AS total_biblios,
683 IF(aqorders.datereceived IS NULL
684 AND aqorders.datecancellationprinted IS NULL
688 SUM( aqorders.uncertainprice ) AS uncertainprices
690 LEFT JOIN aqorders ON aqorders.basketno = aqbasket.basketno
691 WHERE booksellerid = ?};
693 $query.=" GROUP BY aqbasket.basketno, aqbasket.basketname, aqbasket.note, aqbasket.booksellernote, aqbasket.contractnumber, aqbasket.creationdate, aqbasket.closedate, aqbasket.booksellerid, aqbasket.authorisedby, aqbasket.booksellerinvoicenumber, aqbasket.basketgroupid, aqbasket.deliveryplace, aqbasket.billingplace, aqbasket.branch, aqbasket.is_standing, aqbasket.create_items";
695 unless ( $allbaskets ) {
696 # Don't show the basket if it's NOT CLOSED or is FULLY RECEIVED
697 $query.=" HAVING (closedate IS NULL OR (
699 IF(aqorders.datereceived IS NULL
700 AND aqorders.datecancellationprinted IS NULL
706 my $sth = $dbh->prepare($query);
707 $sth->execute($supplierid);
708 my $baskets = $sth->fetchall_arrayref({});
710 # Retrieve the number of biblios cancelled
711 my $cancelled_biblios = $dbh->selectall_hashref( q
|
712 SELECT COUNT
(DISTINCT
(biblionumber
)) AS total_biblios_cancelled
, aqbasket
.basketno
714 LEFT JOIN aqorders ON aqorders
.basketno
= aqbasket
.basketno
715 WHERE booksellerid
= ?
716 AND aqorders
.orderstatus
= 'cancelled'
717 GROUP BY aqbasket
.basketno
718 |, 'basketno', {}, $supplierid );
720 $_->{total_biblios_cancelled
} = $cancelled_biblios->{$_->{basketno
}}{total_biblios_cancelled
} || 0
726 =head3 GetBasketUsers
728 $basketusers_ids = &GetBasketUsers($basketno);
730 Returns a list of all borrowernumbers that are in basket users list
735 my $basketno = shift;
737 return unless $basketno;
740 SELECT borrowernumber
744 my $dbh = C4
::Context
->dbh;
745 my $sth = $dbh->prepare($query);
746 $sth->execute($basketno);
747 my $results = $sth->fetchall_arrayref( {} );
750 foreach (@
$results) {
751 push @borrowernumbers, $_->{'borrowernumber'};
754 return @borrowernumbers;
757 =head3 ModBasketUsers
759 my @basketusers_ids = (1, 2, 3);
760 &ModBasketUsers($basketno, @basketusers_ids);
762 Delete all users from basket users list, and add users in C<@basketusers_ids>
768 my ($basketno, @basketusers_ids) = @_;
770 return unless $basketno;
772 my $dbh = C4
::Context
->dbh;
774 DELETE FROM aqbasketusers
777 my $sth = $dbh->prepare($query);
778 $sth->execute($basketno);
781 INSERT INTO aqbasketusers
(basketno
, borrowernumber
)
784 $sth = $dbh->prepare($query);
785 foreach my $basketuser_id (@basketusers_ids) {
786 $sth->execute($basketno, $basketuser_id);
791 =head3 CanUserManageBasket
793 my $bool = CanUserManageBasket($borrower, $basket[, $userflags]);
794 my $bool = CanUserManageBasket($borrowernumber, $basketno[, $userflags]);
796 Check if a borrower can manage a basket, according to system preference
797 AcqViewBaskets, user permissions and basket properties (creator, users list,
800 First parameter can be either a borrowernumber or a hashref as returned by
801 Koha::Patron->unblessed
803 Second parameter can be either a basketno or a hashref as returned by
804 C4::Acquisition::GetBasket.
806 The third parameter is optional. If given, it should be a hashref as returned
807 by C4::Auth::getuserflags. If not, getuserflags is called.
809 If user is authorised to manage basket, returns 1.
814 sub CanUserManageBasket
{
815 my ($borrower, $basket, $userflags) = @_;
817 if (!ref $borrower) {
818 # FIXME This needs to be replaced
819 # We should not accept both scalar and array
820 # Tests need to be updated
821 $borrower = Koha
::Patrons
->find( $borrower )->unblessed;
824 $basket = GetBasket
($basket);
827 return 0 unless ($basket and $borrower);
829 my $borrowernumber = $borrower->{borrowernumber
};
830 my $basketno = $basket->{basketno
};
832 my $AcqViewBaskets = C4
::Context
->preference('AcqViewBaskets');
834 if (!defined $userflags) {
835 my $dbh = C4
::Context
->dbh;
836 my $sth = $dbh->prepare("SELECT flags FROM borrowers WHERE borrowernumber = ?");
837 $sth->execute($borrowernumber);
838 my ($flags) = $sth->fetchrow_array;
841 $userflags = C4
::Auth
::getuserflags
($flags, $borrower->{userid
}, $dbh);
844 unless ($userflags->{superlibrarian
}
845 || (ref $userflags->{acquisition
} && $userflags->{acquisition
}->{order_manage_all
})
846 || (!ref $userflags->{acquisition
} && $userflags->{acquisition
}))
848 if (not exists $userflags->{acquisition
}) {
852 if ( (ref $userflags->{acquisition
} && !$userflags->{acquisition
}->{order_manage
})
853 || (!ref $userflags->{acquisition
} && !$userflags->{acquisition
}) ) {
857 if ($AcqViewBaskets eq 'user'
858 && $basket->{authorisedby
} != $borrowernumber
859 && ! grep { $borrowernumber eq $_ } GetBasketUsers
($basketno)) {
863 if ($AcqViewBaskets eq 'branch' && defined $basket->{branch
}
864 && $basket->{branch
} ne $borrower->{branchcode
}) {
872 #------------------------------------------------------------#
874 =head3 GetBasketsByBasketgroup
876 $baskets = &GetBasketsByBasketgroup($basketgroupid);
878 Returns a reference to all baskets that belong to basketgroup $basketgroupid.
882 sub GetBasketsByBasketgroup
{
883 my $basketgroupid = shift;
885 SELECT
*, aqbasket
.booksellerid as booksellerid
887 LEFT JOIN aqcontract USING
(contractnumber
) WHERE basketgroupid
=?
889 my $dbh = C4
::Context
->dbh;
890 my $sth = $dbh->prepare($query);
891 $sth->execute($basketgroupid);
892 return $sth->fetchall_arrayref({});
895 #------------------------------------------------------------#
897 =head3 NewBasketgroup
899 $basketgroupid = NewBasketgroup(\%hashref);
901 Adds a basketgroup to the aqbasketgroups table, and add the initial baskets to it.
903 $hashref->{'booksellerid'} is the 'id' field of the bookseller in the aqbooksellers table,
905 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
907 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
909 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
911 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
913 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
915 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
917 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
922 my $basketgroupinfo = shift;
923 die "booksellerid is required to create a basketgroup" unless $basketgroupinfo->{'booksellerid'};
924 my $query = "INSERT INTO aqbasketgroups (";
926 foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
927 if ( defined $basketgroupinfo->{$field} ) {
928 $query .= "$field, ";
929 push(@params, $basketgroupinfo->{$field});
932 $query .= "booksellerid) VALUES (";
937 push(@params, $basketgroupinfo->{'booksellerid'});
938 my $dbh = C4
::Context
->dbh;
939 my $sth = $dbh->prepare($query);
940 $sth->execute(@params);
941 my $basketgroupid = $dbh->{'mysql_insertid'};
942 if( $basketgroupinfo->{'basketlist'} ) {
943 foreach my $basketno (@
{$basketgroupinfo->{'basketlist'}}) {
944 my $query2 = "UPDATE aqbasket SET basketgroupid=? WHERE basketno=?";
945 my $sth2 = $dbh->prepare($query2);
946 $sth2->execute($basketgroupid, $basketno);
949 return $basketgroupid;
952 #------------------------------------------------------------#
954 =head3 ModBasketgroup
956 ModBasketgroup(\%hashref);
958 Modifies a basketgroup in the aqbasketgroups table, and add the baskets to it.
960 $hashref->{'id'} is the 'id' field of the basketgroup in the aqbasketgroup table, this parameter is mandatory,
962 $hashref->{'name'} is the 'name' field of the basketgroup in the aqbasketgroups table,
964 $hashref->{'basketlist'} is a list reference of the 'id's of the baskets that belong to this group,
966 $hashref->{'billingplace'} is the 'billingplace' field of the basketgroup in the aqbasketgroups table,
968 $hashref->{'deliveryplace'} is the 'deliveryplace' field of the basketgroup in the aqbasketgroups table,
970 $hashref->{'freedeliveryplace'} is the 'freedeliveryplace' field of the basketgroup in the aqbasketgroups table,
972 $hashref->{'deliverycomment'} is the 'deliverycomment' field of the basketgroup in the aqbasketgroups table,
974 $hashref->{'closed'} is the 'closed' field of the aqbasketgroups table, it is false if 0, true otherwise.
979 my $basketgroupinfo = shift;
980 die "basketgroup id is required to edit a basketgroup" unless $basketgroupinfo->{'id'};
981 my $dbh = C4
::Context
->dbh;
982 my $query = "UPDATE aqbasketgroups SET ";
984 foreach my $field (qw(name billingplace deliveryplace freedeliveryplace deliverycomment closed)) {
985 if ( defined $basketgroupinfo->{$field} ) {
986 $query .= "$field=?, ";
987 push(@params, $basketgroupinfo->{$field});
992 $query .= " WHERE id=?";
993 push(@params, $basketgroupinfo->{'id'});
994 my $sth = $dbh->prepare($query);
995 $sth->execute(@params);
997 $sth = $dbh->prepare('UPDATE aqbasket SET basketgroupid = NULL WHERE basketgroupid = ?');
998 $sth->execute($basketgroupinfo->{'id'});
1000 if($basketgroupinfo->{'basketlist'} && @
{$basketgroupinfo->{'basketlist'}}){
1001 $sth = $dbh->prepare("UPDATE aqbasket SET basketgroupid=? WHERE basketno=?");
1002 foreach my $basketno (@
{$basketgroupinfo->{'basketlist'}}) {
1003 $sth->execute($basketgroupinfo->{'id'}, $basketno);
1009 #------------------------------------------------------------#
1011 =head3 DelBasketgroup
1013 DelBasketgroup($basketgroupid);
1015 Deletes a basketgroup in the aqbasketgroups table, and removes the reference to it from the baskets,
1019 =item C<$basketgroupid> is the 'id' field of the basket in the aqbasketgroup table
1025 sub DelBasketgroup
{
1026 my $basketgroupid = shift;
1027 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
1028 my $query = "DELETE FROM aqbasketgroups WHERE id=?";
1029 my $dbh = C4
::Context
->dbh;
1030 my $sth = $dbh->prepare($query);
1031 $sth->execute($basketgroupid);
1035 #------------------------------------------------------------#
1038 =head2 FUNCTIONS ABOUT ORDERS
1040 =head3 GetBasketgroup
1042 $basketgroup = &GetBasketgroup($basketgroupid);
1044 Returns a reference to the hash containing all information about the basketgroup.
1048 sub GetBasketgroup
{
1049 my $basketgroupid = shift;
1050 die "basketgroup id is required to edit a basketgroup" unless $basketgroupid;
1051 my $dbh = C4
::Context
->dbh;
1052 my $result_set = $dbh->selectall_arrayref(
1053 'SELECT * FROM aqbasketgroups WHERE id=?',
1057 return $result_set->[0]; # id is unique
1060 #------------------------------------------------------------#
1062 =head3 GetBasketgroups
1064 $basketgroups = &GetBasketgroups($booksellerid);
1066 Returns a reference to the array of all the basketgroups of bookseller $booksellerid.
1070 sub GetBasketgroups
{
1071 my $booksellerid = shift;
1072 die 'bookseller id is required to edit a basketgroup' unless $booksellerid;
1073 my $query = 'SELECT * FROM aqbasketgroups WHERE booksellerid=? ORDER BY id DESC';
1074 my $dbh = C4
::Context
->dbh;
1075 my $sth = $dbh->prepare($query);
1076 $sth->execute($booksellerid);
1077 return $sth->fetchall_arrayref({});
1080 #------------------------------------------------------------#
1082 =head2 FUNCTIONS ABOUT ORDERS
1086 @orders = &GetOrders( $basketno, { orderby => 'biblio.title', cancelled => 0|1 } );
1088 Looks up the pending (non-cancelled) orders with the given basket
1091 If cancelled is set, only cancelled orders will be returned.
1096 my ( $basketno, $params ) = @_;
1098 return () unless $basketno;
1100 my $orderby = $params->{orderby
};
1101 my $cancelled = $params->{cancelled
} || 0;
1103 my $dbh = C4
::Context
->dbh;
1105 SELECT biblio
.*,biblioitems
.*,
1109 $query .= $cancelled
1111 aqorders_transfers
.ordernumber_to AS transferred_to
,
1112 aqorders_transfers
.timestamp AS transferred_to_timestamp
1115 aqorders_transfers
.ordernumber_from AS transferred_from
,
1116 aqorders_transfers
.timestamp AS transferred_from_timestamp
1120 LEFT JOIN aqbudgets ON aqbudgets
.budget_id
= aqorders
.budget_id
1121 LEFT JOIN biblio ON biblio
.biblionumber
= aqorders
.biblionumber
1122 LEFT JOIN biblioitems ON biblioitems
.biblionumber
=biblio
.biblionumber
1124 $query .= $cancelled
1126 LEFT JOIN aqorders_transfers ON aqorders_transfers
.ordernumber_from
= aqorders
.ordernumber
1129 LEFT JOIN aqorders_transfers ON aqorders_transfers
.ordernumber_to
= aqorders
.ordernumber
1137 $orderby ||= q
|biblioitems
.publishercode
, biblio
.title
|;
1139 AND datecancellationprinted IS NOT NULL
1144 q
|aqorders
.datecancellationprinted desc
, aqorders
.timestamp desc
|;
1146 AND datecancellationprinted IS NULL
1150 $query .= " ORDER BY $orderby";
1152 $dbh->selectall_arrayref( $query, { Slice
=> {} }, $basketno );
1157 #------------------------------------------------------------#
1159 =head3 GetOrdersByBiblionumber
1161 @orders = &GetOrdersByBiblionumber($biblionumber);
1163 Looks up the orders with linked to a specific $biblionumber, including
1164 cancelled orders and received orders.
1167 C<@orders> is an array of references-to-hash, whose keys are the
1168 fields from the aqorders, biblio, and biblioitems tables in the Koha database.
1172 sub GetOrdersByBiblionumber
{
1173 my $biblionumber = shift;
1174 return unless $biblionumber;
1175 my $dbh = C4
::Context
->dbh;
1177 SELECT biblio.*,biblioitems.*,
1181 LEFT JOIN aqbudgets ON aqbudgets.budget_id = aqorders.budget_id
1182 LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
1183 LEFT JOIN biblioitems ON biblioitems.biblionumber =biblio.biblionumber
1184 WHERE aqorders.biblionumber=?
1187 $dbh->selectall_arrayref( $query, { Slice
=> {} }, $biblionumber );
1188 return @
{$result_set};
1192 #------------------------------------------------------------#
1196 $order = &GetOrder($ordernumber);
1198 Looks up an order by order number.
1200 Returns a reference-to-hash describing the order. The keys of
1201 C<$order> are fields from the biblio, biblioitems, aqorders tables of the Koha database.
1206 my ($ordernumber) = @_;
1207 return unless $ordernumber;
1209 my $dbh = C4
::Context
->dbh;
1210 my $query = qq{SELECT
1214 aqbasket
.basketname
,
1215 borrowers
.branchcode
,
1216 biblioitems
.publicationyear
,
1217 biblio
.copyrightdate
,
1218 biblioitems
.editionstatement
,
1222 biblioitems
.publishercode
,
1223 aqorders
.rrp AS unitpricesupplier
,
1224 aqorders
.ecost AS unitpricelib
,
1225 aqorders
.claims_count AS claims_count
,
1226 aqorders
.claimed_date AS claimed_date
,
1227 aqbudgets
.budget_name AS budget
,
1228 aqbooksellers
.name AS supplier
,
1229 aqbooksellers
.id AS supplierid
,
1230 biblioitems
.publishercode AS publisher
,
1231 ADDDATE
(aqbasket
.closedate
, INTERVAL aqbooksellers
.deliverytime DAY
) AS estimateddeliverydate
,
1232 DATE
(aqbasket
.closedate
) AS orderdate
,
1233 aqorders
.quantity
- COALESCE
(aqorders
.quantityreceived
,0) AS quantity_to_receive
,
1234 (aqorders
.quantity
- COALESCE
(aqorders
.quantityreceived
,0)) * aqorders
.rrp AS subtotal
,
1235 DATEDIFF
(CURDATE
( ),closedate
) AS latesince
1236 FROM aqorders LEFT JOIN biblio ON biblio
.biblionumber
= aqorders
.biblionumber
1237 LEFT JOIN biblioitems ON biblioitems
.biblionumber
= biblio
.biblionumber
1238 LEFT JOIN aqbudgets ON aqorders
.budget_id
= aqbudgets
.budget_id
,
1239 aqbasket LEFT JOIN borrowers ON aqbasket
.authorisedby
= borrowers
.borrowernumber
1240 LEFT JOIN aqbooksellers ON aqbasket
.booksellerid
= aqbooksellers
.id
1241 WHERE aqorders
.basketno
= aqbasket
.basketno
1244 $dbh->selectall_arrayref( $query, { Slice
=> {} }, $ordernumber );
1246 # result_set assumed to contain 1 match
1247 return $result_set->[0];
1250 =head3 GetLastOrderNotReceivedFromSubscriptionid
1252 $order = &GetLastOrderNotReceivedFromSubscriptionid($subscriptionid);
1254 Returns a reference-to-hash describing the last order not received for a subscription.
1258 sub GetLastOrderNotReceivedFromSubscriptionid
{
1259 my ( $subscriptionid ) = @_;
1260 my $dbh = C4
::Context
->dbh;
1262 SELECT
* FROM aqorders
1263 LEFT JOIN subscription
1264 ON
( aqorders
.subscriptionid
= subscription
.subscriptionid
)
1265 WHERE aqorders
.subscriptionid
= ?
1266 AND aqorders
.datereceived IS NULL
1270 $dbh->selectall_arrayref( $query, { Slice
=> {} }, $subscriptionid );
1272 # result_set assumed to contain 1 match
1273 return $result_set->[0];
1276 =head3 GetLastOrderReceivedFromSubscriptionid
1278 $order = &GetLastOrderReceivedFromSubscriptionid($subscriptionid);
1280 Returns a reference-to-hash describing the last order received for a subscription.
1284 sub GetLastOrderReceivedFromSubscriptionid
{
1285 my ( $subscriptionid ) = @_;
1286 my $dbh = C4
::Context
->dbh;
1288 SELECT
* FROM aqorders
1289 LEFT JOIN subscription
1290 ON
( aqorders
.subscriptionid
= subscription
.subscriptionid
)
1291 WHERE aqorders
.subscriptionid
= ?
1292 AND aqorders
.datereceived
=
1294 SELECT MAX
( aqorders
.datereceived
)
1296 LEFT JOIN subscription
1297 ON
( aqorders
.subscriptionid
= subscription
.subscriptionid
)
1298 WHERE aqorders
.subscriptionid
= ?
1299 AND aqorders
.datereceived IS NOT NULL
1301 ORDER BY ordernumber DESC
1305 $dbh->selectall_arrayref( $query, { Slice
=> {} }, $subscriptionid, $subscriptionid );
1307 # result_set assumed to contain 1 match
1308 return $result_set->[0];
1312 #------------------------------------------------------------#
1316 &ModOrder(\%hashref);
1318 Modifies an existing order. Updates the order with order number
1319 $hashref->{'ordernumber'} and biblionumber $hashref->{'biblionumber'}. All
1320 other keys of the hash update the fields with the same name in the aqorders
1321 table of the Koha database.
1326 my $orderinfo = shift;
1328 die "Ordernumber is required" if $orderinfo->{'ordernumber'} eq '';
1330 my $dbh = C4
::Context
->dbh;
1333 # update uncertainprice to an integer, just in case (under FF, checked boxes have the value "ON" by default)
1334 $orderinfo->{uncertainprice
}=1 if $orderinfo->{uncertainprice
};
1336 # delete($orderinfo->{'branchcode'});
1337 # the hash contains a lot of entries not in aqorders, so get the columns ...
1338 my $sth = $dbh->prepare("SELECT * FROM aqorders LIMIT 1;");
1340 my $colnames = $sth->{NAME
};
1341 #FIXME Be careful. If aqorders would have columns with diacritics,
1342 #you should need to decode what you get back from NAME.
1343 #See report 10110 and guided_reports.pl
1344 my $query = "UPDATE aqorders SET ";
1346 foreach my $orderinfokey (grep(!/ordernumber/, keys %$orderinfo)){
1347 # ... and skip hash entries that are not in the aqorders table
1348 # FIXME : probably not the best way to do it (would be better to have a correct hash)
1349 next unless grep(/^$orderinfokey$/, @
$colnames);
1350 $query .= "$orderinfokey=?, ";
1351 push(@params, $orderinfo->{$orderinfokey});
1354 $query .= "timestamp=NOW() WHERE ordernumber=?";
1355 push(@params, $orderinfo->{'ordernumber'} );
1356 $sth = $dbh->prepare($query);
1357 $sth->execute(@params);
1361 #------------------------------------------------------------#
1365 ModItemOrder($itemnumber, $ordernumber);
1367 Modifies the ordernumber of an item in aqorders_items.
1372 my ($itemnumber, $ordernumber) = @_;
1374 return unless ($itemnumber and $ordernumber);
1376 my $dbh = C4
::Context
->dbh;
1378 UPDATE aqorders_items
1380 WHERE itemnumber
= ?
1382 my $sth = $dbh->prepare($query);
1383 return $sth->execute($ordernumber, $itemnumber);
1386 #------------------------------------------------------------#
1388 =head3 ModReceiveOrder
1390 my ( $date_received, $new_ordernumber ) = ModReceiveOrder(
1392 biblionumber => $biblionumber,
1394 quantityreceived => $quantityreceived,
1396 invoice => $invoice,
1397 budget_id => $budget_id,
1398 received_itemnumbers => \@received_itemnumbers,
1399 order_internalnote => $order_internalnote,
1403 Updates an order, to reflect the fact that it was received, at least
1406 If a partial order is received, splits the order into two.
1408 Updates the order with biblionumber C<$biblionumber> and ordernumber
1409 C<$order->{ordernumber}>.
1414 sub ModReceiveOrder
{
1416 my $biblionumber = $params->{biblionumber
};
1417 my $order = { %{ $params->{order
} } }; # Copy the order, we don't want to modify it
1418 my $invoice = $params->{invoice
};
1419 my $quantrec = $params->{quantityreceived
};
1420 my $user = $params->{user
};
1421 my $budget_id = $params->{budget_id
};
1422 my $received_items = $params->{received_items
};
1424 my $dbh = C4
::Context
->dbh;
1425 my $datereceived = ( $invoice and $invoice->{datereceived
} ) ?
$invoice->{datereceived
} : dt_from_string
;
1426 my $suggestionid = GetSuggestionFromBiblionumber
( $biblionumber );
1427 if ($suggestionid) {
1428 ModSuggestion
( {suggestionid
=>$suggestionid,
1429 STATUS
=>'AVAILABLE',
1430 biblionumber
=> $biblionumber}
1434 my $result_set = $dbh->selectrow_arrayref(
1435 q{SELECT aqbasket.is_standing
1437 WHERE basketno=?},{ Slice
=> {} }, $order->{basketno
});
1438 my $is_standing = $result_set->[0]; # we assume we have a unique basket
1440 my $new_ordernumber = $order->{ordernumber
};
1441 if ( $is_standing || $order->{quantity
} > $quantrec ) {
1442 # Split order line in two parts: the first is the original order line
1443 # without received items (the quantity is decreased),
1444 # the second part is a new order line with quantity=quantityrec
1445 # (entirely received)
1449 orderstatus
= 'partial'|;
1450 $query .= q
| WHERE ordernumber
= ?
|;
1451 my $sth = $dbh->prepare($query);
1454 ( $is_standing ?
1 : ($order->{quantity
} - $quantrec) ),
1455 $order->{ordernumber
}
1458 if ( not $order->{subscriptionid
} && defined $order->{order_internalnote
} ) {
1461 SET order_internalnote
= ?
1462 WHERE ordernumber
= ?
|, {},
1463 $order->{order_internalnote
}, $order->{ordernumber
}
1467 # Recalculate tax_value
1471 tax_value_on_ordering
= quantity
* | . get_rounding_sql
(q
|ecost_tax_excluded
|) . q
| * tax_rate_on_ordering
,
1472 tax_value_on_receiving
= quantity
* | . get_rounding_sql
(q
|unitprice_tax_excluded
|) . q
| * tax_rate_on_receiving
1473 WHERE ordernumber
= ?
1474 |, undef, $order->{ordernumber
});
1476 delete $order->{ordernumber
};
1477 $order->{budget_id
} = ( $budget_id || $order->{budget_id
} );
1478 $order->{quantity
} = $quantrec;
1479 $order->{quantityreceived
} = $quantrec;
1480 $order->{ecost_tax_excluded
} //= 0;
1481 $order->{tax_rate_on_ordering
} //= 0;
1482 $order->{unitprice_tax_excluded
} //= 0;
1483 $order->{tax_rate_on_receiving
} //= 0;
1484 $order->{tax_value_on_ordering
} = $order->{quantity
} * get_rounded_price
($order->{ecost_tax_excluded
}) * $order->{tax_rate_on_ordering
};
1485 $order->{tax_value_on_receiving
} = $order->{quantity
} * get_rounded_price
($order->{unitprice_tax_excluded
}) * $order->{tax_rate_on_receiving
};
1486 $order->{datereceived
} = $datereceived;
1487 $order->{invoiceid
} = $invoice->{invoiceid
};
1488 $order->{orderstatus
} = 'complete';
1489 $new_ordernumber = Koha
::Acquisition
::Order
->new($order)->store->ordernumber; # TODO What if the store fails?
1491 if ($received_items) {
1492 foreach my $itemnumber (@
$received_items) {
1493 ModItemOrder
($itemnumber, $new_ordernumber);
1499 SET quantityreceived
= ?
,
1503 orderstatus
= 'complete'
1507 , replacementprice
= ?
1508 | if defined $order->{replacementprice
};
1511 , unitprice
= ?
, unitprice_tax_included
= ?
, unitprice_tax_excluded
= ?
1512 | if defined $order->{unitprice
};
1515 ,tax_value_on_receiving
= ?
1516 | if defined $order->{tax_value_on_receiving
};
1519 ,tax_rate_on_receiving
= ?
1520 | if defined $order->{tax_rate_on_receiving
};
1523 , order_internalnote
= ?
1524 | if defined $order->{order_internalnote
};
1526 $query .= q
| where biblionumber
=?
and ordernumber
=?
|;
1528 my $sth = $dbh->prepare( $query );
1529 my @params = ( $quantrec, $datereceived, $invoice->{invoiceid
}, ( $budget_id ?
$budget_id : $order->{budget_id
} ) );
1531 if ( defined $order->{replacementprice
} ) {
1532 push @params, $order->{replacementprice
};
1535 if ( defined $order->{unitprice
} ) {
1536 push @params, $order->{unitprice
}, $order->{unitprice_tax_included
}, $order->{unitprice_tax_excluded
};
1539 if ( defined $order->{tax_value_on_receiving
} ) {
1540 push @params, $order->{tax_value_on_receiving
};
1543 if ( defined $order->{tax_rate_on_receiving
} ) {
1544 push @params, $order->{tax_rate_on_receiving
};
1547 if ( defined $order->{order_internalnote
} ) {
1548 push @params, $order->{order_internalnote
};
1551 push @params, ( $biblionumber, $order->{ordernumber
} );
1553 $sth->execute( @params );
1555 # All items have been received, sent a notification to users
1556 NotifyOrderUsers
( $order->{ordernumber
} );
1559 return ($datereceived, $new_ordernumber);
1562 =head3 CancelReceipt
1564 my $parent_ordernumber = CancelReceipt($ordernumber);
1566 Cancel an order line receipt and update the parent order line, as if no
1568 If items are created at receipt (AcqCreateItem = receiving) then delete
1574 my $ordernumber = shift;
1576 return unless $ordernumber;
1578 my $dbh = C4
::Context
->dbh;
1580 SELECT datereceived
, parent_ordernumber
, quantity
1582 WHERE ordernumber
= ?
1584 my $sth = $dbh->prepare($query);
1585 $sth->execute($ordernumber);
1586 my $order = $sth->fetchrow_hashref;
1588 warn "CancelReceipt: order $ordernumber does not exist";
1591 unless($order->{'datereceived'}) {
1592 warn "CancelReceipt: order $ordernumber is not received";
1596 my $parent_ordernumber = $order->{'parent_ordernumber'};
1598 my $order_obj = Koha
::Acquisition
::Orders
->find( $ordernumber ); # FIXME rewrite all this subroutine using this object
1599 my @itemnumbers = $order_obj->items->get_column('itemnumber');
1601 if($parent_ordernumber == $ordernumber || not $parent_ordernumber) {
1602 # The order line has no parent, just mark it as not received
1605 SET quantityreceived
= ?
,
1608 orderstatus
= 'ordered'
1609 WHERE ordernumber
= ?
1611 $sth = $dbh->prepare($query);
1612 $sth->execute(0, undef, undef, $ordernumber);
1613 _cancel_items_receipt
( $order_obj );
1615 # The order line has a parent, increase parent quantity and delete
1618 SELECT quantity
, datereceived
1620 WHERE ordernumber
= ?
1622 $sth = $dbh->prepare($query);
1623 $sth->execute($parent_ordernumber);
1624 my $parent_order = $sth->fetchrow_hashref;
1625 unless($parent_order) {
1626 warn "Parent order $parent_ordernumber does not exist.";
1629 if($parent_order->{'datereceived'}) {
1630 warn "CancelReceipt: parent order is received.".
1631 " Can't cancel receipt.";
1637 orderstatus
= 'ordered'
1638 WHERE ordernumber
= ?
1640 $sth = $dbh->prepare($query);
1641 my $rv = $sth->execute(
1642 $order->{'quantity'} + $parent_order->{'quantity'},
1646 warn "Cannot update parent order line, so do not cancel".
1651 # Recalculate tax_value
1655 tax_value_on_ordering
= quantity
* | . get_rounding_sql
(q
|ecost_tax_excluded
|) . q
| * tax_rate_on_ordering
,
1656 tax_value_on_receiving
= quantity
* | . get_rounding_sql
(q
|unitprice_tax_excluded
|) . q
| * tax_rate_on_receiving
1657 WHERE ordernumber
= ?
1658 |, undef, $parent_ordernumber);
1660 _cancel_items_receipt
( $order_obj, $parent_ordernumber );
1663 DELETE FROM aqorders
1664 WHERE ordernumber
= ?
1666 $sth = $dbh->prepare($query);
1667 $sth->execute($ordernumber);
1671 if( $order_obj->basket->effective_create_items eq 'ordering' ) {
1672 my @affects = split q{\|}, C4
::Context
->preference("AcqItemSetSubfieldsWhenReceiptIsCancelled");
1674 for my $in ( @itemnumbers ) {
1675 my $item = Koha
::Items
->find( $in ); # FIXME We do not need that, we already have Koha::Items from $order_obj->items
1676 my $biblio = $item->biblio;
1677 my ( $itemfield ) = GetMarcFromKohaField
( 'items.itemnumber' );
1678 my $item_marc = C4
::Items
::GetMarcItem
( $biblio->biblionumber, $in );
1679 for my $affect ( @affects ) {
1680 my ( $sf, $v ) = split q{=}, $affect, 2;
1681 foreach ( $item_marc->field($itemfield) ) {
1682 $_->update( $sf => $v );
1685 C4
::Items
::ModItemFromMarc
( $item_marc, $biblio->biblionumber, $in );
1690 return $parent_ordernumber;
1693 sub _cancel_items_receipt
{
1694 my ( $order, $parent_ordernumber ) = @_;
1695 $parent_ordernumber ||= $order->ordernumber;
1697 my $items = $order->items;
1698 if ( $order->basket->effective_create_items eq 'receiving' ) {
1699 # Remove items that were created at receipt
1701 DELETE FROM items
, aqorders_items
1702 USING items
, aqorders_items
1703 WHERE items
.itemnumber
= ? AND aqorders_items
.itemnumber
= ?
1705 my $dbh = C4
::Context
->dbh;
1706 my $sth = $dbh->prepare($query);
1707 while ( my $item = $items->next ) {
1708 $sth->execute($item->itemnumber, $item->itemnumber);
1712 while ( my $item = $items->next ) {
1713 ModItemOrder
($item->itemnumber, $parent_ordernumber);
1718 #------------------------------------------------------------#
1722 @results = &SearchOrders({
1723 ordernumber => $ordernumber,
1726 booksellerid => $booksellerid,
1727 basketno => $basketno,
1728 basketname => $basketname,
1729 basketgroupname => $basketgroupname,
1733 biblionumber => $biblionumber,
1734 budget_id => $budget_id
1737 Searches for orders filtered by criteria.
1739 C<$ordernumber> Finds matching orders or transferred orders by ordernumber.
1740 C<$search> Finds orders matching %$search% in title, author, or isbn.
1741 C<$owner> Finds order for the logged in user.
1742 C<$pending> Finds pending orders. Ignores completed and cancelled orders.
1743 C<$ordered> Finds orders to receive only (status 'ordered' or 'partial').
1746 C<@results> is an array of references-to-hash with the keys are fields
1747 from aqorders, biblio, biblioitems and aqbasket tables.
1752 my ( $params ) = @_;
1753 my $ordernumber = $params->{ordernumber
};
1754 my $search = $params->{search
};
1755 my $ean = $params->{ean
};
1756 my $booksellerid = $params->{booksellerid
};
1757 my $basketno = $params->{basketno
};
1758 my $basketname = $params->{basketname
};
1759 my $basketgroupname = $params->{basketgroupname
};
1760 my $owner = $params->{owner
};
1761 my $pending = $params->{pending
};
1762 my $ordered = $params->{ordered
};
1763 my $biblionumber = $params->{biblionumber
};
1764 my $budget_id = $params->{budget_id
};
1766 my $dbh = C4
::Context
->dbh;
1769 SELECT aqbasket.basketno,
1771 borrowers.firstname,
1774 biblioitems.biblioitemnumber,
1775 biblioitems.publishercode,
1776 biblioitems.publicationyear,
1777 aqbasket.authorisedby,
1778 aqbasket.booksellerid,
1780 aqbasket.creationdate,
1781 aqbasket.basketname,
1782 aqbasketgroups.id as basketgroupid,
1783 aqbasketgroups.name as basketgroupname,
1786 LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
1787 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
1788 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
1789 LEFT JOIN biblio ON aqorders.biblionumber=biblio.biblionumber
1790 LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
1793 # If we search on ordernumber, we retrieve the transferred order if a transfer has been done.
1795 LEFT JOIN aqorders_transfers ON aqorders_transfers.ordernumber_to = aqorders.ordernumber
1799 WHERE (datecancellationprinted is NULL)
1802 if ( $pending or $ordered ) {
1805 ( aqbasket.is_standing AND aqorders.orderstatus IN ( "new", "ordered", "partial" ) )
1807 ( quantity > quantityreceived OR quantityreceived is NULL )
1811 $query .= q{ AND aqorders.orderstatus IN ( "ordered", "partial" )};
1819 my $userenv = C4
::Context
->userenv;
1820 if ( C4
::Context
->preference("IndependentBranches") ) {
1821 unless ( C4
::Context
->IsSuperLibrarian() ) {
1824 borrowers.branchcode = ?
1825 OR borrowers.branchcode = ''
1828 push @args, $userenv->{branch
};
1832 if ( $ordernumber ) {
1833 $query .= ' AND ( aqorders.ordernumber = ? OR aqorders_transfers.ordernumber_from = ? ) ';
1834 push @args, ( $ordernumber, $ordernumber );
1836 if ( $biblionumber ) {
1837 $query .= 'AND aqorders.biblionumber = ?';
1838 push @args, $biblionumber;
1841 $query .= ' AND (biblio.title LIKE ? OR biblio.author LIKE ? OR biblioitems.isbn LIKE ?)';
1842 push @args, ("%$search%","%$search%","%$search%");
1845 $query .= ' AND biblioitems.ean = ?';
1848 if ( $booksellerid ) {
1849 $query .= 'AND aqbasket.booksellerid = ?';
1850 push @args, $booksellerid;
1853 $query .= 'AND aqbasket.basketno = ?';
1854 push @args, $basketno;
1857 $query .= 'AND aqbasket.basketname LIKE ?';
1858 push @args, "%$basketname%";
1860 if( $basketgroupname ) {
1861 $query .= ' AND aqbasketgroups.name LIKE ?';
1862 push @args, "%$basketgroupname%";
1866 $query .= ' AND aqbasket.authorisedby=? ';
1867 push @args, $userenv->{'number'};
1871 $query .= ' AND aqorders.budget_id = ?';
1872 push @args, $budget_id;
1875 $query .= ' ORDER BY aqbasket.basketno';
1877 my $sth = $dbh->prepare($query);
1878 $sth->execute(@args);
1879 return $sth->fetchall_arrayref({});
1882 #------------------------------------------------------------#
1886 &DelOrder($biblionumber, $ordernumber);
1888 Cancel the order with the given order and biblio numbers. It does not
1889 delete any entries in the aqorders table, it merely marks them as
1895 my ( $bibnum, $ordernumber, $delete_biblio, $reason ) = @_;
1897 my $dbh = C4
::Context
->dbh;
1900 SET datecancellationprinted=now(), orderstatus='cancelled'
1903 $query .= ", cancellationreason = ? ";
1906 WHERE biblionumber=? AND ordernumber=?
1908 my $sth = $dbh->prepare($query);
1910 $sth->execute($reason, $bibnum, $ordernumber);
1912 $sth->execute( $bibnum, $ordernumber );
1916 my $order = Koha
::Acquisition
::Orders
->find($ordernumber);
1917 my $items = $order->items;
1918 while ( my $item = $items->next ) { # Should be moved to Koha::Acquisition::Order->delete
1919 my $delcheck = C4
::Items
::DelItemCheck
( $bibnum, $item->itemnumber );
1921 if($delcheck != 1) {
1922 $error->{'delitem'} = 1;
1926 if($delete_biblio) {
1927 # We get the number of remaining items
1928 my $biblio = Koha
::Biblios
->find( $bibnum );
1929 my $itemcount = $biblio->items->count;
1931 # If there are no items left,
1932 if ( $itemcount == 0 ) {
1933 # We delete the record
1934 my $delcheck = DelBiblio
($bibnum);
1937 $error->{'delbiblio'} = 1;
1945 =head3 TransferOrder
1947 my $newordernumber = TransferOrder($ordernumber, $basketno);
1949 Transfer an order line to a basket.
1950 Mark $ordernumber as cancelled with an internal note 'Cancelled and transferred
1951 to BOOKSELLER on DATE' and create new order with internal note
1952 'Transferred from BOOKSELLER on DATE'.
1953 Move all attached items to the new order.
1954 Received orders cannot be transferred.
1955 Return the ordernumber of created order.
1960 my ($ordernumber, $basketno) = @_;
1962 return unless ($ordernumber and $basketno);
1964 my $order = Koha
::Acquisition
::Orders
->find( $ordernumber ) or return;
1965 return if $order->datereceived;
1967 $order = $order->unblessed;
1969 my $basket = GetBasket
($basketno);
1970 return unless $basket;
1972 my $dbh = C4
::Context
->dbh;
1973 my ($query, $sth, $rv);
1977 SET datecancellationprinted = CAST(NOW() AS date), orderstatus = ?
1978 WHERE ordernumber = ?
1980 $sth = $dbh->prepare($query);
1981 $rv = $sth->execute('cancelled', $ordernumber);
1983 delete $order->{'ordernumber'};
1984 delete $order->{parent_ordernumber
};
1985 $order->{'basketno'} = $basketno;
1987 my $newordernumber = Koha
::Acquisition
::Order
->new($order)->store->ordernumber;
1990 UPDATE aqorders_items
1992 WHERE ordernumber = ?
1994 $sth = $dbh->prepare($query);
1995 $sth->execute($newordernumber, $ordernumber);
1998 INSERT INTO aqorders_transfers (ordernumber_from, ordernumber_to)
2001 $sth = $dbh->prepare($query);
2002 $sth->execute($ordernumber, $newordernumber);
2004 return $newordernumber;
2007 =head3 get_rounding_sql
2009 $rounding_sql = get_rounding_sql($column_name);
2011 returns the correct SQL routine based on OrderPriceRounding system preference.
2015 sub get_rounding_sql
{
2016 my ( $round_string ) = @_;
2017 my $rounding_pref = C4
::Context
->preference('OrderPriceRounding') // q{};
2018 if ( $rounding_pref eq "nearest_cent" ) {
2019 return "CAST($round_string*100 AS SIGNED)/100";
2021 return $round_string;
2024 =head3 get_rounded_price
2026 $rounded_price = get_rounded_price( $price );
2028 returns a price rounded as specified in OrderPriceRounding system preference.
2032 sub get_rounded_price
{
2034 my $rounding_pref = C4
::Context
->preference('OrderPriceRounding') // q{};
2035 if( $rounding_pref eq 'nearest_cent' ) {
2036 return Koha
::Number
::Price
->new( $price )->round();
2042 =head2 FUNCTIONS ABOUT PARCELS
2046 $results = &GetParcels($bookseller, $order, $code, $datefrom, $dateto);
2048 get a lists of parcels.
2055 is the bookseller this function has to get parcels.
2058 To know on what criteria the results list has to be ordered.
2061 is the booksellerinvoicenumber.
2063 =item $datefrom & $dateto
2064 to know on what date this function has to filter its search.
2069 a pointer on a hash list containing parcel informations as such :
2075 =item Last operation
2077 =item Number of biblio
2079 =item Number of items
2086 my ($bookseller,$order, $code, $datefrom, $dateto) = @_;
2087 my $dbh = C4
::Context
->dbh;
2088 my @query_params = ();
2090 SELECT aqinvoices.invoicenumber,
2091 datereceived,purchaseordernumber,
2092 count(DISTINCT biblionumber) AS biblio,
2093 sum(quantity) AS itemsexpected,
2094 sum(quantityreceived) AS itemsreceived
2095 FROM aqorders LEFT JOIN aqbasket ON aqbasket.basketno = aqorders.basketno
2096 LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
2097 WHERE aqbasket.booksellerid = ? and datereceived IS NOT NULL
2099 push @query_params, $bookseller;
2101 if ( defined $code ) {
2102 $strsth .= ' and aqinvoices.invoicenumber like ? ';
2103 # add a % to the end of the code to allow stemming.
2104 push @query_params, "$code%";
2107 if ( defined $datefrom ) {
2108 $strsth .= ' and datereceived >= ? ';
2109 push @query_params, $datefrom;
2112 if ( defined $dateto ) {
2113 $strsth .= 'and datereceived <= ? ';
2114 push @query_params, $dateto;
2117 $strsth .= "group by aqinvoices.invoicenumber,datereceived ";
2119 # can't use a placeholder to place this column name.
2120 # but, we could probably be checking to make sure it is a column that will be fetched.
2121 $strsth .= "order by $order " if ($order);
2123 my $sth = $dbh->prepare($strsth);
2125 $sth->execute( @query_params );
2126 my $results = $sth->fetchall_arrayref({});
2130 #------------------------------------------------------------#
2132 =head3 GetLateOrders
2134 @results = &GetLateOrders;
2136 Searches for bookseller with late orders.
2139 the table of supplier with late issues. This table is full of hashref.
2145 my $supplierid = shift;
2147 my $estimateddeliverydatefrom = shift;
2148 my $estimateddeliverydateto = shift;
2150 my $dbh = C4
::Context
->dbh;
2152 #BEWARE, order of parenthesis and LEFT JOIN is important for speed
2153 my $dbdriver = C4
::Context
->config("db_scheme") || "mysql";
2155 my @query_params = ();
2157 SELECT aqbasket.basketno,
2158 aqorders.ordernumber,
2159 DATE(aqbasket.closedate) AS orderdate,
2160 aqbasket.basketname AS basketname,
2161 aqbasket.basketgroupid AS basketgroupid,
2162 aqbasketgroups.name AS basketgroupname,
2163 aqorders.rrp AS unitpricesupplier,
2164 aqorders.ecost AS unitpricelib,
2165 aqorders.claims_count AS claims_count,
2166 aqorders.claimed_date AS claimed_date,
2167 aqbudgets.budget_name AS budget,
2168 borrowers.branchcode AS branch,
2169 aqbooksellers.name AS supplier,
2170 aqbooksellers.id AS supplierid,
2171 biblio.author, biblio.title,
2172 biblioitems.publishercode AS publisher,
2173 biblioitems.publicationyear,
2174 ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) AS estimateddeliverydate,
2178 aqorders LEFT JOIN biblio ON biblio.biblionumber = aqorders.biblionumber
2179 LEFT JOIN biblioitems ON biblioitems.biblionumber = biblio.biblionumber
2180 LEFT JOIN aqbudgets ON aqorders.budget_id = aqbudgets.budget_id,
2181 aqbasket LEFT JOIN borrowers ON aqbasket.authorisedby = borrowers.borrowernumber
2182 LEFT JOIN aqbooksellers ON aqbasket.booksellerid = aqbooksellers.id
2183 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
2184 WHERE aqorders.basketno = aqbasket.basketno
2185 AND ( datereceived IS NULL
2186 OR aqorders.quantityreceived < aqorders.quantity
2188 AND aqbasket.closedate IS NOT NULL
2189 AND aqorders.datecancellationprinted IS NULL
2191 if ($dbdriver eq "mysql") {
2193 aqorders.quantity - COALESCE(aqorders.quantityreceived,0) AS quantity,
2194 (aqorders.quantity - COALESCE(aqorders.quantityreceived,0)) * aqorders.rrp AS subtotal,
2195 DATEDIFF(CAST(now() AS date),closedate) AS latesince
2197 if ( defined $delay ) {
2198 $from .= " AND (closedate <= DATE_SUB(CAST(now() AS date),INTERVAL ? DAY)) " ;
2199 push @query_params, $delay;
2201 $from .= " AND aqorders.quantity - COALESCE(aqorders.quantityreceived,0) <> 0";
2203 # FIXME: account for IFNULL as above
2205 aqorders.quantity AS quantity,
2206 aqorders.quantity * aqorders.rrp AS subtotal,
2207 (CAST(now() AS date) - closedate) AS latesince
2209 if ( defined $delay ) {
2210 $from .= " AND (closedate <= (CAST(now() AS date) -(INTERVAL ? DAY)) ";
2211 push @query_params, $delay;
2213 $from .= " AND aqorders.quantity <> 0";
2215 if (defined $supplierid) {
2216 $from .= ' AND aqbasket.booksellerid = ? ';
2217 push @query_params, $supplierid;
2219 if (defined $branch) {
2220 $from .= ' AND borrowers.branchcode LIKE ? ';
2221 push @query_params, $branch;
2224 if ( defined $estimateddeliverydatefrom or defined $estimateddeliverydateto ) {
2225 $from .= ' AND aqbooksellers.deliverytime IS NOT NULL ';
2227 if ( defined $estimateddeliverydatefrom ) {
2228 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) >= ?';
2229 push @query_params, $estimateddeliverydatefrom;
2231 if ( defined $estimateddeliverydateto ) {
2232 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= ?';
2233 push @query_params, $estimateddeliverydateto;
2235 if ( defined $estimateddeliverydatefrom and not defined $estimateddeliverydateto ) {
2236 $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= CAST(now() AS date)';
2238 if (C4
::Context
->preference("IndependentBranches")
2239 && !C4
::Context
->IsSuperLibrarian() ) {
2240 $from .= ' AND borrowers.branchcode LIKE ? ';
2241 push @query_params, C4
::Context
->userenv->{branch
};
2243 $from .= " AND orderstatus <> 'cancelled' ";
2244 my $query = "$select $from \nORDER BY latesince, basketno, borrowers.branchcode, supplier";
2245 $debug and print STDERR
"GetLateOrders query: $query\nGetLateOrders args: " . join(" ",@query_params);
2246 my $sth = $dbh->prepare($query);
2247 $sth->execute(@query_params);
2249 while (my $data = $sth->fetchrow_hashref) {
2250 push @results, $data;
2255 #------------------------------------------------------------#
2259 \@order_loop = GetHistory( %params );
2261 Retreives some acquisition history information
2271 basket - search both basket name and number
2272 booksellerinvoicenumber
2275 orderstatus (note that orderstatus '' will retrieve orders
2276 of any status except cancelled)
2279 get_canceled_order (if set to a true value, cancelled orders will
2283 $order_loop is a list of hashrefs that each look like this:
2285 'author' => 'Twain, Mark',
2287 'biblionumber' => '215',
2289 'creationdate' => 'MM/DD/YYYY',
2290 'datereceived' => undef,
2293 'invoicenumber' => undef,
2295 'ordernumber' => '1',
2297 'quantityreceived' => undef,
2298 'title' => 'The Adventures of Huckleberry Finn',
2299 'managing_library' => 'CPL'
2305 # don't run the query if there are no parameters (list would be too long for sure !)
2306 croak
"No search params" unless @_;
2308 my $title = $params{title
};
2309 my $author = $params{author
};
2310 my $isbn = $params{isbn
};
2311 my $ean = $params{ean
};
2312 my $name = $params{name
};
2313 my $from_placed_on = $params{from_placed_on
};
2314 my $to_placed_on = $params{to_placed_on
};
2315 my $basket = $params{basket
};
2316 my $booksellerinvoicenumber = $params{booksellerinvoicenumber
};
2317 my $basketgroupname = $params{basketgroupname
};
2318 my $budget = $params{budget
};
2319 my $orderstatus = $params{orderstatus
};
2320 my $biblionumber = $params{biblionumber
};
2321 my $get_canceled_order = $params{get_canceled_order
} || 0;
2322 my $ordernumber = $params{ordernumber
};
2323 my $search_children_too = $params{search_children_too
} || 0;
2324 my $created_by = $params{created_by
} || [];
2325 my $managing_library = $params{managing_library
};
2326 my $ordernumbers = $params{ordernumbers
} || [];
2327 my $additional_fields = $params{additional_fields
} // [];
2331 my $total_qtyreceived = 0;
2332 my $total_price = 0;
2334 #get variation of isbn
2338 if ( C4
::Context
->preference("SearchWithISBNVariations") ){
2339 @isbns = C4
::Koha
::GetVariationsOfISBN
( $isbn );
2340 foreach my $isb (@isbns){
2341 push @isbn_params, '?';
2346 push @isbn_params, '?';
2350 my $dbh = C4
::Context
->dbh;
2353 COALESCE(biblio.title, deletedbiblio.title) AS title,
2354 COALESCE(biblio.author, deletedbiblio.author) AS author,
2355 COALESCE(biblioitems.isbn, deletedbiblioitems.isbn) AS isbn,
2356 COALESCE(biblioitems.ean, deletedbiblioitems.ean) AS ean,
2358 aqbasket.basketname,
2359 aqbasket.basketgroupid,
2360 aqbasket.authorisedby,
2361 concat( borrowers.firstname,' ',borrowers.surname) AS authorisedbyname,
2362 branch as managing_library,
2363 aqbasketgroups.name as groupname,
2365 aqbasket.creationdate,
2366 aqorders.datereceived,
2368 aqorders.quantityreceived,
2370 aqorders.ordernumber,
2372 aqinvoices.invoicenumber,
2373 aqbooksellers.id as id,
2374 aqorders.biblionumber,
2375 aqorders.orderstatus,
2376 aqorders.parent_ordernumber,
2377 aqbudgets.budget_name
2379 $query .= ", aqbudgets.budget_id AS budget" if defined $budget;
2382 LEFT JOIN aqbasket ON aqorders.basketno=aqbasket.basketno
2383 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid=aqbasketgroups.id
2384 LEFT JOIN aqbooksellers ON aqbasket.booksellerid=aqbooksellers.id
2385 LEFT JOIN biblioitems ON biblioitems.biblionumber=aqorders.biblionumber
2386 LEFT JOIN biblio ON biblio.biblionumber=aqorders.biblionumber
2387 LEFT JOIN aqbudgets ON aqorders.budget_id=aqbudgets.budget_id
2388 LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid
2389 LEFT JOIN deletedbiblio ON deletedbiblio.biblionumber=aqorders.biblionumber
2390 LEFT JOIN deletedbiblioitems ON deletedbiblioitems.biblionumber=aqorders.biblionumber
2391 LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber
2394 $query .= " WHERE 1 ";
2396 unless ($get_canceled_order or (defined $orderstatus and $orderstatus eq 'cancelled')) {
2397 $query .= " AND datecancellationprinted IS NULL ";
2400 my @query_params = ();
2402 if ( $biblionumber ) {
2403 $query .= " AND biblio.biblionumber = ?";
2404 push @query_params, $biblionumber;
2408 $query .= " AND biblio.title LIKE ? ";
2409 $title =~ s/\s+/%/g;
2410 push @query_params, "%$title%";
2414 $query .= " AND biblio.author LIKE ? ";
2415 push @query_params, "%$author%";
2419 $query .= " AND ( biblioitems.isbn LIKE " . join (" OR biblioitems.isbn LIKE ", @isbn_params ) . ")";
2420 foreach my $isb (@isbns){
2421 push @query_params, "%$isb%";
2426 $query .= " AND biblioitems.ean = ? ";
2427 push @query_params, "$ean";
2430 $query .= " AND aqbooksellers.name LIKE ? ";
2431 push @query_params, "%$name%";
2435 $query .= " AND aqbudgets.budget_id = ? ";
2436 push @query_params, "$budget";
2439 if ( $from_placed_on ) {
2440 $query .= " AND creationdate >= ? ";
2441 push @query_params, $from_placed_on;
2444 if ( $to_placed_on ) {
2445 $query .= " AND creationdate <= ? ";
2446 push @query_params, $to_placed_on;
2449 if ( defined $orderstatus and $orderstatus ne '') {
2450 $query .= " AND aqorders.orderstatus = ? ";
2451 push @query_params, "$orderstatus";
2455 if ($basket =~ m/^\d+$/) {
2456 $query .= " AND aqorders.basketno = ? ";
2457 push @query_params, $basket;
2459 $query .= " AND aqbasket.basketname LIKE ? ";
2460 push @query_params, "%$basket%";
2464 if ($booksellerinvoicenumber) {
2465 $query .= " AND aqinvoices.invoicenumber LIKE ? ";
2466 push @query_params, "%$booksellerinvoicenumber%";
2469 if ($basketgroupname) {
2470 $query .= " AND aqbasketgroups.name LIKE ? ";
2471 push @query_params, "%$basketgroupname%";
2475 $query .= " AND (aqorders.ordernumber = ? ";
2476 push @query_params, $ordernumber;
2477 if ($search_children_too) {
2478 $query .= " OR aqorders.parent_ordernumber = ? ";
2479 push @query_params, $ordernumber;
2484 if ( @
$created_by ) {
2485 $query .= ' AND aqbasket.authorisedby IN ( ' . join( ',', ('?') x @
$created_by ) . ')';
2486 push @query_params, @
$created_by;
2489 if ( $managing_library ) {
2490 $query .= " AND aqbasket.branch = ? ";
2491 push @query_params, $managing_library;
2494 if ( @
$ordernumbers ) {
2495 $query .= ' AND (aqorders.ordernumber IN ( ' . join (',', ('?') x @
$ordernumbers ) . '))';
2496 push @query_params, @
$ordernumbers;
2498 if ( @
$additional_fields ) {
2499 my @baskets = Koha
::Acquisition
::Baskets
->filter_by_additional_fields($additional_fields);
2501 return [] unless @baskets;
2503 # No parameterization because record IDs come directly from DB
2504 $query .= ' AND aqbasket.basketno IN ( ' . join( ',', map { $_->basketno } @baskets ) . ' )';
2507 if ( C4
::Context
->preference("IndependentBranches") ) {
2508 unless ( C4
::Context
->IsSuperLibrarian() ) {
2509 $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
2510 push @query_params, C4
::Context
->userenv->{branch
};
2513 $query .= " ORDER BY id";
2515 return $dbh->selectall_arrayref( $query, { Slice
=> {} }, @query_params );
2518 =head2 GetRecentAcqui
2520 $results = GetRecentAcqui($days);
2522 C<$results> is a ref to a table which contains hashref
2526 sub GetRecentAcqui
{
2528 my $dbh = C4
::Context
->dbh;
2532 ORDER BY timestamp DESC
2535 my $sth = $dbh->prepare($query);
2537 my $results = $sth->fetchall_arrayref({});
2541 #------------------------------------------------------------#
2545 &AddClaim($ordernumber);
2547 Add a claim for an order
2552 my ($ordernumber) = @_;
2553 my $dbh = C4
::Context
->dbh;
2556 claims_count = claims_count + 1,
2557 claimed_date = CURDATE()
2558 WHERE ordernumber = ?
2560 my $sth = $dbh->prepare($query);
2561 $sth->execute($ordernumber);
2566 my @invoices = GetInvoices(
2567 invoicenumber => $invoicenumber,
2568 supplierid => $supplierid,
2569 suppliername => $suppliername,
2570 shipmentdatefrom => $shipmentdatefrom, # ISO format
2571 shipmentdateto => $shipmentdateto, # ISO format
2572 billingdatefrom => $billingdatefrom, # ISO format
2573 billingdateto => $billingdateto, # ISO format
2574 isbneanissn => $isbn_or_ean_or_issn,
2577 publisher => $publisher,
2578 publicationyear => $publicationyear,
2579 branchcode => $branchcode,
2580 order_by => $order_by
2583 Return a list of invoices that match all given criteria.
2585 $order_by is "column_name (asc|desc)", where column_name is any of
2586 'invoicenumber', 'booksellerid', 'shipmentdate', 'billingdate', 'closedate',
2587 'shipmentcost', 'shipmentcost_budgetid'.
2589 asc is the default if omitted
2596 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2597 closedate shipmentcost shipmentcost_budgetid);
2599 my $dbh = C4
::Context
->dbh;
2601 SELECT aqinvoices
.invoiceid
, aqinvoices
.invoicenumber
, aqinvoices
.booksellerid
, aqinvoices
.shipmentdate
, aqinvoices
.billingdate
, aqinvoices
.closedate
, aqinvoices
.shipmentcost
, aqinvoices
.shipmentcost_budgetid
, aqinvoices
.message_id
,
2602 aqbooksellers
.name AS suppliername
,
2605 aqorders
.datereceived IS NOT NULL
,
2606 aqorders
.biblionumber
,
2609 ) AS receivedbiblios
,
2612 aqorders
.subscriptionid IS NOT NULL
,
2613 aqorders
.subscriptionid
,
2616 ) AS is_linked_to_subscriptions
,
2617 SUM
(aqorders
.quantityreceived
) AS receiveditems
2619 LEFT JOIN aqbooksellers ON aqbooksellers
.id
= aqinvoices
.booksellerid
2620 LEFT JOIN aqorders ON aqorders
.invoiceid
= aqinvoices
.invoiceid
2621 LEFT JOIN aqbasket ON aqbasket
.basketno
=aqorders
.basketno
2622 LEFT JOIN borrowers ON aqbasket
.authorisedby
=borrowers
.borrowernumber
2623 LEFT JOIN biblio ON aqorders
.biblionumber
= biblio
.biblionumber
2624 LEFT JOIN biblioitems ON biblio
.biblionumber
= biblioitems
.biblionumber
2625 LEFT JOIN subscription ON biblio
.biblionumber
= subscription
.biblionumber
2630 if($args{supplierid
}) {
2631 push @bind_strs, " aqinvoices.booksellerid = ? ";
2632 push @bind_args, $args{supplierid
};
2634 if($args{invoicenumber
}) {
2635 push @bind_strs, " aqinvoices.invoicenumber LIKE ? ";
2636 push @bind_args, "%$args{invoicenumber}%";
2638 if($args{suppliername
}) {
2639 push @bind_strs, " aqbooksellers.name LIKE ? ";
2640 push @bind_args, "%$args{suppliername}%";
2642 if($args{shipmentdatefrom
}) {
2643 push @bind_strs, " aqinvoices.shipmentdate >= ? ";
2644 push @bind_args, $args{shipmentdatefrom
};
2646 if($args{shipmentdateto
}) {
2647 push @bind_strs, " aqinvoices.shipmentdate <= ? ";
2648 push @bind_args, $args{shipmentdateto
};
2650 if($args{billingdatefrom
}) {
2651 push @bind_strs, " aqinvoices.billingdate >= ? ";
2652 push @bind_args, $args{billingdatefrom
};
2654 if($args{billingdateto
}) {
2655 push @bind_strs, " aqinvoices.billingdate <= ? ";
2656 push @bind_args, $args{billingdateto
};
2658 if($args{isbneanissn
}) {
2659 push @bind_strs, " (biblioitems.isbn LIKE CONCAT('%', ?, '%') OR biblioitems.ean LIKE CONCAT('%', ?, '%') OR biblioitems.issn LIKE CONCAT('%', ?, '%') ) ";
2660 push @bind_args, $args{isbneanissn
}, $args{isbneanissn
}, $args{isbneanissn
};
2663 push @bind_strs, " biblio.title LIKE CONCAT('%', ?, '%') ";
2664 push @bind_args, $args{title
};
2667 push @bind_strs, " biblio.author LIKE CONCAT('%', ?, '%') ";
2668 push @bind_args, $args{author
};
2670 if($args{publisher
}) {
2671 push @bind_strs, " biblioitems.publishercode LIKE CONCAT('%', ?, '%') ";
2672 push @bind_args, $args{publisher
};
2674 if($args{publicationyear
}) {
2675 push @bind_strs, " ((biblioitems.publicationyear LIKE CONCAT('%', ?, '%')) OR (biblio.copyrightdate LIKE CONCAT('%', ?, '%'))) ";
2676 push @bind_args, $args{publicationyear
}, $args{publicationyear
};
2678 if($args{branchcode
}) {
2679 push @bind_strs, " borrowers.branchcode = ? ";
2680 push @bind_args, $args{branchcode
};
2682 if($args{message_id
}) {
2683 push @bind_strs, " aqinvoices.message_id = ? ";
2684 push @bind_args, $args{message_id
};
2687 $query .= " WHERE " . join(" AND ", @bind_strs) if @bind_strs;
2688 $query .= " GROUP BY aqinvoices.invoiceid, aqinvoices.invoicenumber, aqinvoices.booksellerid, aqinvoices.shipmentdate, aqinvoices.billingdate, aqinvoices.closedate, aqinvoices.shipmentcost, aqinvoices.shipmentcost_budgetid, aqinvoices.message_id, aqbooksellers.name";
2690 if($args{order_by
}) {
2691 my ($column, $direction) = split / /, $args{order_by
};
2692 if(grep /^$column$/, @columns) {
2693 $direction ||= 'ASC';
2694 $query .= " ORDER BY $column $direction";
2698 my $sth = $dbh->prepare($query);
2699 $sth->execute(@bind_args);
2701 my $results = $sth->fetchall_arrayref({});
2707 my $invoice = GetInvoice($invoiceid);
2709 Get informations about invoice with given $invoiceid
2711 Return a hash filled with aqinvoices.* fields
2716 my ($invoiceid) = @_;
2719 return unless $invoiceid;
2721 my $dbh = C4
::Context
->dbh;
2727 my $sth = $dbh->prepare($query);
2728 $sth->execute($invoiceid);
2730 $invoice = $sth->fetchrow_hashref;
2734 =head3 GetInvoiceDetails
2736 my $invoice = GetInvoiceDetails($invoiceid)
2738 Return informations about an invoice + the list of related order lines
2740 Orders informations are in $invoice->{orders} (array ref)
2744 sub GetInvoiceDetails
{
2745 my ($invoiceid) = @_;
2747 if ( !defined $invoiceid ) {
2748 carp
'GetInvoiceDetails called without an invoiceid';
2752 my $dbh = C4
::Context
->dbh;
2754 SELECT aqinvoices.*, aqbooksellers.name AS suppliername
2756 LEFT JOIN aqbooksellers ON aqinvoices.booksellerid = aqbooksellers.id
2759 my $sth = $dbh->prepare($query);
2760 $sth->execute($invoiceid);
2762 my $invoice = $sth->fetchrow_hashref;
2767 biblio.copyrightdate,
2769 biblioitems.publishercode,
2770 biblioitems.publicationyear,
2771 aqbasket.basketname,
2772 aqbasketgroups.id AS basketgroupid,
2773 aqbasketgroups.name AS basketgroupname
2775 LEFT JOIN aqbasket ON aqorders.basketno = aqbasket.basketno
2776 LEFT JOIN aqbasketgroups ON aqbasket.basketgroupid = aqbasketgroups.id
2777 LEFT JOIN biblio ON aqorders.biblionumber = biblio.biblionumber
2778 LEFT JOIN biblioitems ON aqorders.biblionumber = biblioitems.biblionumber
2781 $sth = $dbh->prepare($query);
2782 $sth->execute($invoiceid);
2783 $invoice->{orders
} = $sth->fetchall_arrayref({});
2784 $invoice->{orders
} ||= []; # force an empty arrayref if fetchall_arrayref fails
2791 my $invoiceid = AddInvoice(
2792 invoicenumber => $invoicenumber,
2793 booksellerid => $booksellerid,
2794 shipmentdate => $shipmentdate,
2795 billingdate => $billingdate,
2796 closedate => $closedate,
2797 shipmentcost => $shipmentcost,
2798 shipmentcost_budgetid => $shipmentcost_budgetid
2801 Create a new invoice and return its id or undef if it fails.
2808 return unless(%invoice and $invoice{invoicenumber
});
2810 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2811 closedate shipmentcost shipmentcost_budgetid message_id);
2815 foreach my $key (keys %invoice) {
2816 if(0 < grep(/^$key$/, @columns)) {
2817 push @set_strs, "$key = ?";
2818 push @set_args, ($invoice{$key} || undef);
2824 my $dbh = C4
::Context
->dbh;
2825 my $query = "INSERT INTO aqinvoices SET ";
2826 $query .= join (",", @set_strs);
2827 my $sth = $dbh->prepare($query);
2828 $rv = $sth->execute(@set_args);
2830 $rv = $dbh->last_insert_id(undef, undef, 'aqinvoices', undef);
2839 invoiceid => $invoiceid, # Mandatory
2840 invoicenumber => $invoicenumber,
2841 booksellerid => $booksellerid,
2842 shipmentdate => $shipmentdate,
2843 billingdate => $billingdate,
2844 closedate => $closedate,
2845 shipmentcost => $shipmentcost,
2846 shipmentcost_budgetid => $shipmentcost_budgetid
2849 Modify an invoice, invoiceid is mandatory.
2851 Return undef if it fails.
2858 return unless(%invoice and $invoice{invoiceid
});
2860 my @columns = qw(invoicenumber booksellerid shipmentdate billingdate
2861 closedate shipmentcost shipmentcost_budgetid);
2865 foreach my $key (keys %invoice) {
2866 if(0 < grep(/^$key$/, @columns)) {
2867 push @set_strs, "$key = ?";
2868 push @set_args, ($invoice{$key} || undef);
2872 my $dbh = C4
::Context
->dbh;
2873 my $query = "UPDATE aqinvoices SET ";
2874 $query .= join(",", @set_strs);
2875 $query .= " WHERE invoiceid = ?";
2877 my $sth = $dbh->prepare($query);
2878 $sth->execute(@set_args, $invoice{invoiceid
});
2883 CloseInvoice($invoiceid);
2887 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => undef);
2892 my ($invoiceid) = @_;
2894 return unless $invoiceid;
2896 my $dbh = C4
::Context
->dbh;
2899 SET closedate
= CAST
(NOW
() AS DATE
)
2902 my $sth = $dbh->prepare($query);
2903 $sth->execute($invoiceid);
2906 =head3 ReopenInvoice
2908 ReopenInvoice($invoiceid);
2912 Equivalent to ModInvoice(invoiceid => $invoiceid, closedate => output_pref({ dt=>dt_from_string, dateonly=>1, otputpref=>'iso' }))
2917 my ($invoiceid) = @_;
2919 return unless $invoiceid;
2921 my $dbh = C4
::Context
->dbh;
2924 SET closedate
= NULL
2927 my $sth = $dbh->prepare($query);
2928 $sth->execute($invoiceid);
2933 DelInvoice($invoiceid);
2935 Delete an invoice if there are no items attached to it.
2940 my ($invoiceid) = @_;
2942 return unless $invoiceid;
2944 my $dbh = C4
::Context
->dbh;
2950 my $sth = $dbh->prepare($query);
2951 $sth->execute($invoiceid);
2952 my $res = $sth->fetchrow_arrayref;
2953 if ( $res && $res->[0] == 0 ) {
2955 DELETE FROM aqinvoices
2958 my $sth = $dbh->prepare($query);
2959 return ( $sth->execute($invoiceid) > 0 );
2964 =head3 MergeInvoices
2966 MergeInvoices($invoiceid, \@sourceids);
2968 Merge the invoices identified by the IDs in \@sourceids into
2969 the invoice identified by $invoiceid.
2974 my ($invoiceid, $sourceids) = @_;
2976 return unless $invoiceid;
2977 foreach my $sourceid (@
$sourceids) {
2978 next if $sourceid == $invoiceid;
2979 my $source = GetInvoiceDetails
($sourceid);
2980 foreach my $order (@
{$source->{'orders'}}) {
2981 $order->{'invoiceid'} = $invoiceid;
2984 DelInvoice
($source->{'invoiceid'});
2989 =head3 GetBiblioCountByBasketno
2991 $biblio_count = &GetBiblioCountByBasketno($basketno);
2993 Looks up the biblio's count that has basketno value $basketno
2999 sub GetBiblioCountByBasketno
{
3000 my ($basketno) = @_;
3001 my $dbh = C4
::Context
->dbh;
3003 SELECT COUNT( DISTINCT( biblionumber ) )
3006 AND datecancellationprinted IS NULL
3009 my $sth = $dbh->prepare($query);
3010 $sth->execute($basketno);
3011 return $sth->fetchrow;
3014 =head3 populate_order_with_prices
3016 $order = populate_order_with_prices({
3017 order => $order #a hashref with the order values
3018 booksellerid => $booksellerid #FIXME - should obtain from order basket
3019 receiving => 1 # boolean representing order stage, should pass only this or ordering
3020 ordering => 1 # boolean representing order stage
3024 Sets calculated values for an order - all values are stored with full precision
3025 regardless of rounding preference except for tax value which is calculated
3026 on rounded values if requested
3028 For ordering the values set are:
3033 tax_value_on_ordering
3034 For receiving the value set are:
3035 unitprice_tax_included
3036 unitprice_tax_excluded
3037 tax_value_on_receiving
3039 Note: When receiving, if the rounded value of the unitprice matches the rounded
3040 value of the ecost then then ecost (full precision) is used.
3042 Returns a hashref of the order
3044 FIXME: Move this to Koha::Acquisition::Order.pm
3048 sub populate_order_with_prices
{
3051 my $order = $params->{order
};
3052 my $booksellerid = $params->{booksellerid
};
3053 return unless $booksellerid;
3055 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $booksellerid );
3057 my $receiving = $params->{receiving
};
3058 my $ordering = $params->{ordering
};
3059 my $discount = $order->{discount
};
3060 $discount /= 100 if $discount > 1;
3063 $order->{tax_rate_on_ordering
} //= $order->{tax_rate
};
3064 if ( $bookseller->listincgst ) {
3066 # The user entered the prices tax included
3067 $order->{unitprice_tax_included
} = $order->{unitprice
};
3068 $order->{rrp_tax_included
} = $order->{rrp
};
3070 # price tax excluded = price tax included / ( 1 + tax rate )
3071 $order->{unitprice_tax_excluded
} = $order->{unitprice_tax_included
} / ( 1 + $order->{tax_rate_on_ordering
} );
3072 $order->{rrp_tax_excluded
} = $order->{rrp_tax_included
} / ( 1 + $order->{tax_rate_on_ordering
} );
3074 # ecost tax included = rrp tax included ( 1 - discount )
3075 $order->{ecost_tax_included
} = $order->{rrp_tax_included
} * ( 1 - $discount );
3077 # ecost tax excluded = rrp tax excluded * ( 1 - discount )
3078 $order->{ecost_tax_excluded
} = $order->{rrp_tax_excluded
} * ( 1 - $discount );
3080 # tax value = quantity * ecost tax excluded * tax rate
3081 # we should use the unitprice if included
3082 my $cost_tax_included = $order->{unitprice_tax_included
} || $order->{ecost_tax_included
};
3083 my $cost_tax_excluded = $order->{unitprice_tax_excluded
} || $order->{ecost_tax_excluded
};
3084 $order->{tax_value_on_ordering
} = ( get_rounded_price
($cost_tax_included) - get_rounded_price
($cost_tax_excluded) ) * $order->{quantity
};
3088 # The user entered the prices tax excluded
3089 $order->{unitprice_tax_excluded
} = $order->{unitprice
};
3090 $order->{rrp_tax_excluded
} = $order->{rrp
};
3092 # price tax included = price tax excluded * ( 1 - tax rate )
3093 $order->{unitprice_tax_included
} = $order->{unitprice_tax_excluded
} * ( 1 + $order->{tax_rate_on_ordering
} );
3094 $order->{rrp_tax_included
} = $order->{rrp_tax_excluded
} * ( 1 + $order->{tax_rate_on_ordering
} );
3096 # ecost tax excluded = rrp tax excluded * ( 1 - discount )
3097 $order->{ecost_tax_excluded
} = $order->{rrp_tax_excluded
} * ( 1 - $discount );
3099 # ecost tax included = rrp tax excluded * ( 1 + tax rate ) * ( 1 - discount ) = ecost tax excluded * ( 1 + tax rate )
3100 $order->{ecost_tax_included
} = $order->{ecost_tax_excluded
} * ( 1 + $order->{tax_rate_on_ordering
} );
3102 # tax value = quantity * ecost tax included * tax rate
3103 # we should use the unitprice if included
3104 my $cost_tax_excluded = $order->{unitprice_tax_excluded
} || $order->{ecost_tax_excluded
};
3105 $order->{tax_value_on_ordering
} = $order->{quantity
} * get_rounded_price
($cost_tax_excluded) * $order->{tax_rate_on_ordering
};
3110 $order->{tax_rate_on_receiving
} //= $order->{tax_rate
};
3111 if ( $bookseller->invoiceincgst ) {
3112 # Trick for unitprice. If the unit price rounded value is the same as the ecost rounded value
3113 # we need to keep the exact ecost value
3114 if ( Koha
::Number
::Price
->new( $order->{unitprice
} )->round == Koha
::Number
::Price
->new( $order->{ecost_tax_included
} )->round ) {
3115 $order->{unitprice
} = $order->{ecost_tax_included
};
3118 # The user entered the unit price tax included
3119 $order->{unitprice_tax_included
} = $order->{unitprice
};
3121 # unit price tax excluded = unit price tax included / ( 1 + tax rate )
3122 $order->{unitprice_tax_excluded
} = $order->{unitprice_tax_included
} / ( 1 + $order->{tax_rate_on_receiving
} );
3125 # Trick for unitprice. If the unit price rounded value is the same as the ecost rounded value
3126 # we need to keep the exact ecost value
3127 if ( Koha
::Number
::Price
->new( $order->{unitprice
} )->round == Koha
::Number
::Price
->new( $order->{ecost_tax_excluded
} )->round ) {
3128 $order->{unitprice
} = $order->{ecost_tax_excluded
};
3131 # The user entered the unit price tax excluded
3132 $order->{unitprice_tax_excluded
} = $order->{unitprice
};
3135 # unit price tax included = unit price tax included * ( 1 + tax rate )
3136 $order->{unitprice_tax_included
} = $order->{unitprice_tax_excluded
} * ( 1 + $order->{tax_rate_on_receiving
} );
3139 # tax value = quantity * unit price tax excluded * tax rate
3140 $order->{tax_value_on_receiving
} = $order->{quantity
} * get_rounded_price
($order->{unitprice_tax_excluded
}) * $order->{tax_rate_on_receiving
};
3146 =head3 GetOrderUsers
3148 $order_users_ids = &GetOrderUsers($ordernumber);
3150 Returns a list of all borrowernumbers that are in order users list
3155 my ($ordernumber) = @_;
3157 return unless $ordernumber;
3160 SELECT borrowernumber
3162 WHERE ordernumber
= ?
3164 my $dbh = C4
::Context
->dbh;
3165 my $sth = $dbh->prepare($query);
3166 $sth->execute($ordernumber);
3167 my $results = $sth->fetchall_arrayref( {} );
3169 my @borrowernumbers;
3170 foreach (@
$results) {
3171 push @borrowernumbers, $_->{'borrowernumber'};
3174 return @borrowernumbers;
3177 =head3 ModOrderUsers
3179 my @order_users_ids = (1, 2, 3);
3180 &ModOrderUsers($ordernumber, @basketusers_ids);
3182 Delete all users from order users list, and add users in C<@order_users_ids>
3188 my ( $ordernumber, @order_users_ids ) = @_;
3190 return unless $ordernumber;
3192 my $dbh = C4
::Context
->dbh;
3194 DELETE FROM aqorder_users
3195 WHERE ordernumber
= ?
3197 my $sth = $dbh->prepare($query);
3198 $sth->execute($ordernumber);
3201 INSERT INTO aqorder_users
(ordernumber
, borrowernumber
)
3204 $sth = $dbh->prepare($query);
3205 foreach my $order_user_id (@order_users_ids) {
3206 $sth->execute( $ordernumber, $order_user_id );
3210 sub NotifyOrderUsers
{
3211 my ($ordernumber) = @_;
3213 my @borrowernumbers = GetOrderUsers
($ordernumber);
3214 return unless @borrowernumbers;
3216 my $order = GetOrder
( $ordernumber );
3217 for my $borrowernumber (@borrowernumbers) {
3218 my $patron = Koha
::Patrons
->find( $borrowernumber );
3219 my $library = $patron->library->unblessed;
3220 my $biblio = Koha
::Biblios
->find( $order->{biblionumber
} )->unblessed;
3221 my $letter = C4
::Letters
::GetPreparedLetter
(
3222 module
=> 'acquisition',
3223 letter_code
=> 'ACQ_NOTIF_ON_RECEIV',
3224 branchcode
=> $library->{branchcode
},
3225 lang
=> $patron->lang,
3227 'branches' => $library,
3228 'borrowers' => $patron->unblessed,
3229 'biblio' => $biblio,
3230 'aqorders' => $order,
3234 C4
::Letters
::EnqueueLetter
(
3237 borrowernumber
=> $borrowernumber,
3238 LibraryName
=> C4
::Context
->preference("LibraryName"),
3239 message_transport_type
=> 'email',
3241 ) or warn "can't enqueue letter $letter";
3246 =head3 FillWithDefaultValues
3248 FillWithDefaultValues( $marc_record );
3250 This will update the record with default value defined in the ACQ framework.
3251 For all existing fields, if a default value exists and there are no subfield, it will be created.
3252 If the field does not exist, it will be created too.
3256 sub FillWithDefaultValues
{
3258 my $tagslib = C4
::Biblio
::GetMarcStructure
( 1, 'ACQ', { unsafe
=> 1 } );
3261 C4
::Biblio
::GetMarcFromKohaField
( 'items.itemnumber' );
3262 for my $tag ( sort keys %$tagslib ) {
3264 next if $tag == $itemfield;
3265 for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
3266 next if IsMarcStructureInternal
($tagslib->{$tag}{$subfield});
3267 my $defaultvalue = $tagslib->{$tag}{$subfield}{defaultvalue
};
3268 if ( defined $defaultvalue and $defaultvalue ne '' ) {
3269 my @fields = $record->field($tag);
3271 for my $field (@fields) {
3272 unless ( defined $field->subfield($subfield) ) {
3273 $field->add_subfields(
3274 $subfield => $defaultvalue );
3279 $record->insert_fields_ordered(
3281 $tag, '', '', $subfield => $defaultvalue
3296 Koha Development Team <http://koha-community.org/>