Bug 2847 - Added url escaping for categorie.tmpl
[koha.git] / C4 / Serials.pm
blob443c3612ae9690f9dde0cc3397b0b6becbf772af
1 package C4::Serials; #assumes C4/Serials.pm
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
21 use strict;
22 use C4::Dates qw(format_date format_date_in_iso);
23 use Date::Calc qw(:all);
24 use POSIX qw(strftime);
25 use C4::Suggestions;
26 use C4::Koha;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Search;
30 use C4::Letters;
31 use C4::Log; # logaction
32 use C4::Debug;
34 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
36 BEGIN {
37 $VERSION = 3.01; # set version for version checking
38 require Exporter;
39 @ISA = qw(Exporter);
40 @EXPORT = qw(
41 &NewSubscription &ModSubscription &DelSubscription &GetSubscriptions
42 &GetSubscription &CountSubscriptionFromBiblionumber &GetSubscriptionsFromBiblionumber
43 &GetFullSubscriptionsFromBiblionumber &GetFullSubscription &ModSubscriptionHistory
44 &HasSubscriptionExpired &GetExpirationDate &abouttoexpire
46 &GetNextSeq &NewIssue &ItemizeSerials &GetSerials
47 &GetLatestSerials &ModSerialStatus &GetNextDate &GetSerials2
48 &ReNewSubscription &GetLateIssues &GetLateOrMissingIssues
49 &GetSerialInformation &AddItem2Serial
50 &PrepareSerialsData &GetNextExpected &ModNextExpected
52 &UpdateClaimdateIssues
53 &GetSuppliersWithLateIssues &getsupplierbyserialid
54 &GetDistributedTo &SetDistributedTo
55 &getroutinglist &delroutingmember &addroutingmember
56 &reorder_members
57 &check_routing &updateClaim &removeMissingIssue
59 &old_newsubscription &old_modsubscription &old_getserials
63 =head2 GetSuppliersWithLateIssues
65 =head1 NAME
67 C4::Serials - Give functions for serializing.
69 =head1 SYNOPSIS
71 use C4::Serials;
73 =head1 DESCRIPTION
75 Give all XYZ functions
77 =head1 FUNCTIONS
79 =over 4
81 %supplierlist = &GetSuppliersWithLateIssues
83 this function get all suppliers with late issues.
85 return :
86 the supplierlist into a hash. this hash containts id & name of the supplier
88 =back
90 =cut
92 sub GetSuppliersWithLateIssues {
93 my $dbh = C4::Context->dbh;
94 my $query = qq|
95 SELECT DISTINCT id, name
96 FROM subscription
97 LEFT JOIN serial ON serial.subscriptionid=subscription.subscriptionid
98 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
99 WHERE subscription.subscriptionid = serial.subscriptionid
100 AND (planneddate < now() OR serial.STATUS = 3 OR serial.STATUS = 4)
101 ORDER BY name
103 my $sth = $dbh->prepare($query);
104 $sth->execute;
105 my %supplierlist;
106 while ( my ( $id, $name ) = $sth->fetchrow ) {
107 $supplierlist{$id} = $name;
109 return %supplierlist;
112 =head2 GetLateIssues
114 =over 4
116 @issuelist = &GetLateIssues($supplierid)
118 this function select late issues on database
120 return :
121 the issuelist into an table. Each line of this table containts a ref to a hash which it containts
122 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
124 =back
126 =cut
128 sub GetLateIssues {
129 my ($supplierid) = @_;
130 my $dbh = C4::Context->dbh;
131 my $sth;
132 if ($supplierid) {
133 my $query = qq|
134 SELECT name,title,planneddate,serialseq,serial.subscriptionid
135 FROM subscription
136 LEFT JOIN serial ON subscription.subscriptionid = serial.subscriptionid
137 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
138 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
139 WHERE ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
140 AND subscription.aqbooksellerid=$supplierid
141 ORDER BY title
143 $sth = $dbh->prepare($query);
145 else {
146 my $query = qq|
147 SELECT name,title,planneddate,serialseq,serial.subscriptionid
148 FROM subscription
149 LEFT JOIN serial ON subscription.subscriptionid = serial.subscriptionid
150 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
151 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
152 WHERE ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
153 ORDER BY title
155 $sth = $dbh->prepare($query);
157 $sth->execute;
158 my @issuelist;
159 my $last_title;
160 my $odd = 0;
161 my $count = 0;
162 while ( my $line = $sth->fetchrow_hashref ) {
163 $odd++ unless $line->{title} eq $last_title;
164 $line->{title} = "" if $line->{title} eq $last_title;
165 $last_title = $line->{title} if ( $line->{title} );
166 $line->{planneddate} = format_date( $line->{planneddate} );
167 $count++;
168 push @issuelist, $line;
170 return $count, @issuelist;
173 =head2 GetSubscriptionHistoryFromSubscriptionId
175 =over 4
177 $sth = GetSubscriptionHistoryFromSubscriptionId()
178 this function just prepare the SQL request.
179 After this function, don't forget to execute it by using $sth->execute($subscriptionid)
180 return :
181 $sth = $dbh->prepare($query).
183 =back
185 =cut
187 sub GetSubscriptionHistoryFromSubscriptionId() {
188 my $dbh = C4::Context->dbh;
189 my $query = qq|
190 SELECT *
191 FROM subscriptionhistory
192 WHERE subscriptionid = ?
194 return $dbh->prepare($query);
197 =head2 GetSerialStatusFromSerialId
199 =over 4
201 $sth = GetSerialStatusFromSerialId();
202 this function just prepare the SQL request.
203 After this function, don't forget to execute it by using $sth->execute($serialid)
204 return :
205 $sth = $dbh->prepare($query).
207 =back
209 =cut
211 sub GetSerialStatusFromSerialId() {
212 my $dbh = C4::Context->dbh;
213 my $query = qq|
214 SELECT status
215 FROM serial
216 WHERE serialid = ?
218 return $dbh->prepare($query);
221 =head2 GetSerialInformation
223 =over 4
225 $data = GetSerialInformation($serialid);
226 returns a hash containing :
227 items : items marcrecord (can be an array)
228 serial table field
229 subscription table field
230 + information about subscription expiration
232 =back
234 =cut
236 sub GetSerialInformation {
237 my ($serialid) = @_;
238 my $dbh = C4::Context->dbh;
239 my $query = qq|
240 SELECT serial.*, serial.notes as sernotes, serial.status as serstatus,subscription.*,subscription.subscriptionid as subsid |;
241 if (C4::Context->preference('IndependantBranches') &&
242 C4::Context->userenv &&
243 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
244 $query.="
245 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
247 $query .= qq|
248 FROM serial LEFT JOIN subscription ON subscription.subscriptionid=serial.subscriptionid
249 WHERE serialid = ?
251 my $rq = $dbh->prepare($query);
252 $rq->execute($serialid);
253 my $data = $rq->fetchrow_hashref;
254 # create item information if we have serialsadditems for this subscription
255 if ( $data->{'serialsadditems'} ) {
256 my $queryitem=$dbh->prepare("SELECT itemnumber from serialitems where serialid=?");
257 $queryitem->execute($serialid);
258 my $itemnumbers=$queryitem->fetchall_arrayref([0]);
259 if (scalar(@$itemnumbers)>0){
260 foreach my $itemnum (@$itemnumbers) {
261 #It is ASSUMED that GetMarcItem ALWAYS WORK...
262 #Maybe GetMarcItem should return values on failure
263 $debug and warn "itemnumber :$itemnum->[0], bibnum :".$data->{'biblionumber'};
264 my $itemprocessed =
265 PrepareItemrecordDisplay( $data->{'biblionumber'}, $itemnum->[0] , $data );
266 $itemprocessed->{'itemnumber'} = $itemnum->[0];
267 $itemprocessed->{'itemid'} = $itemnum->[0];
268 $itemprocessed->{'serialid'} = $serialid;
269 $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
270 push @{ $data->{'items'} }, $itemprocessed;
273 else {
274 my $itemprocessed =
275 PrepareItemrecordDisplay( $data->{'biblionumber'}, '', $data );
276 $itemprocessed->{'itemid'} = "N$serialid";
277 $itemprocessed->{'serialid'} = $serialid;
278 $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
279 $itemprocessed->{'countitems'} = 0;
280 push @{ $data->{'items'} }, $itemprocessed;
283 $data->{ "status" . $data->{'serstatus'} } = 1;
284 $data->{'subscriptionexpired'} =
285 HasSubscriptionExpired( $data->{'subscriptionid'} ) && $data->{'status'}==1;
286 $data->{'abouttoexpire'} =
287 abouttoexpire( $data->{'subscriptionid'} );
288 return $data;
291 =head2 AddItem2Serial
293 =over 4
295 $data = AddItem2Serial($serialid,$itemnumber);
296 Adds an itemnumber to Serial record
298 =back
300 =cut
302 sub AddItem2Serial {
303 my ( $serialid, $itemnumber ) = @_;
304 my $dbh = C4::Context->dbh;
305 my $rq = $dbh->prepare("INSERT INTO `serialitems` SET serialid=? , itemnumber=?");
306 $rq->execute($serialid, $itemnumber);
307 return $rq->rows;
310 =head2 UpdateClaimdateIssues
312 =over 4
314 UpdateClaimdateIssues($serialids,[$date]);
316 Update Claimdate for issues in @$serialids list with date $date
317 (Take Today if none)
319 =back
321 =cut
323 sub UpdateClaimdateIssues {
324 my ( $serialids, $date ) = @_;
325 my $dbh = C4::Context->dbh;
326 $date = strftime("%Y-%m-%d",localtime) unless ($date);
327 my $query = "
328 UPDATE serial SET claimdate=$date,status=7
329 WHERE serialid in ".join (",",@$serialids);
331 my $rq = $dbh->prepare($query);
332 $rq->execute;
333 return $rq->rows;
336 =head2 GetSubscription
338 =over 4
340 $subs = GetSubscription($subscriptionid)
341 this function get the subscription which has $subscriptionid as id.
342 return :
343 a hashref. This hash containts
344 subscription, subscriptionhistory, aqbudget.bookfundid, biblio.title
346 =back
348 =cut
350 sub GetSubscription {
351 my ($subscriptionid) = @_;
352 my $dbh = C4::Context->dbh;
353 my $query = qq(
354 SELECT subscription.*,
355 subscriptionhistory.*,
356 subscriptionhistory.enddate as histenddate,
357 aqbudget.bookfundid,
358 aqbooksellers.name AS aqbooksellername,
359 biblio.title AS bibliotitle,
360 subscription.biblionumber as bibnum);
361 if (C4::Context->preference('IndependantBranches') &&
362 C4::Context->userenv &&
363 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
364 $query.="
365 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
367 $query .= qq(
368 FROM subscription
369 LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
370 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
371 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid=aqbooksellers.id
372 LEFT JOIN biblio ON biblio.biblionumber=subscription.biblionumber
373 WHERE subscription.subscriptionid = ?
375 # if (C4::Context->preference('IndependantBranches') &&
376 # C4::Context->userenv &&
377 # C4::Context->userenv->{'flags'} != 1){
378 # # $debug and warn "flags: ".C4::Context->userenv->{'flags'};
379 # $query.=" AND subscription.branchcode IN ('".C4::Context->userenv->{'branch'}."',\"\")";
381 $debug and warn "query : $query\nsubsid :$subscriptionid";
382 my $sth = $dbh->prepare($query);
383 $sth->execute($subscriptionid);
384 return $sth->fetchrow_hashref;
387 =head2 GetFullSubscription
389 =over 4
391 \@res = GetFullSubscription($subscriptionid)
392 this function read on serial table.
394 =back
396 =cut
398 sub GetFullSubscription {
399 my ($subscriptionid) = @_;
400 my $dbh = C4::Context->dbh;
401 my $query = qq|
402 SELECT serial.serialid,
403 serial.serialseq,
404 serial.planneddate,
405 serial.publisheddate,
406 serial.status,
407 serial.notes as notes,
408 year(IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate)) as year,
409 aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,
410 biblio.title as bibliotitle,
411 subscription.branchcode AS branchcode,
412 subscription.subscriptionid AS subscriptionid |;
413 if (C4::Context->preference('IndependantBranches') &&
414 C4::Context->userenv &&
415 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
416 $query.="
417 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
419 $query.=qq|
420 FROM serial
421 LEFT JOIN subscription ON
422 (serial.subscriptionid=subscription.subscriptionid )
423 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
424 LEFT JOIN aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id
425 LEFT JOIN biblio on biblio.biblionumber=subscription.biblionumber
426 WHERE serial.subscriptionid = ?
427 ORDER BY year DESC,
428 IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate) DESC,
429 serial.subscriptionid
431 $debug and warn "GetFullSubscription query: $query";
432 my $sth = $dbh->prepare($query);
433 $sth->execute($subscriptionid);
434 return $sth->fetchall_arrayref({});
438 =head2 PrepareSerialsData
440 =over 4
442 \@res = PrepareSerialsData($serialinfomation)
443 where serialinformation is a hashref array
445 =back
447 =cut
449 sub PrepareSerialsData{
450 my ($lines)=@_;
451 my %tmpresults;
452 my $year;
453 my @res;
454 my $startdate;
455 my $aqbooksellername;
456 my $bibliotitle;
457 my @loopissues;
458 my $first;
459 my $previousnote = "";
461 foreach my $subs ( @$lines ) {
462 $subs->{'publisheddate'} =
463 ( $subs->{'publisheddate'}
464 ? format_date( $subs->{'publisheddate'} )
465 : "XXX" );
466 $subs->{'planneddate'} = format_date( $subs->{'planneddate'} );
467 $subs->{ "status" . $subs->{'status'} } = 1;
469 # $subs->{'notes'} = $subs->{'notes'} eq $previousnote?"":$subs->{notes};
470 if ( $subs->{'year'} && $subs->{'year'} ne "" ) {
471 $year = $subs->{'year'};
473 else {
474 $year = "manage";
476 if ( $tmpresults{$year} ) {
477 push @{ $tmpresults{$year}->{'serials'} }, $subs;
479 else {
480 $tmpresults{$year} = {
481 'year' => $year,
483 # 'startdate'=>format_date($subs->{'startdate'}),
484 'aqbooksellername' => $subs->{'aqbooksellername'},
485 'bibliotitle' => $subs->{'bibliotitle'},
486 'serials' => [$subs],
487 'first' => $first,
488 # 'branchcode' => $subs->{'branchcode'},
489 # 'subscriptionid' => $subs->{'subscriptionid'},
493 # $previousnote=$subs->{notes};
495 foreach my $key ( sort { $b cmp $a } keys %tmpresults ) {
496 push @res, $tmpresults{$key};
498 $res[0]->{'first'}=1;
499 return \@res;
502 =head2 GetSubscriptionsFromBiblionumber
504 \@res = GetSubscriptionsFromBiblionumber($biblionumber)
505 this function get the subscription list. it reads on subscription table.
506 return :
507 table of subscription which has the biblionumber given on input arg.
508 each line of this table is a hashref. All hashes containt
509 startdate, histstartdate,opacnote,missinglist,recievedlist,periodicity,status & enddate
511 =cut
513 sub GetSubscriptionsFromBiblionumber {
514 my ($biblionumber) = @_;
515 my $dbh = C4::Context->dbh;
516 my $query = qq(
517 SELECT subscription.*,
518 branches.branchname,
519 subscriptionhistory.*,
520 subscriptionhistory.enddate as histenddate,
521 aqbudget.bookfundid,
522 aqbooksellers.name AS aqbooksellername,
523 biblio.title AS bibliotitle
524 FROM subscription
525 LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
526 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
527 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid=aqbooksellers.id
528 LEFT JOIN biblio ON biblio.biblionumber=subscription.biblionumber
529 LEFT JOIN branches ON branches.branchcode=subscription.branchcode
530 WHERE subscription.biblionumber = ?
532 # if (C4::Context->preference('IndependantBranches') &&
533 # C4::Context->userenv &&
534 # C4::Context->userenv->{'flags'} != 1){
535 # $query.=" AND subscription.branchcode IN ('".C4::Context->userenv->{'branch'}."',\"\")";
537 my $sth = $dbh->prepare($query);
538 $sth->execute($biblionumber);
539 my @res;
540 while ( my $subs = $sth->fetchrow_hashref ) {
541 $subs->{startdate} = format_date( $subs->{startdate} );
542 $subs->{histstartdate} = format_date( $subs->{histstartdate} );
543 $subs->{histenddate} = format_date( $subs->{histenddate} );
544 $subs->{opacnote} =~ s/\n/\<br\/\>/g;
545 $subs->{missinglist} =~ s/\n/\<br\/\>/g;
546 $subs->{recievedlist} =~ s/\n/\<br\/\>/g;
547 $subs->{ "periodicity" . $subs->{periodicity} } = 1;
548 $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
549 $subs->{ "status" . $subs->{'status'} } = 1;
550 $subs->{'cannotedit'}=(C4::Context->preference('IndependantBranches') &&
551 C4::Context->userenv &&
552 C4::Context->userenv->{flags} !=1 &&
553 C4::Context->userenv->{branch} && $subs->{branchcode} &&
554 (C4::Context->userenv->{branch} ne $subs->{branchcode}));
555 if ( $subs->{enddate} eq '0000-00-00' ) {
556 $subs->{enddate} = '';
558 else {
559 $subs->{enddate} = format_date( $subs->{enddate} );
561 $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
562 $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
563 push @res, $subs;
565 return \@res;
568 =head2 GetFullSubscriptionsFromBiblionumber
570 =over 4
572 \@res = GetFullSubscriptionsFromBiblionumber($biblionumber)
573 this function read on serial table.
575 =back
577 =cut
579 sub GetFullSubscriptionsFromBiblionumber {
580 my ($biblionumber) = @_;
581 my $dbh = C4::Context->dbh;
582 my $query = qq|
583 SELECT serial.serialid,
584 serial.serialseq,
585 serial.planneddate,
586 serial.publisheddate,
587 serial.status,
588 serial.notes as notes,
589 year(IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate)) as year,
590 aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,
591 biblio.title as bibliotitle,
592 subscription.branchcode AS branchcode,
593 subscription.subscriptionid AS subscriptionid|;
594 if (C4::Context->preference('IndependantBranches') &&
595 C4::Context->userenv &&
596 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
597 $query.="
598 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
601 $query.=qq|
602 FROM serial
603 LEFT JOIN subscription ON
604 (serial.subscriptionid=subscription.subscriptionid)
605 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
606 LEFT JOIN aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id
607 LEFT JOIN biblio on biblio.biblionumber=subscription.biblionumber
608 WHERE subscription.biblionumber = ?
609 ORDER BY year DESC,
610 IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate) DESC,
611 serial.subscriptionid
613 my $sth = $dbh->prepare($query);
614 $sth->execute($biblionumber);
615 return $sth->fetchall_arrayref({});
618 =head2 GetSubscriptions
620 =over 4
622 @results = GetSubscriptions($title,$ISSN,$biblionumber);
623 this function get all subscriptions which has title like $title,ISSN like $ISSN and biblionumber like $biblionumber.
624 return:
625 a table of hashref. Each hash containt the subscription.
627 =back
629 =cut
631 sub GetSubscriptions {
632 my ( $title, $ISSN, $biblionumber ) = @_;
633 #return unless $title or $ISSN or $biblionumber;
634 my $dbh = C4::Context->dbh;
635 my $sth;
636 if ($biblionumber) {
637 my $query = qq(
638 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
639 FROM subscription
640 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
641 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
642 WHERE biblio.biblionumber=?
644 $query.=" ORDER BY title";
645 $debug and warn "GetSubscriptions query: $query";
646 $sth = $dbh->prepare($query);
647 $sth->execute($biblionumber);
649 else {
650 if ( $ISSN and $title ) {
651 my $query = qq|
652 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
653 FROM subscription
654 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
655 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
656 WHERE (biblioitems.issn = ? or|. join('and ',map{"biblio.title LIKE \"%$_%\""}split (" ",$title))." )";
657 $query.=" ORDER BY title";
658 $debug and warn "GetSubscriptions query: $query";
659 $sth = $dbh->prepare($query);
660 $sth->execute( $ISSN );
662 else {
663 if ($ISSN) {
664 my $query = qq(
665 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
666 FROM subscription
667 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
668 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
669 WHERE biblioitems.issn LIKE ?
671 $query.=" ORDER BY title";
672 $debug and warn "GetSubscriptions query: $query";
673 $sth = $dbh->prepare($query);
674 $sth->execute( "%" . $ISSN . "%" );
676 else {
677 my $query = qq(
678 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
679 FROM subscription
680 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
681 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
682 WHERE 1
683 ).($title?" and ":""). join('and ',map{"biblio.title LIKE \"%$_%\""} split (" ",$title) );
685 $query.=" ORDER BY title";
686 $debug and warn "GetSubscriptions query: $query";
687 $sth = $dbh->prepare($query);
688 $sth->execute;
692 my @results;
693 my $previoustitle = "";
694 my $odd = 1;
695 while ( my $line = $sth->fetchrow_hashref ) {
696 if ( $previoustitle eq $line->{title} ) {
697 $line->{title} = "";
698 $line->{issn} = "";
700 else {
701 $previoustitle = $line->{title};
702 $odd = -$odd;
704 $line->{toggle} = 1 if $odd == 1;
705 $line->{'cannotedit'}=(C4::Context->preference('IndependantBranches') &&
706 C4::Context->userenv &&
707 C4::Context->userenv->{flags} !=1 &&
708 C4::Context->userenv->{branch} && $line->{branchcode} &&
709 (C4::Context->userenv->{branch} ne $line->{branchcode}));
710 push @results, $line;
712 return @results;
715 =head2 GetSerials
717 =over 4
719 ($totalissues,@serials) = GetSerials($subscriptionid);
720 this function get every serial not arrived for a given subscription
721 as well as the number of issues registered in the database (all types)
722 this number is used to see if a subscription can be deleted (=it must have only 1 issue)
724 FIXME: We should return \@serials.
726 =back
728 =cut
730 sub GetSerials {
731 my ($subscriptionid,$count) = @_;
732 my $dbh = C4::Context->dbh;
734 # status = 2 is "arrived"
735 my $counter = 0;
736 $count=5 unless ($count);
737 my @serials;
738 my $query =
739 "SELECT serialid,serialseq, status, publisheddate, planneddate,notes, routingnotes
740 FROM serial
741 WHERE subscriptionid = ? AND status NOT IN (2,4,5)
742 ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC";
743 my $sth = $dbh->prepare($query);
744 $sth->execute($subscriptionid);
745 while ( my $line = $sth->fetchrow_hashref ) {
746 $line->{ "status" . $line->{status} } =
747 1; # fills a "statusX" value, used for template status select list
748 $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
749 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
750 push @serials, $line;
752 # OK, now add the last 5 issues arrives/missing
753 $query =
754 "SELECT serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
755 FROM serial
756 WHERE subscriptionid = ?
757 AND (status in (2,4,5))
758 ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC
760 $sth = $dbh->prepare($query);
761 $sth->execute($subscriptionid);
762 while ( ( my $line = $sth->fetchrow_hashref ) && $counter < $count ) {
763 $counter++;
764 $line->{ "status" . $line->{status} } =
765 1; # fills a "statusX" value, used for template status select list
766 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
767 $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
768 push @serials, $line;
771 $query = "SELECT count(*) FROM serial WHERE subscriptionid=?";
772 $sth = $dbh->prepare($query);
773 $sth->execute($subscriptionid);
774 my ($totalissues) = $sth->fetchrow;
775 return ( $totalissues, @serials );
778 =head2 GetSerials2
780 =over 4
782 ($totalissues,@serials) = GetSerials2($subscriptionid,$status);
783 this function get every serial waited for a given subscription
784 as well as the number of issues registered in the database (all types)
785 this number is used to see if a subscription can be deleted (=it must have only 1 issue)
787 =back
789 =cut
790 sub GetSerials2 {
791 my ($subscription,$status) = @_;
792 my $dbh = C4::Context->dbh;
793 my $query = qq|
794 SELECT serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
795 FROM serial
796 WHERE subscriptionid=$subscription AND status IN ($status)
797 ORDER BY publisheddate,serialid DESC
799 $debug and warn "GetSerials2 query: $query";
800 my $sth=$dbh->prepare($query);
801 $sth->execute;
802 my @serials;
803 while(my $line = $sth->fetchrow_hashref) {
804 $line->{"status".$line->{status}} = 1; # fills a "statusX" value, used for template status select list
805 $line->{"planneddate"} = format_date($line->{"planneddate"});
806 $line->{"publisheddate"} = format_date($line->{"publisheddate"});
807 push @serials,$line;
809 my ($totalissues) = scalar(@serials);
810 return ($totalissues,@serials);
813 =head2 GetLatestSerials
815 =over 4
817 \@serials = GetLatestSerials($subscriptionid,$limit)
818 get the $limit's latest serials arrived or missing for a given subscription
819 return :
820 a ref to a table which it containts all of the latest serials stored into a hash.
822 =back
824 =cut
826 sub GetLatestSerials {
827 my ( $subscriptionid, $limit ) = @_;
828 my $dbh = C4::Context->dbh;
830 # status = 2 is "arrived"
831 my $strsth = "SELECT serialid,serialseq, status, planneddate, notes
832 FROM serial
833 WHERE subscriptionid = ?
834 AND (status =2 or status=4)
835 ORDER BY planneddate DESC LIMIT 0,$limit
837 my $sth = $dbh->prepare($strsth);
838 $sth->execute($subscriptionid);
839 my @serials;
840 while ( my $line = $sth->fetchrow_hashref ) {
841 $line->{ "status" . $line->{status} } =
842 1; # fills a "statusX" value, used for template status select list
843 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
844 push @serials, $line;
847 # my $query = qq|
848 # SELECT count(*)
849 # FROM serial
850 # WHERE subscriptionid=?
851 # |;
852 # $sth=$dbh->prepare($query);
853 # $sth->execute($subscriptionid);
854 # my ($totalissues) = $sth->fetchrow;
855 return \@serials;
858 =head2 GetDistributedTo
860 =over 4
862 $distributedto=GetDistributedTo($subscriptionid)
863 This function select the old previous value of distributedto in the database.
865 =back
867 =cut
869 sub GetDistributedTo {
870 my $dbh = C4::Context->dbh;
871 my $distributedto;
872 my $subscriptionid = @_;
873 my $query = "SELECT distributedto FROM subscription WHERE subscriptionid=?";
874 my $sth = $dbh->prepare($query);
875 $sth->execute($subscriptionid);
876 return ($distributedto) = $sth->fetchrow;
879 =head2 GetNextSeq
881 =over 4
883 GetNextSeq($val)
884 $val is a hashref containing all the attributes of the table 'subscription'
885 This function get the next issue for the subscription given on input arg
886 return:
887 all the input params updated.
889 =back
891 =cut
893 # sub GetNextSeq {
894 # my ($val) =@_;
895 # my ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
896 # $calculated = $val->{numberingmethod};
897 # # calculate the (expected) value of the next issue recieved.
898 # $newlastvalue1 = $val->{lastvalue1};
899 # # check if we have to increase the new value.
900 # $newinnerloop1 = $val->{innerloop1}+1;
901 # $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
902 # $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
903 # $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
904 # $calculated =~ s/\{X\}/$newlastvalue1/g;
906 # $newlastvalue2 = $val->{lastvalue2};
907 # # check if we have to increase the new value.
908 # $newinnerloop2 = $val->{innerloop2}+1;
909 # $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
910 # $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
911 # $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
912 # $calculated =~ s/\{Y\}/$newlastvalue2/g;
914 # $newlastvalue3 = $val->{lastvalue3};
915 # # check if we have to increase the new value.
916 # $newinnerloop3 = $val->{innerloop3}+1;
917 # $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
918 # $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
919 # $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
920 # $calculated =~ s/\{Z\}/$newlastvalue3/g;
921 # return ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
924 sub GetNextSeq {
925 my ($val) = @_;
926 my (
927 $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3,
928 $newinnerloop1, $newinnerloop2, $newinnerloop3
930 my $pattern = $val->{numberpattern};
931 my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
932 my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
933 $calculated = $val->{numberingmethod};
934 $newlastvalue1 = $val->{lastvalue1};
935 $newlastvalue2 = $val->{lastvalue2};
936 $newlastvalue3 = $val->{lastvalue3};
937 $newlastvalue1 = $val->{lastvalue1};
938 # check if we have to increase the new value.
939 $newinnerloop1 = $val->{innerloop1} + 1;
940 $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
941 $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
942 $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
943 $calculated =~ s/\{X\}/$newlastvalue1/g;
945 $newlastvalue2 = $val->{lastvalue2};
946 # check if we have to increase the new value.
947 $newinnerloop2 = $val->{innerloop2} + 1;
948 $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
949 $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
950 $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
951 if ( $pattern == 6 ) {
952 if ( $val->{hemisphere} == 2 ) {
953 my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
954 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
956 else {
957 my $newlastvalue2seq = $seasons[$newlastvalue2];
958 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
961 else {
962 $calculated =~ s/\{Y\}/$newlastvalue2/g;
966 $newlastvalue3 = $val->{lastvalue3};
967 # check if we have to increase the new value.
968 $newinnerloop3 = $val->{innerloop3} + 1;
969 $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
970 $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
971 $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
972 $calculated =~ s/\{Z\}/$newlastvalue3/g;
974 return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 ,
975 $newinnerloop1, $newinnerloop2, $newinnerloop3);
978 =head2 GetSeq
980 =over 4
982 $calculated = GetSeq($val)
983 $val is a hashref containing all the attributes of the table 'subscription'
984 this function transforms {X},{Y},{Z} to 150,0,0 for example.
985 return:
986 the sequence in integer format
988 =back
990 =cut
992 sub GetSeq {
993 my ($val) = @_;
994 my $pattern = $val->{numberpattern};
995 my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
996 my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
997 my $calculated = $val->{numberingmethod};
998 my $x = $val->{'lastvalue1'};
999 $calculated =~ s/\{X\}/$x/g;
1000 my $newlastvalue2 = $val->{'lastvalue2'};
1001 if ( $pattern == 6 ) {
1002 if ( $val->{hemisphere} == 2 ) {
1003 my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
1004 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1006 else {
1007 my $newlastvalue2seq = $seasons[$newlastvalue2];
1008 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1011 else {
1012 $calculated =~ s/\{Y\}/$newlastvalue2/g;
1014 my $z = $val->{'lastvalue3'};
1015 $calculated =~ s/\{Z\}/$z/g;
1016 return $calculated;
1019 =head2 GetExpirationDate
1021 $sensddate = GetExpirationDate($subscriptionid)
1023 this function return the expiration date for a subscription given on input args.
1025 return
1026 the enddate
1028 =cut
1030 sub GetExpirationDate {
1031 my ($subscriptionid) = @_;
1032 my $dbh = C4::Context->dbh;
1033 my $subscription = GetSubscription($subscriptionid);
1034 my $enddate = $subscription->{startdate};
1036 # we don't do the same test if the subscription is based on X numbers or on X weeks/months
1037 if (($subscription->{periodicity} % 16) >0){
1038 if ( $subscription->{numberlength} ) {
1039 #calculate the date of the last issue.
1040 my $length = $subscription->{numberlength};
1041 for ( my $i = 1 ; $i <= $length ; $i++ ) {
1042 $enddate = GetNextDate( $enddate, $subscription );
1045 elsif ( $subscription->{monthlength} ){
1046 my @date=split (/-/,$subscription->{startdate});
1047 my @enddate = Add_Delta_YM($date[0],$date[1],$date[2],0,$subscription->{monthlength});
1048 $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1049 } elsif ( $subscription->{weeklength} ){
1050 my @date=split (/-/,$subscription->{startdate});
1051 my @enddate = Add_Delta_Days($date[0],$date[1],$date[2],$subscription->{weeklength}*7);
1052 $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1054 return $enddate;
1055 } else {
1056 return 0;
1060 =head2 CountSubscriptionFromBiblionumber
1062 =over 4
1064 $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber)
1065 this count the number of subscription for a biblionumber given.
1066 return :
1067 the number of subscriptions with biblionumber given on input arg.
1069 =back
1071 =cut
1073 sub CountSubscriptionFromBiblionumber {
1074 my ($biblionumber) = @_;
1075 my $dbh = C4::Context->dbh;
1076 my $query = "SELECT count(*) FROM subscription WHERE biblionumber=?";
1077 my $sth = $dbh->prepare($query);
1078 $sth->execute($biblionumber);
1079 my $subscriptionsnumber = $sth->fetchrow;
1080 return $subscriptionsnumber;
1083 =head2 ModSubscriptionHistory
1085 =over 4
1087 ModSubscriptionHistory($subscriptionid,$histstartdate,$enddate,$recievedlist,$missinglist,$opacnote,$librariannote);
1089 this function modify the history of a subscription. Put your new values on input arg.
1091 =back
1093 =cut
1095 sub ModSubscriptionHistory {
1096 my (
1097 $subscriptionid, $histstartdate, $enddate, $recievedlist,
1098 $missinglist, $opacnote, $librariannote
1099 ) = @_;
1100 my $dbh = C4::Context->dbh;
1101 my $query = "UPDATE subscriptionhistory
1102 SET histstartdate=?,enddate=?,recievedlist=?,missinglist=?,opacnote=?,librariannote=?
1103 WHERE subscriptionid=?
1105 my $sth = $dbh->prepare($query);
1106 $recievedlist =~ s/^; //;
1107 $missinglist =~ s/^; //;
1108 $opacnote =~ s/^; //;
1109 $sth->execute(
1110 $histstartdate, $enddate, $recievedlist, $missinglist,
1111 $opacnote, $librariannote, $subscriptionid
1113 return $sth->rows;
1116 =head2 ModSerialStatus
1118 =over 4
1120 ModSerialStatus($serialid,$serialseq, $planneddate,$publisheddate,$status,$notes)
1122 This function modify the serial status. Serial status is a number.(eg 2 is "arrived")
1123 Note : if we change from "waited" to something else,then we will have to create a new "waited" entry
1125 =back
1127 =cut
1129 sub ModSerialStatus {
1130 my ( $serialid, $serialseq, $planneddate,$publisheddate, $status, $notes )
1131 = @_;
1133 #It is a usual serial
1134 # 1st, get previous status :
1135 my $dbh = C4::Context->dbh;
1136 my $query = "SELECT subscriptionid,status FROM serial WHERE serialid=?";
1137 my $sth = $dbh->prepare($query);
1138 $sth->execute($serialid);
1139 my ( $subscriptionid, $oldstatus ) = $sth->fetchrow;
1141 # change status & update subscriptionhistory
1142 my $val;
1143 if ( $status eq 6 ) {
1144 DelIssue( {'serialid'=>$serialid, 'subscriptionid'=>$subscriptionid,'serialseq'=>$serialseq} );
1146 else {
1147 my $query =
1148 "UPDATE serial SET serialseq=?,publisheddate=?,planneddate=?,status=?,notes=? WHERE serialid = ?";
1149 $sth = $dbh->prepare($query);
1150 $sth->execute( $serialseq, $publisheddate, $planneddate, $status,
1151 $notes, $serialid );
1152 $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1153 $sth = $dbh->prepare($query);
1154 $sth->execute($subscriptionid);
1155 my $val = $sth->fetchrow_hashref;
1156 unless ( $val->{manualhistory} ) {
1157 $query =
1158 "SELECT missinglist,recievedlist FROM subscriptionhistory WHERE subscriptionid=?";
1159 $sth = $dbh->prepare($query);
1160 $sth->execute($subscriptionid);
1161 my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1162 if ( $status eq 2 ) {
1164 $recievedlist .= "; $serialseq"
1165 unless ( index( "$recievedlist", "$serialseq" ) >= 0 );
1168 # warn "missinglist : $missinglist serialseq :$serialseq, ".index("$missinglist","$serialseq");
1169 $missinglist .= "; $serialseq"
1170 if ( $status eq 4
1171 and not index( "$missinglist", "$serialseq" ) >= 0 );
1172 $missinglist .= "; not issued $serialseq"
1173 if ( $status eq 5
1174 and index( "$missinglist", "$serialseq" ) >= 0 );
1175 $query =
1176 "UPDATE subscriptionhistory SET recievedlist=?, missinglist=? WHERE subscriptionid=?";
1177 $sth = $dbh->prepare($query);
1178 $recievedlist =~ s/^; //;
1179 $missinglist =~ s/^; //;
1180 $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1184 # create new waited entry if needed (ie : was a "waited" and has changed)
1185 if ( $oldstatus eq 1 && $status ne 1 ) {
1186 my $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1187 $sth = $dbh->prepare($query);
1188 $sth->execute($subscriptionid);
1189 my $val = $sth->fetchrow_hashref;
1191 # next issue number
1192 # warn "Next Seq";
1193 my (
1194 $newserialseq, $newlastvalue1, $newlastvalue2, $newlastvalue3,
1195 $newinnerloop1, $newinnerloop2, $newinnerloop3
1196 ) = GetNextSeq($val);
1197 # warn "Next Seq End";
1199 # next date (calculated from actual date & frequency parameters)
1200 # warn "publisheddate :$publisheddate ";
1201 my $nextpublisheddate = GetNextDate( $publisheddate, $val );
1202 NewIssue( $newserialseq, $subscriptionid, $val->{'biblionumber'},
1203 1, $nextpublisheddate, $nextpublisheddate );
1204 $query =
1205 "UPDATE subscription SET lastvalue1=?, lastvalue2=?, lastvalue3=?, innerloop1=?, innerloop2=?, innerloop3=?
1206 WHERE subscriptionid = ?";
1207 $sth = $dbh->prepare($query);
1208 $sth->execute(
1209 $newlastvalue1, $newlastvalue2, $newlastvalue3, $newinnerloop1,
1210 $newinnerloop2, $newinnerloop3, $subscriptionid
1213 # check if an alert must be sent... (= a letter is defined & status became "arrived"
1214 if ( $val->{letter} && $status eq 2 && $oldstatus ne 2 ) {
1215 SendAlerts( 'issue', $val->{subscriptionid}, $val->{letter} );
1220 =head2 GetNextExpected
1222 =over 4
1224 $nextexpected = GetNextExpected($subscriptionid)
1226 Get the planneddate for the current expected issue of the subscription.
1228 returns a hashref:
1230 $nextexepected = {
1231 serialid => int
1232 planneddate => C4::Dates object
1235 =back
1237 =cut
1239 sub GetNextExpected($) {
1240 my ($subscriptionid) = @_;
1241 my $dbh = C4::Context->dbh;
1242 my $sth = $dbh->prepare('SELECT serialid, planneddate FROM serial WHERE subscriptionid=? AND status=?');
1243 # Each subscription has only one 'expected' issue, with serial.status==1.
1244 $sth->execute( $subscriptionid, 1 );
1245 my ( $nextissue ) = $sth->fetchrow_hashref;
1246 if(not $nextissue){
1247 $sth = $dbh->prepare('SELECT serialid,planneddate FROM serial WHERE subscriptionid = ? ORDER BY planneddate DESC LIMIT 1');
1248 $sth->execute( $subscriptionid );
1249 $nextissue = $sth->fetchrow_hashref;
1251 $nextissue->{planneddate} = C4::Dates->new($nextissue->{planneddate},'iso');
1252 return $nextissue;
1255 =head2 ModNextExpected
1257 =over 4
1259 ModNextExpected($subscriptionid,$date)
1261 Update the planneddate for the current expected issue of the subscription.
1262 This will modify all future prediction results.
1264 C<$date> is a C4::Dates object.
1266 =back
1268 =cut
1270 sub ModNextExpected($$) {
1271 my ($subscriptionid,$date) = @_;
1272 my $dbh = C4::Context->dbh;
1273 #FIXME: Would expect to only set planneddate, but we set both on new issue creation, so updating it here
1274 my $sth = $dbh->prepare('UPDATE serial SET planneddate=?,publisheddate=? WHERE subscriptionid=? AND status=?');
1275 # Each subscription has only one 'expected' issue, with serial.status==1.
1276 $sth->execute( $date->output('iso'),$date->output('iso'), $subscriptionid, 1);
1277 return 0;
1281 =head2 ModSubscription
1283 =over 4
1285 this function modify a subscription. Put all new values on input args.
1287 =back
1289 =cut
1291 sub ModSubscription {
1292 my (
1293 $auser, $branchcode, $aqbooksellerid, $cost,
1294 $aqbudgetid, $startdate, $periodicity, $firstacquidate,
1295 $dow, $irregularity, $numberpattern, $numberlength,
1296 $weeklength, $monthlength, $add1, $every1,
1297 $whenmorethan1, $setto1, $lastvalue1, $innerloop1,
1298 $add2, $every2, $whenmorethan2, $setto2,
1299 $lastvalue2, $innerloop2, $add3, $every3,
1300 $whenmorethan3, $setto3, $lastvalue3, $innerloop3,
1301 $numberingmethod, $status, $biblionumber, $callnumber,
1302 $notes, $letter, $hemisphere, $manualhistory,
1303 $internalnotes, $serialsadditems,$subscriptionid,
1304 $staffdisplaycount,$opacdisplaycount
1305 ) = @_;
1306 # warn $irregularity;
1307 my $dbh = C4::Context->dbh;
1308 my $query = "UPDATE subscription
1309 SET librarian=?, branchcode=?,aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
1310 periodicity=?,firstacquidate=?,dow=?,irregularity=?, numberpattern=?, numberlength=?,weeklength=?,monthlength=?,
1311 add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
1312 add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
1313 add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
1314 numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, letter=?, hemisphere=?,manualhistory=?,internalnotes=?,serialsadditems=?,staffdisplaycount = ?,opacdisplaycount = ?
1315 WHERE subscriptionid = ?";
1316 #warn "query :".$query;
1317 my $sth = $dbh->prepare($query);
1318 $sth->execute(
1319 $auser, $branchcode, $aqbooksellerid, $cost,
1320 $aqbudgetid, $startdate, $periodicity, $firstacquidate,
1321 $dow, "$irregularity", $numberpattern, $numberlength,
1322 $weeklength, $monthlength, $add1, $every1,
1323 $whenmorethan1, $setto1, $lastvalue1, $innerloop1,
1324 $add2, $every2, $whenmorethan2, $setto2,
1325 $lastvalue2, $innerloop2, $add3, $every3,
1326 $whenmorethan3, $setto3, $lastvalue3, $innerloop3,
1327 $numberingmethod, $status, $biblionumber, $callnumber,
1328 $notes, $letter, $hemisphere, ($manualhistory?$manualhistory:0),
1329 $internalnotes, $serialsadditems,
1330 $staffdisplaycount, $opacdisplaycount, $subscriptionid
1332 my $rows=$sth->rows;
1333 $sth->finish;
1335 logaction("SERIAL", "MODIFY", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1336 return $rows;
1339 =head2 NewSubscription
1341 =over 4
1343 $subscriptionid = &NewSubscription($auser,branchcode,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
1344 $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength,
1345 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
1346 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
1347 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
1348 $numberingmethod, $status, $notes, $serialsadditems)
1350 Create a new subscription with value given on input args.
1352 return :
1353 the id of this new subscription
1355 =back
1357 =cut
1359 sub NewSubscription {
1360 my (
1361 $auser, $branchcode, $aqbooksellerid, $cost,
1362 $aqbudgetid, $biblionumber, $startdate, $periodicity,
1363 $dow, $numberlength, $weeklength, $monthlength,
1364 $add1, $every1, $whenmorethan1, $setto1,
1365 $lastvalue1, $innerloop1, $add2, $every2,
1366 $whenmorethan2, $setto2, $lastvalue2, $innerloop2,
1367 $add3, $every3, $whenmorethan3, $setto3,
1368 $lastvalue3, $innerloop3, $numberingmethod, $status,
1369 $notes, $letter, $firstacquidate, $irregularity,
1370 $numberpattern, $callnumber, $hemisphere, $manualhistory,
1371 $internalnotes, $serialsadditems, $staffdisplaycount, $opacdisplaycount
1372 ) = @_;
1373 my $dbh = C4::Context->dbh;
1375 #save subscription (insert into database)
1376 my $query = qq|
1377 INSERT INTO subscription
1378 (librarian,branchcode,aqbooksellerid,cost,aqbudgetid,biblionumber,
1379 startdate,periodicity,dow,numberlength,weeklength,monthlength,
1380 add1,every1,whenmorethan1,setto1,lastvalue1,innerloop1,
1381 add2,every2,whenmorethan2,setto2,lastvalue2,innerloop2,
1382 add3,every3,whenmorethan3,setto3,lastvalue3,innerloop3,
1383 numberingmethod, status, notes, letter,firstacquidate,irregularity,
1384 numberpattern, callnumber, hemisphere,manualhistory,internalnotes,serialsadditems,staffdisplaycount,opacdisplaycount)
1385 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
1387 my $sth = $dbh->prepare($query);
1388 $sth->execute(
1389 $auser, $branchcode,
1390 $aqbooksellerid, $cost,
1391 $aqbudgetid, $biblionumber,
1392 format_date_in_iso($startdate), $periodicity,
1393 $dow, $numberlength,
1394 $weeklength, $monthlength,
1395 $add1, $every1,
1396 $whenmorethan1, $setto1,
1397 $lastvalue1, $innerloop1,
1398 $add2, $every2,
1399 $whenmorethan2, $setto2,
1400 $lastvalue2, $innerloop2,
1401 $add3, $every3,
1402 $whenmorethan3, $setto3,
1403 $lastvalue3, $innerloop3,
1404 $numberingmethod, "$status",
1405 $notes, $letter,
1406 format_date_in_iso($firstacquidate), $irregularity,
1407 $numberpattern, $callnumber,
1408 $hemisphere, $manualhistory,
1409 $internalnotes, $serialsadditems,
1410 $staffdisplaycount, $opacdisplaycount
1413 #then create the 1st waited number
1414 my $subscriptionid = $dbh->{'mysql_insertid'};
1415 $query = qq(
1416 INSERT INTO subscriptionhistory
1417 (biblionumber, subscriptionid, histstartdate, opacnote, librariannote)
1418 VALUES (?,?,?,?,?)
1420 $sth = $dbh->prepare($query);
1421 $sth->execute( $biblionumber, $subscriptionid,
1422 format_date_in_iso($startdate),
1423 $notes,$internalnotes );
1425 # reread subscription to get a hash (for calculation of the 1st issue number)
1426 $query = qq(
1427 SELECT *
1428 FROM subscription
1429 WHERE subscriptionid = ?
1431 $sth = $dbh->prepare($query);
1432 $sth->execute($subscriptionid);
1433 my $val = $sth->fetchrow_hashref;
1435 # calculate issue number
1436 my $serialseq = GetSeq($val);
1437 $query = qq|
1438 INSERT INTO serial
1439 (serialseq,subscriptionid,biblionumber,status, planneddate, publisheddate)
1440 VALUES (?,?,?,?,?,?)
1442 $sth = $dbh->prepare($query);
1443 $sth->execute(
1444 "$serialseq", $subscriptionid, $biblionumber, 1,
1445 format_date_in_iso($firstacquidate),
1446 format_date_in_iso($firstacquidate)
1449 logaction("SERIAL", "ADD", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1451 #set serial flag on biblio if not already set.
1452 my ($null, ($bib)) = GetBiblio($biblionumber);
1453 if( ! $bib->{'serial'} ) {
1454 my $record = GetMarcBiblio($biblionumber);
1455 my ($tag,$subf) = GetMarcFromKohaField('biblio.serial',$bib->{'frameworkcode'});
1456 if($tag) {
1457 eval {
1458 $record->field($tag)->update( $subf => 1 );
1461 ModBiblio($record,$biblionumber,$bib->{'frameworkcode'});
1463 return $subscriptionid;
1466 =head2 ReNewSubscription
1468 =over 4
1470 ReNewSubscription($subscriptionid,$user,$startdate,$numberlength,$weeklength,$monthlength,$note)
1472 this function renew a subscription with values given on input args.
1474 =back
1476 =cut
1478 sub ReNewSubscription {
1479 my ( $subscriptionid, $user, $startdate, $numberlength, $weeklength,
1480 $monthlength, $note )
1481 = @_;
1482 my $dbh = C4::Context->dbh;
1483 my $subscription = GetSubscription($subscriptionid);
1484 my $query = qq|
1485 SELECT *
1486 FROM biblio
1487 LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber
1488 WHERE biblio.biblionumber=?
1490 my $sth = $dbh->prepare($query);
1491 $sth->execute( $subscription->{biblionumber} );
1492 my $biblio = $sth->fetchrow_hashref;
1493 if (C4::Context->preference("RenewSerialAddsSuggestion")){
1494 NewSuggestion(
1495 $user, $subscription->{bibliotitle},
1496 $biblio->{author}, $biblio->{publishercode},
1497 $biblio->{note}, '',
1498 '', '',
1499 '', '',
1500 $subscription->{biblionumber}
1504 # renew subscription
1505 $query = qq|
1506 UPDATE subscription
1507 SET startdate=?,numberlength=?,weeklength=?,monthlength=?
1508 WHERE subscriptionid=?
1510 $sth = $dbh->prepare($query);
1511 $sth->execute( format_date_in_iso($startdate),
1512 $numberlength, $weeklength, $monthlength, $subscriptionid );
1514 logaction("SERIAL", "RENEW", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1517 =head2 NewIssue
1519 =over 4
1521 NewIssue($serialseq,$subscriptionid,$biblionumber,$status, $planneddate, $publisheddate, $notes)
1523 Create a new issue stored on the database.
1524 Note : we have to update the recievedlist and missinglist on subscriptionhistory for this subscription.
1526 =back
1528 =cut
1530 sub NewIssue {
1531 my ( $serialseq, $subscriptionid, $biblionumber, $status,
1532 $planneddate, $publisheddate, $notes )
1533 = @_;
1534 ### FIXME biblionumber CAN be provided by subscriptionid. So Do we STILL NEED IT ?
1536 my $dbh = C4::Context->dbh;
1537 my $query = qq|
1538 INSERT INTO serial
1539 (serialseq,subscriptionid,biblionumber,status,publisheddate,planneddate,notes)
1540 VALUES (?,?,?,?,?,?,?)
1542 my $sth = $dbh->prepare($query);
1543 $sth->execute( $serialseq, $subscriptionid, $biblionumber, $status,
1544 $publisheddate, $planneddate,$notes );
1545 my $serialid=$dbh->{'mysql_insertid'};
1546 $query = qq|
1547 SELECT missinglist,recievedlist
1548 FROM subscriptionhistory
1549 WHERE subscriptionid=?
1551 $sth = $dbh->prepare($query);
1552 $sth->execute($subscriptionid);
1553 my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1555 if ( $status eq 2 ) {
1556 ### TODO Add a feature that improves recognition and description.
1557 ### As such count (serialseq) i.e. : N18,2(N19),N20
1558 ### Would use substr and index But be careful to previous presence of ()
1559 $recievedlist .= "; $serialseq" unless (index($recievedlist,$serialseq)>0);
1561 if ( $status eq 4 ) {
1562 $missinglist .= "; $serialseq" unless (index($missinglist,$serialseq)>0);
1564 $query = qq|
1565 UPDATE subscriptionhistory
1566 SET recievedlist=?, missinglist=?
1567 WHERE subscriptionid=?
1569 $sth = $dbh->prepare($query);
1570 $recievedlist =~ s/^; //;
1571 $missinglist =~ s/^; //;
1572 $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1573 return $serialid;
1576 =head2 ItemizeSerials
1578 =over 4
1580 ItemizeSerials($serialid, $info);
1581 $info is a hashref containing barcode branch, itemcallnumber, status, location
1582 $serialid the serialid
1583 return :
1584 1 if the itemize is a succes.
1585 0 and @error else. @error containts the list of errors found.
1587 =back
1589 =cut
1591 sub ItemizeSerials {
1592 my ( $serialid, $info ) = @_;
1593 my $now = POSIX::strftime( "%Y-%m-%d",localtime );
1595 my $dbh = C4::Context->dbh;
1596 my $query = qq|
1597 SELECT *
1598 FROM serial
1599 WHERE serialid=?
1601 my $sth = $dbh->prepare($query);
1602 $sth->execute($serialid);
1603 my $data = $sth->fetchrow_hashref;
1604 if ( C4::Context->preference("RoutingSerials") ) {
1606 # check for existing biblioitem relating to serial issue
1607 my ( $count, @results ) =
1608 GetBiblioItemByBiblioNumber( $data->{'biblionumber'} );
1609 my $bibitemno = 0;
1610 for ( my $i = 0 ; $i < $count ; $i++ ) {
1611 if ( $results[$i]->{'volumeddesc'} eq $data->{'serialseq'} . ' ('
1612 . $data->{'planneddate'}
1613 . ')' )
1615 $bibitemno = $results[$i]->{'biblioitemnumber'};
1616 last;
1619 if ( $bibitemno == 0 ) {
1621 # warn "need to add new biblioitem so copy last one and make minor changes";
1622 my $sth =
1623 $dbh->prepare(
1624 "SELECT * FROM biblioitems WHERE biblionumber = ? ORDER BY biblioitemnumber DESC"
1626 $sth->execute( $data->{'biblionumber'} );
1627 my $biblioitem = $sth->fetchrow_hashref;
1628 $biblioitem->{'volumedate'} =
1629 format_date_in_iso( $data->{planneddate} );
1630 $biblioitem->{'volumeddesc'} =
1631 $data->{serialseq} . ' ('
1632 . format_date( $data->{'planneddate'} ) . ')';
1633 $biblioitem->{'dewey'} = $info->{itemcallnumber};
1635 #FIXME HDL : I don't understand why you need to call newbiblioitem, as the biblioitem should already be somewhere.
1636 # so I comment it, we can speak of it when you want
1637 # newbiblioitems has been removed from Biblio.pm, as it has a deprecated API now
1638 # if ( $info->{barcode} )
1639 # { # only make biblioitem if we are going to make item also
1640 # $bibitemno = newbiblioitem($biblioitem);
1645 my $fwk = GetFrameworkCode( $data->{'biblionumber'} );
1646 if ( $info->{barcode} ) {
1647 my @errors;
1648 my $exists = itemdata( $info->{'barcode'} );
1649 push @errors, "barcode_not_unique" if ($exists);
1650 unless ($exists) {
1651 my $marcrecord = MARC::Record->new();
1652 my ( $tag, $subfield ) =
1653 GetMarcFromKohaField( "items.barcode", $fwk );
1654 my $newField =
1655 MARC::Field->new( "$tag", '', '',
1656 "$subfield" => $info->{barcode} );
1657 $marcrecord->insert_fields_ordered($newField);
1658 if ( $info->{branch} ) {
1659 my ( $tag, $subfield ) =
1660 GetMarcFromKohaField( "items.homebranch",
1661 $fwk );
1663 #warn "items.homebranch : $tag , $subfield";
1664 if ( $marcrecord->field($tag) ) {
1665 $marcrecord->field($tag)
1666 ->add_subfields( "$subfield" => $info->{branch} );
1668 else {
1669 my $newField =
1670 MARC::Field->new( "$tag", '', '',
1671 "$subfield" => $info->{branch} );
1672 $marcrecord->insert_fields_ordered($newField);
1674 ( $tag, $subfield ) =
1675 GetMarcFromKohaField( "items.holdingbranch",
1676 $fwk );
1678 #warn "items.holdingbranch : $tag , $subfield";
1679 if ( $marcrecord->field($tag) ) {
1680 $marcrecord->field($tag)
1681 ->add_subfields( "$subfield" => $info->{branch} );
1683 else {
1684 my $newField =
1685 MARC::Field->new( "$tag", '', '',
1686 "$subfield" => $info->{branch} );
1687 $marcrecord->insert_fields_ordered($newField);
1690 if ( $info->{itemcallnumber} ) {
1691 my ( $tag, $subfield ) =
1692 GetMarcFromKohaField( "items.itemcallnumber",
1693 $fwk );
1695 #warn "items.itemcallnumber : $tag , $subfield";
1696 if ( $marcrecord->field($tag) ) {
1697 $marcrecord->field($tag)
1698 ->add_subfields( "$subfield" => $info->{itemcallnumber} );
1700 else {
1701 my $newField =
1702 MARC::Field->new( "$tag", '', '',
1703 "$subfield" => $info->{itemcallnumber} );
1704 $marcrecord->insert_fields_ordered($newField);
1707 if ( $info->{notes} ) {
1708 my ( $tag, $subfield ) =
1709 GetMarcFromKohaField( "items.itemnotes", $fwk );
1711 # warn "items.itemnotes : $tag , $subfield";
1712 if ( $marcrecord->field($tag) ) {
1713 $marcrecord->field($tag)
1714 ->add_subfields( "$subfield" => $info->{notes} );
1716 else {
1717 my $newField =
1718 MARC::Field->new( "$tag", '', '',
1719 "$subfield" => $info->{notes} );
1720 $marcrecord->insert_fields_ordered($newField);
1723 if ( $info->{location} ) {
1724 my ( $tag, $subfield ) =
1725 GetMarcFromKohaField( "items.location", $fwk );
1727 # warn "items.location : $tag , $subfield";
1728 if ( $marcrecord->field($tag) ) {
1729 $marcrecord->field($tag)
1730 ->add_subfields( "$subfield" => $info->{location} );
1732 else {
1733 my $newField =
1734 MARC::Field->new( "$tag", '', '',
1735 "$subfield" => $info->{location} );
1736 $marcrecord->insert_fields_ordered($newField);
1739 if ( $info->{status} ) {
1740 my ( $tag, $subfield ) =
1741 GetMarcFromKohaField( "items.notforloan",
1742 $fwk );
1744 # warn "items.notforloan : $tag , $subfield";
1745 if ( $marcrecord->field($tag) ) {
1746 $marcrecord->field($tag)
1747 ->add_subfields( "$subfield" => $info->{status} );
1749 else {
1750 my $newField =
1751 MARC::Field->new( "$tag", '', '',
1752 "$subfield" => $info->{status} );
1753 $marcrecord->insert_fields_ordered($newField);
1756 if ( C4::Context->preference("RoutingSerials") ) {
1757 my ( $tag, $subfield ) =
1758 GetMarcFromKohaField( "items.dateaccessioned",
1759 $fwk );
1760 if ( $marcrecord->field($tag) ) {
1761 $marcrecord->field($tag)
1762 ->add_subfields( "$subfield" => $now );
1764 else {
1765 my $newField =
1766 MARC::Field->new( "$tag", '', '', "$subfield" => $now );
1767 $marcrecord->insert_fields_ordered($newField);
1770 AddItemFromMarc( $marcrecord, $data->{'biblionumber'} );
1771 return 1;
1773 return ( 0, @errors );
1777 =head2 HasSubscriptionExpired
1779 =over 4
1781 1 or 0 = HasSubscriptionExpired($subscriptionid)
1783 the subscription has expired when the next issue to arrive is out of subscription limit.
1785 return :
1786 1 if true, 0 if false.
1788 =back
1790 =cut
1792 sub HasSubscriptionExpired {
1793 my ($subscriptionid) = @_;
1794 my $dbh = C4::Context->dbh;
1795 my $subscription = GetSubscription($subscriptionid);
1796 if (($subscription->{periodicity} % 16)>0){
1797 my $expirationdate = GetExpirationDate($subscriptionid);
1798 my $query = qq|
1799 SELECT max(planneddate)
1800 FROM serial
1801 WHERE subscriptionid=?
1803 my $sth = $dbh->prepare($query);
1804 $sth->execute($subscriptionid);
1805 my ($res) = $sth->fetchrow ;
1806 return 0 unless $res;
1807 my @res=split (/-/,$res);
1808 # warn "date expiration :$expirationdate";
1809 my @endofsubscriptiondate=split(/-/,$expirationdate);
1810 return 1 if ( (@endofsubscriptiondate && Delta_Days($res[0],$res[1],$res[2],
1811 $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) <= 0)
1812 || (!$res));
1813 return 0;
1814 } else {
1815 if ($subscription->{'numberlength'}){
1816 my $countreceived=countissuesfrom($subscriptionid,$subscription->{'startdate'});
1817 return 1 if ($countreceived >$subscription->{'numberlength'});
1818 return 0;
1819 } else {
1820 return 0;
1823 return 0; # Notice that you'll never get here.
1826 =head2 SetDistributedto
1828 =over 4
1830 SetDistributedto($distributedto,$subscriptionid);
1831 This function update the value of distributedto for a subscription given on input arg.
1833 =back
1835 =cut
1837 sub SetDistributedto {
1838 my ( $distributedto, $subscriptionid ) = @_;
1839 my $dbh = C4::Context->dbh;
1840 my $query = qq|
1841 UPDATE subscription
1842 SET distributedto=?
1843 WHERE subscriptionid=?
1845 my $sth = $dbh->prepare($query);
1846 $sth->execute( $distributedto, $subscriptionid );
1849 =head2 DelSubscription
1851 =over 4
1853 DelSubscription($subscriptionid)
1854 this function delete the subscription which has $subscriptionid as id.
1856 =back
1858 =cut
1860 sub DelSubscription {
1861 my ($subscriptionid) = @_;
1862 my $dbh = C4::Context->dbh;
1863 $subscriptionid = $dbh->quote($subscriptionid);
1864 $dbh->do("DELETE FROM subscription WHERE subscriptionid=$subscriptionid");
1865 $dbh->do(
1866 "DELETE FROM subscriptionhistory WHERE subscriptionid=$subscriptionid");
1867 $dbh->do("DELETE FROM serial WHERE subscriptionid=$subscriptionid");
1869 logaction("SERIAL", "DELETE", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1872 =head2 DelIssue
1874 =over 4
1876 DelIssue($serialseq,$subscriptionid)
1877 this function delete an issue which has $serialseq and $subscriptionid given on input arg.
1879 =back
1881 =cut
1883 sub DelIssue {
1884 my ( $dataissue) = @_;
1885 my $dbh = C4::Context->dbh;
1886 ### TODO Add itemdeletion. Would need to get itemnumbers. Should be in a pref ?
1888 my $query = qq|
1889 DELETE FROM serial
1890 WHERE serialid= ?
1891 AND subscriptionid= ?
1893 my $mainsth = $dbh->prepare($query);
1894 $mainsth->execute( $dataissue->{'serialid'}, $dataissue->{'subscriptionid'});
1896 #Delete element from subscription history
1897 $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1898 my $sth = $dbh->prepare($query);
1899 $sth->execute($dataissue->{'subscriptionid'});
1900 my $val = $sth->fetchrow_hashref;
1901 unless ( $val->{manualhistory} ) {
1902 my $query = qq|
1903 SELECT * FROM subscriptionhistory
1904 WHERE subscriptionid= ?
1906 my $sth = $dbh->prepare($query);
1907 $sth->execute($dataissue->{'subscriptionid'});
1908 my $data = $sth->fetchrow_hashref;
1909 my $serialseq= $dataissue->{'serialseq'};
1910 $data->{'missinglist'} =~ s/\b$serialseq\b//;
1911 $data->{'recievedlist'} =~ s/\b$serialseq\b//;
1912 my $strsth = "UPDATE subscriptionhistory SET "
1913 . join( ",",
1914 map { join( "=", $_, $dbh->quote( $data->{$_} ) ) } keys %$data )
1915 . " WHERE subscriptionid=?";
1916 $sth = $dbh->prepare($strsth);
1917 $sth->execute($dataissue->{'subscriptionid'});
1920 return $mainsth->rows;
1923 =head2 GetLateOrMissingIssues
1925 =over 4
1927 ($count,@issuelist) = &GetLateMissingIssues($supplierid,$serialid)
1929 this function select missing issues on database - where serial.status = 4 or serial.status=3 or planneddate<now
1931 return :
1932 a count of the number of missing issues
1933 the issuelist into a table. Each line of this table containts a ref to a hash which it containts
1934 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
1936 =back
1938 =cut
1940 sub GetLateOrMissingIssues {
1941 my ( $supplierid, $serialid,$order ) = @_;
1942 my $dbh = C4::Context->dbh;
1943 my $sth;
1944 my $byserial = '';
1945 if ($serialid) {
1946 $byserial = "and serialid = " . $serialid;
1948 if ($order){
1949 $order.=", title";
1950 } else {
1951 $order="title";
1953 if ($supplierid) {
1954 $sth = $dbh->prepare(
1955 "SELECT
1956 serialid,
1957 aqbooksellerid,
1958 name,
1959 biblio.title,
1960 planneddate,
1961 serialseq,
1962 serial.status,
1963 serial.subscriptionid,
1964 claimdate
1965 FROM serial
1966 LEFT JOIN subscription ON serial.subscriptionid=subscription.subscriptionid
1967 LEFT JOIN biblio ON subscription.biblionumber=biblio.biblionumber
1968 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
1969 WHERE subscription.subscriptionid = serial.subscriptionid
1970 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1971 AND subscription.aqbooksellerid=$supplierid
1972 $byserial
1973 ORDER BY $order"
1976 else {
1977 $sth = $dbh->prepare(
1978 "SELECT
1979 serialid,
1980 aqbooksellerid,
1981 name,
1982 biblio.title,
1983 planneddate,
1984 serialseq,
1985 serial.status,
1986 serial.subscriptionid,
1987 claimdate
1988 FROM serial
1989 LEFT JOIN subscription
1990 ON serial.subscriptionid=subscription.subscriptionid
1991 LEFT JOIN biblio
1992 ON subscription.biblionumber=biblio.biblionumber
1993 LEFT JOIN aqbooksellers
1994 ON subscription.aqbooksellerid = aqbooksellers.id
1995 WHERE
1996 subscription.subscriptionid = serial.subscriptionid
1997 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1998 $byserial
1999 ORDER BY $order"
2002 $sth->execute;
2003 my @issuelist;
2004 my $last_title;
2005 my $odd = 0;
2006 my $count = 0;
2007 while ( my $line = $sth->fetchrow_hashref ) {
2008 $odd++ unless $line->{title} eq $last_title;
2009 $last_title = $line->{title} if ( $line->{title} );
2010 $line->{planneddate} = format_date( $line->{planneddate} );
2011 $line->{claimdate} = format_date( $line->{claimdate} );
2012 $line->{"status".$line->{status}} = 1;
2013 $line->{'odd'} = 1 if $odd % 2;
2014 $count++;
2015 push @issuelist, $line;
2017 return $count, @issuelist;
2020 =head2 removeMissingIssue
2022 =over 4
2024 removeMissingIssue($subscriptionid)
2026 this function removes an issue from being part of the missing string in
2027 subscriptionlist.missinglist column
2029 called when a missing issue is found from the serials-recieve.pl file
2031 =back
2033 =cut
2035 sub removeMissingIssue {
2036 my ( $sequence, $subscriptionid ) = @_;
2037 my $dbh = C4::Context->dbh;
2038 my $sth =
2039 $dbh->prepare(
2040 "SELECT * FROM subscriptionhistory WHERE subscriptionid = ?");
2041 $sth->execute($subscriptionid);
2042 my $data = $sth->fetchrow_hashref;
2043 my $missinglist = $data->{'missinglist'};
2044 my $missinglistbefore = $missinglist;
2046 # warn $missinglist." before";
2047 $missinglist =~ s/($sequence)//;
2049 # warn $missinglist." after";
2050 if ( $missinglist ne $missinglistbefore ) {
2051 $missinglist =~ s/\|\s\|/\|/g;
2052 $missinglist =~ s/^\| //g;
2053 $missinglist =~ s/\|$//g;
2054 my $sth2 = $dbh->prepare(
2055 "UPDATE subscriptionhistory
2056 SET missinglist = ?
2057 WHERE subscriptionid = ?"
2059 $sth2->execute( $missinglist, $subscriptionid );
2063 =head2 updateClaim
2065 =over 4
2067 &updateClaim($serialid)
2069 this function updates the time when a claim is issued for late/missing items
2071 called from claims.pl file
2073 =back
2075 =cut
2077 sub updateClaim {
2078 my ($serialid) = @_;
2079 my $dbh = C4::Context->dbh;
2080 my $sth = $dbh->prepare(
2081 "UPDATE serial SET claimdate = now()
2082 WHERE serialid = ?
2085 $sth->execute($serialid);
2088 =head2 getsupplierbyserialid
2090 =over 4
2092 ($result) = &getsupplierbyserialid($serialid)
2094 this function is used to find the supplier id given a serial id
2096 return :
2097 hashref containing serialid, subscriptionid, and aqbooksellerid
2099 =back
2101 =cut
2103 sub getsupplierbyserialid {
2104 my ($serialid) = @_;
2105 my $dbh = C4::Context->dbh;
2106 my $sth = $dbh->prepare(
2107 "SELECT serialid, serial.subscriptionid, aqbooksellerid
2108 FROM serial
2109 LEFT JOIN subscription ON serial.subscriptionid = subscription.subscriptionid
2110 WHERE serialid = ?
2113 $sth->execute($serialid);
2114 my $line = $sth->fetchrow_hashref;
2115 my $result = $line->{'aqbooksellerid'};
2116 return $result;
2119 =head2 check_routing
2121 =over 4
2123 ($result) = &check_routing($subscriptionid)
2125 this function checks to see if a serial has a routing list and returns the count of routingid
2126 used to show either an 'add' or 'edit' link
2128 =back
2130 =cut
2132 sub check_routing {
2133 my ($subscriptionid) = @_;
2134 my $dbh = C4::Context->dbh;
2135 my $sth = $dbh->prepare(
2136 "SELECT count(routingid) routingids FROM subscription LEFT JOIN subscriptionroutinglist
2137 ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2138 WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2141 $sth->execute($subscriptionid);
2142 my $line = $sth->fetchrow_hashref;
2143 my $result = $line->{'routingids'};
2144 return $result;
2147 =head2 addroutingmember
2149 =over 4
2151 &addroutingmember($borrowernumber,$subscriptionid)
2153 this function takes a borrowernumber and subscriptionid and add the member to the
2154 routing list for that serial subscription and gives them a rank on the list
2155 of either 1 or highest current rank + 1
2157 =back
2159 =cut
2161 sub addroutingmember {
2162 my ( $borrowernumber, $subscriptionid ) = @_;
2163 my $rank;
2164 my $dbh = C4::Context->dbh;
2165 my $sth =
2166 $dbh->prepare(
2167 "SELECT max(ranking) rank FROM subscriptionroutinglist WHERE subscriptionid = ?"
2169 $sth->execute($subscriptionid);
2170 while ( my $line = $sth->fetchrow_hashref ) {
2171 if ( $line->{'rank'} > 0 ) {
2172 $rank = $line->{'rank'} + 1;
2174 else {
2175 $rank = 1;
2178 $sth =
2179 $dbh->prepare(
2180 "INSERT INTO subscriptionroutinglist (subscriptionid,borrowernumber,ranking) VALUES (?,?,?)"
2182 $sth->execute( $subscriptionid, $borrowernumber, $rank );
2185 =head2 reorder_members
2187 =over 4
2189 &reorder_members($subscriptionid,$routingid,$rank)
2191 this function is used to reorder the routing list
2193 it takes the routingid of the member one wants to re-rank and the rank it is to move to
2194 - it gets all members on list puts their routingid's into an array
2195 - removes the one in the array that is $routingid
2196 - then reinjects $routingid at point indicated by $rank
2197 - then update the database with the routingids in the new order
2199 =back
2201 =cut
2203 sub reorder_members {
2204 my ( $subscriptionid, $routingid, $rank ) = @_;
2205 my $dbh = C4::Context->dbh;
2206 my $sth =
2207 $dbh->prepare(
2208 "SELECT * FROM subscriptionroutinglist WHERE subscriptionid = ? ORDER BY ranking ASC"
2210 $sth->execute($subscriptionid);
2211 my @result;
2212 while ( my $line = $sth->fetchrow_hashref ) {
2213 push( @result, $line->{'routingid'} );
2216 # To find the matching index
2217 my $i;
2218 my $key = -1; # to allow for 0 being a valid response
2219 for ( $i = 0 ; $i < @result ; $i++ ) {
2220 if ( $routingid == $result[$i] ) {
2221 $key = $i; # save the index
2222 last;
2226 # if index exists in array then move it to new position
2227 if ( $key > -1 && $rank > 0 ) {
2228 my $new_rank = $rank -
2229 1; # $new_rank is what you want the new index to be in the array
2230 my $moving_item = splice( @result, $key, 1 );
2231 splice( @result, $new_rank, 0, $moving_item );
2233 for ( my $j = 0 ; $j < @result ; $j++ ) {
2234 my $sth =
2235 $dbh->prepare( "UPDATE subscriptionroutinglist SET ranking = '"
2236 . ( $j + 1 )
2237 . "' WHERE routingid = '"
2238 . $result[$j]
2239 . "'" );
2240 $sth->execute;
2244 =head2 delroutingmember
2246 =over 4
2248 &delroutingmember($routingid,$subscriptionid)
2250 this function either deletes one member from routing list if $routingid exists otherwise
2251 deletes all members from the routing list
2253 =back
2255 =cut
2257 sub delroutingmember {
2259 # if $routingid exists then deletes that row otherwise deletes all with $subscriptionid
2260 my ( $routingid, $subscriptionid ) = @_;
2261 my $dbh = C4::Context->dbh;
2262 if ($routingid) {
2263 my $sth =
2264 $dbh->prepare(
2265 "DELETE FROM subscriptionroutinglist WHERE routingid = ?");
2266 $sth->execute($routingid);
2267 reorder_members( $subscriptionid, $routingid );
2269 else {
2270 my $sth =
2271 $dbh->prepare(
2272 "DELETE FROM subscriptionroutinglist WHERE subscriptionid = ?");
2273 $sth->execute($subscriptionid);
2277 =head2 getroutinglist
2279 =over 4
2281 ($count,@routinglist) = &getroutinglist($subscriptionid)
2283 this gets the info from the subscriptionroutinglist for $subscriptionid
2285 return :
2286 a count of the number of members on routinglist
2287 the routinglist into a table. Each line of this table containts a ref to a hash which containts
2288 routingid - a unique id, borrowernumber, ranking, and biblionumber of subscription
2290 =back
2292 =cut
2294 sub getroutinglist {
2295 my ($subscriptionid) = @_;
2296 my $dbh = C4::Context->dbh;
2297 my $sth = $dbh->prepare(
2298 "SELECT routingid, borrowernumber,
2299 ranking, biblionumber
2300 FROM subscription
2301 LEFT JOIN subscriptionroutinglist ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2302 WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2305 $sth->execute($subscriptionid);
2306 my @routinglist;
2307 my $count = 0;
2308 while ( my $line = $sth->fetchrow_hashref ) {
2309 $count++;
2310 push( @routinglist, $line );
2312 return ( $count, @routinglist );
2315 =head2 countissuesfrom
2317 =over 4
2319 $result = &countissuesfrom($subscriptionid,$startdate)
2322 =back
2324 =cut
2326 sub countissuesfrom {
2327 my ($subscriptionid,$startdate) = @_;
2328 my $dbh = C4::Context->dbh;
2329 my $query = qq|
2330 SELECT count(*)
2331 FROM serial
2332 WHERE subscriptionid=?
2333 AND serial.publisheddate>?
2335 my $sth=$dbh->prepare($query);
2336 $sth->execute($subscriptionid, $startdate);
2337 my ($countreceived)=$sth->fetchrow;
2338 return $countreceived;
2341 =head2 abouttoexpire
2343 =over 4
2345 $result = &abouttoexpire($subscriptionid)
2347 this function alerts you to the penultimate issue for a serial subscription
2349 returns 1 - if this is the penultimate issue
2350 returns 0 - if not
2352 =back
2354 =cut
2356 sub abouttoexpire {
2357 my ($subscriptionid) = @_;
2358 my $dbh = C4::Context->dbh;
2359 my $subscription = GetSubscription($subscriptionid);
2360 my $per = $subscription->{'periodicity'};
2361 if ($per % 16>0){
2362 my $expirationdate = GetExpirationDate($subscriptionid);
2363 my $sth =
2364 $dbh->prepare(
2365 "select max(planneddate) from serial where subscriptionid=?");
2366 $sth->execute($subscriptionid);
2367 my ($res) = $sth->fetchrow ;
2368 # warn "date expiration : ".$expirationdate." date courante ".$res;
2369 my @res=split /-/,$res;
2370 @res=Date::Calc::Today if ($res[0]*$res[1]==0);
2371 my @endofsubscriptiondate=split/-/,$expirationdate;
2372 my $x;
2373 if ( $per == 1 ) {$x=7;}
2374 if ( $per == 2 ) {$x=7; }
2375 if ( $per == 3 ) {$x=14;}
2376 if ( $per == 4 ) { $x = 21; }
2377 if ( $per == 5 ) { $x = 31; }
2378 if ( $per == 6 ) { $x = 62; }
2379 if ( $per == 7 || $per == 8 ) { $x = 93; }
2380 if ( $per == 9 ) { $x = 190; }
2381 if ( $per == 10 ) { $x = 365; }
2382 if ( $per == 11 ) { $x = 730; }
2383 my @datebeforeend=Add_Delta_Days( $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2],
2384 - (3 * $x)) if (@endofsubscriptiondate && $endofsubscriptiondate[0]*$endofsubscriptiondate[1]*$endofsubscriptiondate[2]);
2385 # warn "DATE BEFORE END: $datebeforeend";
2386 return 1 if ( @res &&
2387 (@datebeforeend &&
2388 Delta_Days($res[0],$res[1],$res[2],
2389 $datebeforeend[0],$datebeforeend[1],$datebeforeend[2]) <= 0) &&
2390 (@endofsubscriptiondate &&
2391 Delta_Days($res[0],$res[1],$res[2],
2392 $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) >= 0) );
2393 return 0;
2394 } elsif ($subscription->{numberlength}>0) {
2395 return (countissuesfrom($subscriptionid,$subscription->{'startdate'}) >=$subscription->{numberlength}-1);
2396 } else {return 0}
2399 =head2 old_newsubscription
2401 =over 4
2403 ($subscriptionid) = &old_newsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2404 $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2405 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2406 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2407 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2408 $numberingmethod, $status, $callnumber, $notes, $hemisphere)
2410 this function is similar to the NewSubscription subroutine but has a few different
2411 values passed in
2412 $firstacquidate - date of first serial issue to arrive
2413 $irregularity - the issues not expected separated by a '|'
2414 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2415 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the
2416 subscription-add.tmpl file
2417 $callnumber - display the callnumber of the serial
2418 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2420 return :
2421 the $subscriptionid number of the new subscription
2423 =back
2425 =cut
2427 sub old_newsubscription {
2428 my (
2429 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2430 $biblionumber, $startdate, $periodicity, $firstacquidate,
2431 $dow, $irregularity, $numberpattern, $numberlength,
2432 $weeklength, $monthlength, $add1, $every1,
2433 $whenmorethan1, $setto1, $lastvalue1, $add2,
2434 $every2, $whenmorethan2, $setto2, $lastvalue2,
2435 $add3, $every3, $whenmorethan3, $setto3,
2436 $lastvalue3, $numberingmethod, $status, $callnumber,
2437 $notes, $hemisphere
2438 ) = @_;
2439 my $dbh = C4::Context->dbh;
2441 #save subscription
2442 my $sth = $dbh->prepare(
2443 "insert into subscription (librarian,aqbooksellerid,cost,aqbudgetid,biblionumber,
2444 startdate,periodicity,firstacquidate,dow,irregularity,numberpattern,numberlength,weeklength,monthlength,
2445 add1,every1,whenmorethan1,setto1,lastvalue1,
2446 add2,every2,whenmorethan2,setto2,lastvalue2,
2447 add3,every3,whenmorethan3,setto3,lastvalue3,
2448 numberingmethod, status, callnumber, notes, hemisphere) values
2449 (?,?,?,?,?,?,?,?,?,?,?,
2450 ?,?,?,?,?,?,?,?,?,?,?,
2451 ?,?,?,?,?,?,?,?,?,?,?,?)"
2453 $sth->execute(
2454 $auser, $aqbooksellerid,
2455 $cost, $aqbudgetid,
2456 $biblionumber, format_date_in_iso($startdate),
2457 $periodicity, format_date_in_iso($firstacquidate),
2458 $dow, $irregularity,
2459 $numberpattern, $numberlength,
2460 $weeklength, $monthlength,
2461 $add1, $every1,
2462 $whenmorethan1, $setto1,
2463 $lastvalue1, $add2,
2464 $every2, $whenmorethan2,
2465 $setto2, $lastvalue2,
2466 $add3, $every3,
2467 $whenmorethan3, $setto3,
2468 $lastvalue3, $numberingmethod,
2469 $status, $callnumber,
2470 $notes, $hemisphere
2473 #then create the 1st waited number
2474 my $subscriptionid = $dbh->{'mysql_insertid'};
2475 my $enddate = GetExpirationDate($subscriptionid);
2477 $sth =
2478 $dbh->prepare(
2479 "insert into subscriptionhistory (biblionumber, subscriptionid, histstartdate, enddate, missinglist, recievedlist, opacnote, librariannote) values (?,?,?,?,?,?,?,?)"
2481 $sth->execute(
2482 $biblionumber, $subscriptionid,
2483 format_date_in_iso($startdate),
2484 format_date_in_iso($enddate),
2485 "", "", "", $notes
2488 # reread subscription to get a hash (for calculation of the 1st issue number)
2489 $sth =
2490 $dbh->prepare("select * from subscription where subscriptionid = ? ");
2491 $sth->execute($subscriptionid);
2492 my $val = $sth->fetchrow_hashref;
2494 # calculate issue number
2495 my $serialseq = GetSeq($val);
2496 $sth =
2497 $dbh->prepare(
2498 "insert into serial (serialseq,subscriptionid,biblionumber,status, planneddate) values (?,?,?,?,?)"
2500 $sth->execute( $serialseq, $subscriptionid, $val->{'biblionumber'},
2501 1, format_date_in_iso($startdate) );
2502 return $subscriptionid;
2505 =head2 old_modsubscription
2507 =over 4
2509 ($subscriptionid) = &old_modsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2510 $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2511 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2512 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2513 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2514 $numberingmethod, $status, $callnumber, $notes, $hemisphere, $subscriptionid)
2516 this function is similar to the ModSubscription subroutine but has a few different
2517 values passed in
2518 $firstacquidate - date of first serial issue to arrive
2519 $irregularity - the issues not expected separated by a '|'
2520 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2521 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the
2522 subscription-add.tmpl file
2523 $callnumber - display the callnumber of the serial
2524 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2526 =back
2528 =cut
2530 sub old_modsubscription {
2531 my (
2532 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2533 $startdate, $periodicity, $firstacquidate, $dow,
2534 $irregularity, $numberpattern, $numberlength, $weeklength,
2535 $monthlength, $add1, $every1, $whenmorethan1,
2536 $setto1, $lastvalue1, $innerloop1, $add2,
2537 $every2, $whenmorethan2, $setto2, $lastvalue2,
2538 $innerloop2, $add3, $every3, $whenmorethan3,
2539 $setto3, $lastvalue3, $innerloop3, $numberingmethod,
2540 $status, $biblionumber, $callnumber, $notes,
2541 $hemisphere, $subscriptionid
2542 ) = @_;
2543 my $dbh = C4::Context->dbh;
2544 my $sth = $dbh->prepare(
2545 "update subscription set librarian=?, aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
2546 periodicity=?,firstacquidate=?,dow=?,irregularity=?,numberpattern=?,numberlength=?,weeklength=?,monthlength=?,
2547 add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
2548 add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
2549 add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
2550 numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, hemisphere=? where subscriptionid = ?"
2552 $sth->execute(
2553 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2554 $startdate, $periodicity, $firstacquidate, $dow,
2555 $irregularity, $numberpattern, $numberlength, $weeklength,
2556 $monthlength, $add1, $every1, $whenmorethan1,
2557 $setto1, $lastvalue1, $innerloop1, $add2,
2558 $every2, $whenmorethan2, $setto2, $lastvalue2,
2559 $innerloop2, $add3, $every3, $whenmorethan3,
2560 $setto3, $lastvalue3, $innerloop3, $numberingmethod,
2561 $status, $biblionumber, $callnumber, $notes,
2562 $hemisphere, $subscriptionid
2564 $sth->finish;
2566 $sth =
2567 $dbh->prepare("select * from subscription where subscriptionid = ? ");
2568 $sth->execute($subscriptionid);
2569 my $val = $sth->fetchrow_hashref;
2571 # calculate issue number
2572 my $serialseq = Get_Seq($val);
2573 $sth =
2574 $dbh->prepare("UPDATE serial SET serialseq = ? WHERE subscriptionid = ?");
2575 $sth->execute( $serialseq, $subscriptionid );
2577 my $enddate = subscriptionexpirationdate($subscriptionid);
2578 $sth = $dbh->prepare("update subscriptionhistory set enddate=?");
2579 $sth->execute( format_date_in_iso($enddate) );
2582 =head2 old_getserials
2584 =over 4
2586 ($totalissues,@serials) = &old_getserials($subscriptionid)
2588 this function get a hashref of serials and the total count of them
2590 return :
2591 $totalissues - number of serial lines
2592 the serials into a table. Each line of this table containts a ref to a hash which it containts
2593 serialid, serialseq, status,planneddate,notes,routingnotes from tables : serial where status is not 2, 4, or 5
2595 =back
2597 =cut
2599 sub old_getserials {
2600 my ($subscriptionid) = @_;
2601 my $dbh = C4::Context->dbh;
2603 # status = 2 is "arrived"
2604 my $sth =
2605 $dbh->prepare(
2606 "select serialid,serialseq, status, planneddate,notes,routingnotes from serial where subscriptionid = ? and status <>2 and status <>4 and status <>5"
2608 $sth->execute($subscriptionid);
2609 my @serials;
2610 my $num = 1;
2611 while ( my $line = $sth->fetchrow_hashref ) {
2612 $line->{ "status" . $line->{status} } =
2613 1; # fills a "statusX" value, used for template status select list
2614 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
2615 $line->{"num"} = $num;
2616 $num++;
2617 push @serials, $line;
2619 $sth = $dbh->prepare("select count(*) from serial where subscriptionid=?");
2620 $sth->execute($subscriptionid);
2621 my ($totalissues) = $sth->fetchrow;
2622 return ( $totalissues, @serials );
2625 =head2 GetNextDate
2627 ($resultdate) = &GetNextDate($planneddate,$subscription)
2629 this function is an extension of GetNextDate which allows for checking for irregularity
2631 it takes the planneddate and will return the next issue's date and will skip dates if there
2632 exists an irregularity
2633 - eg if periodicity is monthly and $planneddate is 2007-02-10 but if March and April is to be
2634 skipped then the returned date will be 2007-05-10
2636 return :
2637 $resultdate - then next date in the sequence
2639 Return 0 if periodicity==0
2641 =cut
2642 sub in_array { # used in next sub down
2643 my ($val,@elements) = @_;
2644 foreach my $elem(@elements) {
2645 if($val == $elem) {
2646 return 1;
2649 return 0;
2652 sub GetNextDate(@) {
2653 my ( $planneddate, $subscription ) = @_;
2654 my @irreg = split( /\,/, $subscription->{irregularity} );
2656 #date supposed to be in ISO.
2658 my ( $year, $month, $day ) = split(/-/, $planneddate);
2659 $month=1 unless ($month);
2660 $day=1 unless ($day);
2661 my @resultdate;
2663 # warn "DOW $dayofweek";
2664 if ( $subscription->{periodicity} % 16 == 0 ) { # 'without regularity' || 'irregular'
2665 return 0;
2667 # daily : n / week
2668 # Since we're interpreting irregularity here as which days of the week to skip an issue,
2669 # renaming this pattern from 1/day to " n / week ".
2670 if ( $subscription->{periodicity} == 1 ) {
2671 my $dayofweek = eval{Day_of_Week( $year,$month, $day )};
2672 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2673 else {
2674 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2675 $dayofweek = 0 if ( $dayofweek == 7 );
2676 if ( in_array( ($dayofweek + 1), @irreg ) ) {
2677 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 1 );
2678 $dayofweek++;
2681 @resultdate = Add_Delta_Days($year,$month, $day , 1 );
2684 # 1 week
2685 if ( $subscription->{periodicity} == 2 ) {
2686 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2687 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2688 else {
2689 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2690 #FIXME: if two consecutive irreg, do we only skip one?
2691 if ( $irreg[$i] == (($wkno!=51)?($wkno +1) % 52 :52)) {
2692 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 7 );
2693 $wkno=(($wkno!=51)?($wkno +1) % 52 :52);
2696 @resultdate = Add_Delta_Days( $year,$month, $day, 7);
2699 # 1 / 2 weeks
2700 if ( $subscription->{periodicity} == 3 ) {
2701 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2702 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2703 else {
2704 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2705 if ( $irreg[$i] == (($wkno!=50)?($wkno +2) % 52 :52)) {
2706 ### BUGFIX was previously +1 ^
2707 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 14 );
2708 $wkno=(($wkno!=50)?($wkno +2) % 52 :52);
2711 @resultdate = Add_Delta_Days($year,$month, $day , 14 );
2714 # 1 / 3 weeks
2715 if ( $subscription->{periodicity} == 4 ) {
2716 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2717 if ($@){warn "année mois jour : $year $month $day $subscription->{subscriptionid} : $@";}
2718 else {
2719 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2720 if ( $irreg[$i] == (($wkno!=49)?($wkno +3) % 52 :52)) {
2721 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 21 );
2722 $wkno=(($wkno!=49)?($wkno +3) % 52 :52);
2725 @resultdate = Add_Delta_Days($year,$month, $day , 21 );
2728 my $tmpmonth=$month;
2729 if ($year && $month && $day){
2730 if ( $subscription->{periodicity} == 5 ) {
2731 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2732 if ( $irreg[$i] == (($tmpmonth!=11)?($tmpmonth +1) % 12 :12)) {
2733 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2734 $tmpmonth=(($tmpmonth!=11)?($tmpmonth +1) % 12 :12);
2737 @resultdate = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2739 if ( $subscription->{periodicity} == 6 ) {
2740 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2741 if ( $irreg[$i] == (($tmpmonth!=10)?($tmpmonth +2) % 12 :12)) {
2742 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,2,0 );
2743 $tmpmonth=(($tmpmonth!=10)?($tmpmonth + 2) % 12 :12);
2746 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 2,0 );
2748 if ( $subscription->{periodicity} == 7 ) {
2749 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2750 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2751 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2752 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2755 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2757 if ( $subscription->{periodicity} == 8 ) {
2758 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2759 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2760 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2761 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2764 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2766 if ( $subscription->{periodicity} == 9 ) {
2767 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2768 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2769 ### BUFIX Seems to need more Than One ?
2770 ($year,$month,$day) = Add_Delta_YM($year,$month, $day, 0, 6 );
2771 $tmpmonth=(($tmpmonth!=6)?($tmpmonth + 6) % 12 :12);
2774 @resultdate = Add_Delta_YM($year,$month, $day, 0, 6);
2776 if ( $subscription->{periodicity} == 10 ) {
2777 @resultdate = Add_Delta_YM($year,$month, $day, 1, 0 );
2779 if ( $subscription->{periodicity} == 11 ) {
2780 @resultdate = Add_Delta_YM($year,$month, $day, 2, 0 );
2783 my $resultdate=sprintf("%04d-%02d-%02d",$resultdate[0],$resultdate[1],$resultdate[2]);
2785 # warn "dateNEXTSEQ : ".$resultdate;
2786 return "$resultdate";
2789 =head2 itemdata
2791 $item = &itemdata($barcode);
2793 Looks up the item with the given barcode, and returns a
2794 reference-to-hash containing information about that item. The keys of
2795 the hash are the fields from the C<items> and C<biblioitems> tables in
2796 the Koha database.
2798 =cut
2801 sub itemdata {
2802 my ($barcode) = @_;
2803 my $dbh = C4::Context->dbh;
2804 my $sth = $dbh->prepare(
2805 "Select * from items LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
2806 WHERE barcode=?"
2808 $sth->execute($barcode);
2809 my $data = $sth->fetchrow_hashref;
2810 $sth->finish;
2811 return ($data);
2815 __END__
2817 =head1 AUTHOR
2819 Koha Developement team <info@koha.org>
2821 =cut