setting $dbh->{AutoCommit} = 0, and adding a new --commit arg.
[koha.git] / C4 / Serials.pm
blobdce2c611d79aff88753232d0d72b8ee21b6ed9c4
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
33 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
35 BEGIN {
36 $VERSION = 3.01; # set version for version checking
37 require Exporter;
38 @ISA = qw(Exporter);
39 @EXPORT = qw(
40 &NewSubscription &ModSubscription &DelSubscription &GetSubscriptions
41 &GetSubscription &CountSubscriptionFromBiblionumber &GetSubscriptionsFromBiblionumber
42 &GetFullSubscriptionsFromBiblionumber &GetFullSubscription &ModSubscriptionHistory
43 &HasSubscriptionExpired &GetExpirationDate &abouttoexpire
45 &GetNextSeq &NewIssue &ItemizeSerials &GetSerials
46 &GetLatestSerials &ModSerialStatus &GetNextDate &GetSerials2
47 &ReNewSubscription &GetLateIssues &GetLateOrMissingIssues
48 &GetSerialInformation &AddItem2Serial
49 &PrepareSerialsData
51 &UpdateClaimdateIssues
52 &GetSuppliersWithLateIssues &getsupplierbyserialid
53 &GetDistributedTo &SetDistributedTo
54 &getroutinglist &delroutingmember &addroutingmember
55 &reorder_members
56 &check_routing &updateClaim &removeMissingIssue
58 &old_newsubscription &old_modsubscription &old_getserials
62 =head2 GetSuppliersWithLateIssues
64 =head1 NAME
66 C4::Serials - Give functions for serializing.
68 =head1 SYNOPSIS
70 use C4::Serials;
72 =head1 DESCRIPTION
74 Give all XYZ functions
76 =head1 FUNCTIONS
78 =over 4
80 %supplierlist = &GetSuppliersWithLateIssues
82 this function get all suppliers with late issues.
84 return :
85 the supplierlist into a hash. this hash containts id & name of the supplier
87 =back
89 =cut
91 sub GetSuppliersWithLateIssues {
92 my $dbh = C4::Context->dbh;
93 my $query = qq|
94 SELECT DISTINCT id, name
95 FROM subscription
96 LEFT JOIN serial ON serial.subscriptionid=subscription.subscriptionid
97 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
98 WHERE subscription.subscriptionid = serial.subscriptionid
99 AND (planneddate < now() OR serial.STATUS = 3 OR serial.STATUS = 4)
100 ORDER BY name
102 my $sth = $dbh->prepare($query);
103 $sth->execute;
104 my %supplierlist;
105 while ( my ( $id, $name ) = $sth->fetchrow ) {
106 $supplierlist{$id} = $name;
108 if ( C4::Context->preference("RoutingSerials") ) {
109 $supplierlist{''} = "All Suppliers";
111 return %supplierlist;
114 =head2 GetLateIssues
116 =over 4
118 @issuelist = &GetLateIssues($supplierid)
120 this function select late issues on database
122 return :
123 the issuelist into an table. Each line of this table containts a ref to a hash which it containts
124 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
126 =back
128 =cut
130 sub GetLateIssues {
131 my ($supplierid) = @_;
132 my $dbh = C4::Context->dbh;
133 my $sth;
134 if ($supplierid) {
135 my $query = qq|
136 SELECT name,title,planneddate,serialseq,serial.subscriptionid
137 FROM subscription
138 LEFT JOIN serial ON subscription.subscriptionid = serial.subscriptionid
139 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
140 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
141 WHERE ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
142 AND subscription.aqbooksellerid=$supplierid
143 ORDER BY title
145 $sth = $dbh->prepare($query);
147 else {
148 my $query = qq|
149 SELECT name,title,planneddate,serialseq,serial.subscriptionid
150 FROM subscription
151 LEFT JOIN serial ON subscription.subscriptionid = serial.subscriptionid
152 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
153 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
154 WHERE ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
155 ORDER BY title
157 $sth = $dbh->prepare($query);
159 $sth->execute;
160 my @issuelist;
161 my $last_title;
162 my $odd = 0;
163 my $count = 0;
164 while ( my $line = $sth->fetchrow_hashref ) {
165 $odd++ unless $line->{title} eq $last_title;
166 $line->{title} = "" if $line->{title} eq $last_title;
167 $last_title = $line->{title} if ( $line->{title} );
168 $line->{planneddate} = format_date( $line->{planneddate} );
169 $count++;
170 push @issuelist, $line;
172 return $count, @issuelist;
175 =head2 GetSubscriptionHistoryFromSubscriptionId
177 =over 4
179 $sth = GetSubscriptionHistoryFromSubscriptionId()
180 this function just prepare the SQL request.
181 After this function, don't forget to execute it by using $sth->execute($subscriptionid)
182 return :
183 $sth = $dbh->prepare($query).
185 =back
187 =cut
189 sub GetSubscriptionHistoryFromSubscriptionId() {
190 my $dbh = C4::Context->dbh;
191 my $query = qq|
192 SELECT *
193 FROM subscriptionhistory
194 WHERE subscriptionid = ?
196 return $dbh->prepare($query);
199 =head2 GetSerialStatusFromSerialId
201 =over 4
203 $sth = GetSerialStatusFromSerialId();
204 this function just prepare the SQL request.
205 After this function, don't forget to execute it by using $sth->execute($serialid)
206 return :
207 $sth = $dbh->prepare($query).
209 =back
211 =cut
213 sub GetSerialStatusFromSerialId() {
214 my $dbh = C4::Context->dbh;
215 my $query = qq|
216 SELECT status
217 FROM serial
218 WHERE serialid = ?
220 return $dbh->prepare($query);
223 =head2 GetSerialInformation
225 =over 4
227 $data = GetSerialInformation($serialid);
228 returns a hash containing :
229 items : items marcrecord (can be an array)
230 serial table field
231 subscription table field
232 + information about subscription expiration
234 =back
236 =cut
238 sub GetSerialInformation {
239 my ($serialid) = @_;
240 my $dbh = C4::Context->dbh;
241 my $query = qq|
242 SELECT serial.*, serial.notes as sernotes, serial.status as serstatus,subscription.*,subscription.subscriptionid as subsid|;
243 if (C4::Context->preference('IndependantBranches') &&
244 C4::Context->userenv &&
245 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
246 $query.="
247 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
249 $query .= qq|
250 FROM serial LEFT JOIN subscription ON subscription.subscriptionid=serial.subscriptionid
251 WHERE serialid = ?
253 my $rq = $dbh->prepare($query);
254 $rq->execute($serialid);
255 my $data = $rq->fetchrow_hashref;
257 if ( C4::Context->preference("serialsadditems") ) {
258 if ( $data->{'itemnumber'} ) {
259 my @itemnumbers = split /,/, $data->{'itemnumber'};
260 foreach my $itemnum (@itemnumbers) {
262 #It is ASSUMED that GetMarcItem ALWAYS WORK...
263 #Maybe GetMarcItem should return values on failure
264 # warn "itemnumber :$itemnum, bibnum :".$data->{'biblionumber'};
265 my $itemprocessed =
266 PrepareItemrecordDisplay( $data->{'biblionumber'}, $itemnum );
267 $itemprocessed->{'itemnumber'} = $itemnum;
268 $itemprocessed->{'itemid'} = $itemnum;
269 $itemprocessed->{'serialid'} = $serialid;
270 $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
271 push @{ $data->{'items'} }, $itemprocessed;
274 else {
275 my $itemprocessed =
276 PrepareItemrecordDisplay( $data->{'biblionumber'} );
277 $itemprocessed->{'itemid'} = "N$serialid";
278 $itemprocessed->{'serialid'} = $serialid;
279 $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
280 $itemprocessed->{'countitems'} = 0;
281 push @{ $data->{'items'} }, $itemprocessed;
284 $data->{ "status" . $data->{'serstatus'} } = 1;
285 $data->{'subscriptionexpired'} =
286 HasSubscriptionExpired( $data->{'subscriptionid'} ) && $data->{'status'}==1;
287 $data->{'abouttoexpire'} =
288 abouttoexpire( $data->{'subscriptionid'} );
289 return $data;
292 =head2 AddItem2Serial
294 =over 4
296 $data = AddItem2Serial($serialid,$itemnumber);
297 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)
318 =back
320 =cut
322 sub UpdateClaimdateIssues {
323 my ( $serialids, $date ) = @_;
324 my $dbh = C4::Context->dbh;
325 $date = strftime("%Y-%m-%d",localtime) unless ($date);
326 my $query = "
327 UPDATE serial SET claimdate=$date,status=7
328 WHERE serialid in ".join (",",@$serialids);
330 my $rq = $dbh->prepare($query);
331 $rq->execute;
332 return $rq->rows;
335 =head2 GetSubscription
337 =over 4
339 $subs = GetSubscription($subscriptionid)
340 this function get the subscription which has $subscriptionid as id.
341 return :
342 a hashref. This hash containts
343 subscription, subscriptionhistory, aqbudget.bookfundid, biblio.title
345 =back
347 =cut
349 sub GetSubscription {
350 my ($subscriptionid) = @_;
351 my $dbh = C4::Context->dbh;
352 my $query = qq(
353 SELECT subscription.*,
354 subscriptionhistory.*,
355 aqbudget.bookfundid,
356 aqbooksellers.name AS aqbooksellername,
357 biblio.title AS bibliotitle,
358 subscription.biblionumber as bibnum);
359 if (C4::Context->preference('IndependantBranches') &&
360 C4::Context->userenv &&
361 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
362 $query.="
363 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
365 $query .= qq(
366 FROM subscription
367 LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
368 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
369 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid=aqbooksellers.id
370 LEFT JOIN biblio ON biblio.biblionumber=subscription.biblionumber
371 WHERE subscription.subscriptionid = ?
373 # if (C4::Context->preference('IndependantBranches') &&
374 # C4::Context->userenv &&
375 # C4::Context->userenv->{'flags'} != 1){
376 # # warn "flags: ".C4::Context->userenv->{'flags'};
377 # $query.=" AND subscription.branchcode IN ('".C4::Context->userenv->{'branch'}."',\"\")";
379 # warn "query : $query";
380 my $sth = $dbh->prepare($query);
381 # warn "subsid :$subscriptionid";
382 $sth->execute($subscriptionid);
383 my $subs = $sth->fetchrow_hashref;
384 return $subs;
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 # warn $query;
432 my $sth = $dbh->prepare($query);
433 $sth->execute($subscriptionid);
434 my $subs = $sth->fetchall_arrayref({});
435 return $subs;
439 =head2 PrepareSerialsData
441 =over 4
443 \@res = PrepareSerialsData($serialinfomation)
444 where serialinformation is a hashref array
446 =back
448 =cut
450 sub PrepareSerialsData{
451 my ($lines)=@_;
452 my %tmpresults;
453 my $year;
454 my @res;
455 my $startdate;
456 my $aqbooksellername;
457 my $bibliotitle;
458 my @loopissues;
459 my $first;
460 my $previousnote = "";
462 foreach my $subs ( @$lines ) {
463 $subs->{'publisheddate'} =
464 ( $subs->{'publisheddate'}
465 ? format_date( $subs->{'publisheddate'} )
466 : "XXX" );
467 $subs->{'planneddate'} = format_date( $subs->{'planneddate'} );
468 $subs->{ "status" . $subs->{'status'} } = 1;
470 # $subs->{'notes'} = $subs->{'notes'} eq $previousnote?"":$subs->{notes};
471 if ( $subs->{'year'} && $subs->{'year'} ne "" ) {
472 $year = $subs->{'year'};
474 else {
475 $year = "manage";
477 if ( $tmpresults{$year} ) {
478 push @{ $tmpresults{$year}->{'serials'} }, $subs;
480 else {
481 $tmpresults{$year} = {
482 'year' => $year,
484 # 'startdate'=>format_date($subs->{'startdate'}),
485 'aqbooksellername' => $subs->{'aqbooksellername'},
486 'bibliotitle' => $subs->{'bibliotitle'},
487 'serials' => [$subs],
488 'first' => $first,
489 # 'branchcode' => $subs->{'branchcode'},
490 # 'subscriptionid' => $subs->{'subscriptionid'},
494 # $previousnote=$subs->{notes};
496 foreach my $key ( sort { $b cmp $a } keys %tmpresults ) {
497 push @res, $tmpresults{$key};
499 $res[0]->{'first'}=1;
500 return \@res;
503 =head2 GetSubscriptionsFromBiblionumber
505 \@res = GetSubscriptionsFromBiblionumber($biblionumber)
506 this function get the subscription list. it reads on subscription table.
507 return :
508 table of subscription which has the biblionumber given on input arg.
509 each line of this table is a hashref. All hashes containt
510 startdate, histstartdate,opacnote,missinglist,recievedlist,periodicity,status & enddate
512 =cut
514 sub GetSubscriptionsFromBiblionumber {
515 my ($biblionumber) = @_;
516 my $dbh = C4::Context->dbh;
517 my $query = qq(
518 SELECT subscription.*,
519 branches.branchname,
520 subscriptionhistory.*,
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->{opacnote} =~ s/\n/\<br\/\>/g;
544 $subs->{missinglist} =~ s/\n/\<br\/\>/g;
545 $subs->{recievedlist} =~ s/\n/\<br\/\>/g;
546 $subs->{ "periodicity" . $subs->{periodicity} } = 1;
547 $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
548 $subs->{ "status" . $subs->{'status'} } = 1;
549 $subs->{'cannotedit'}=(C4::Context->preference('IndependantBranches') &&
550 C4::Context->userenv &&
551 C4::Context->userenv->{flags} !=1 &&
552 C4::Context->userenv->{branch} && $subs->{branchcode} &&
553 (C4::Context->userenv->{branch} ne $subs->{branchcode}));
554 if ( $subs->{enddate} eq '0000-00-00' ) {
555 $subs->{enddate} = '';
557 else {
558 $subs->{enddate} = format_date( $subs->{enddate} );
560 $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
561 $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
562 push @res, $subs;
564 return \@res;
567 =head2 GetFullSubscriptionsFromBiblionumber
569 =over 4
571 \@res = GetFullSubscriptionsFromBiblionumber($biblionumber)
572 this function read on serial table.
574 =back
576 =cut
578 sub GetFullSubscriptionsFromBiblionumber {
579 my ($biblionumber) = @_;
580 my $dbh = C4::Context->dbh;
581 my $query = qq|
582 SELECT serial.serialid,
583 serial.serialseq,
584 serial.planneddate,
585 serial.publisheddate,
586 serial.status,
587 serial.notes as notes,
588 year(IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate)) as year,
589 aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,
590 biblio.title as bibliotitle,
591 subscription.branchcode AS branchcode,
592 subscription.subscriptionid AS subscriptionid|;
593 if (C4::Context->preference('IndependantBranches') &&
594 C4::Context->userenv &&
595 C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
596 $query.="
597 , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
600 $query.=qq|
601 FROM serial
602 LEFT JOIN subscription ON
603 (serial.subscriptionid=subscription.subscriptionid)
604 LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
605 LEFT JOIN aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id
606 LEFT JOIN biblio on biblio.biblionumber=subscription.biblionumber
607 WHERE subscription.biblionumber = ?
608 ORDER BY year DESC,
609 IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate) DESC,
610 serial.subscriptionid
612 my $sth = $dbh->prepare($query);
613 $sth->execute($biblionumber);
614 my $subs= $sth->fetchall_arrayref({});
615 return $subs;
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 # warn "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 $sth = $dbh->prepare($query);
659 $sth->execute( $ISSN );
661 else {
662 if ($ISSN) {
663 my $query = qq(
664 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
665 FROM subscription
666 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
667 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
668 WHERE biblioitems.issn LIKE ?
670 $query.=" ORDER BY title";
671 # warn "query :$query";
672 $sth = $dbh->prepare($query);
673 $sth->execute( "%" . $ISSN . "%" );
675 else {
676 my $query = qq(
677 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
678 FROM subscription
679 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
680 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
681 WHERE 1
682 ).($title?" and ":""). join('and ',map{"biblio.title LIKE \"%$_%\""} split (" ",$title) );
684 $query.=" ORDER BY title";
685 # warn $query;
686 $sth = $dbh->prepare($query);
687 $sth->execute;
691 my @results;
692 my $previoustitle = "";
693 my $odd = 1;
694 while ( my $line = $sth->fetchrow_hashref ) {
695 if ( $previoustitle eq $line->{title} ) {
696 $line->{title} = "";
697 $line->{issn} = "";
698 $line->{toggle} = 1 if $odd == 1;
700 else {
701 $previoustitle = $line->{title};
702 $odd = -$odd;
703 $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 =back
726 =cut
728 sub GetSerials {
729 my ($subscriptionid,$count) = @_;
730 my $dbh = C4::Context->dbh;
732 # status = 2 is "arrived"
733 my $counter = 0;
734 $count=5 unless ($count);
735 my @serials;
736 my $query =
737 "SELECT serialid,serialseq, status, publisheddate, planneddate,notes, routingnotes
738 FROM serial
739 WHERE subscriptionid = ? AND status NOT IN (2,4,5)
740 ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC";
741 my $sth = $dbh->prepare($query);
742 $sth->execute($subscriptionid);
743 while ( my $line = $sth->fetchrow_hashref ) {
744 $line->{ "status" . $line->{status} } =
745 1; # fills a "statusX" value, used for template status select list
746 $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
747 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
748 push @serials, $line;
750 # OK, now add the last 5 issues arrives/missing
751 $query =
752 "SELECT serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
753 FROM serial
754 WHERE subscriptionid = ?
755 AND (status in (2,4,5))
756 ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC
758 $sth = $dbh->prepare($query);
759 $sth->execute($subscriptionid);
760 while ( ( my $line = $sth->fetchrow_hashref ) && $counter < $count ) {
761 $counter++;
762 $line->{ "status" . $line->{status} } =
763 1; # fills a "statusX" value, used for template status select list
764 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
765 $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
766 push @serials, $line;
769 $query = "SELECT count(*) FROM serial WHERE subscriptionid=?";
770 $sth = $dbh->prepare($query);
771 $sth->execute($subscriptionid);
772 my ($totalissues) = $sth->fetchrow;
773 return ( $totalissues, @serials );
776 =head2 GetSerials2
778 =over 4
780 ($totalissues,@serials) = GetSerials2($subscriptionid,$status);
781 this function get every serial waited for a given subscription
782 as well as the number of issues registered in the database (all types)
783 this number is used to see if a subscription can be deleted (=it must have only 1 issue)
785 =back
787 =cut
788 sub GetSerials2 {
789 my ($subscription,$status) = @_;
790 my $dbh = C4::Context->dbh;
791 my $query = qq|
792 SELECT serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
793 FROM serial
794 WHERE subscriptionid=$subscription AND status IN ($status)
795 ORDER BY publisheddate,serialid DESC
797 # warn $query;
798 my $sth=$dbh->prepare($query);
799 $sth->execute;
800 my @serials;
801 while(my $line = $sth->fetchrow_hashref) {
802 $line->{"status".$line->{status}} = 1; # fills a "statusX" value, used for template status select list
803 $line->{"planneddate"} = format_date($line->{"planneddate"});
804 $line->{"publisheddate"} = format_date($line->{"publisheddate"});
805 push @serials,$line;
807 my ($totalissues) = scalar(@serials);
808 return ($totalissues,@serials);
811 =head2 GetLatestSerials
813 =over 4
815 \@serials = GetLatestSerials($subscriptionid,$limit)
816 get the $limit's latest serials arrived or missing for a given subscription
817 return :
818 a ref to a table which it containts all of the latest serials stored into a hash.
820 =back
822 =cut
824 sub GetLatestSerials {
825 my ( $subscriptionid, $limit ) = @_;
826 my $dbh = C4::Context->dbh;
828 # status = 2 is "arrived"
829 my $strsth = "SELECT serialid,serialseq, status, planneddate, notes
830 FROM serial
831 WHERE subscriptionid = ?
832 AND (status =2 or status=4)
833 ORDER BY planneddate DESC LIMIT 0,$limit
835 my $sth = $dbh->prepare($strsth);
836 $sth->execute($subscriptionid);
837 my @serials;
838 while ( my $line = $sth->fetchrow_hashref ) {
839 $line->{ "status" . $line->{status} } =
840 1; # fills a "statusX" value, used for template status select list
841 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
842 push @serials, $line;
845 # my $query = qq|
846 # SELECT count(*)
847 # FROM serial
848 # WHERE subscriptionid=?
849 # |;
850 # $sth=$dbh->prepare($query);
851 # $sth->execute($subscriptionid);
852 # my ($totalissues) = $sth->fetchrow;
853 return \@serials;
856 =head2 GetDistributedTo
858 =over 4
860 $distributedto=GetDistributedTo($subscriptionid)
861 This function select the old previous value of distributedto in the database.
863 =back
865 =cut
867 sub GetDistributedTo {
868 my $dbh = C4::Context->dbh;
869 my $distributedto;
870 my $subscriptionid = @_;
871 my $query = "SELECT distributedto FROM subscription WHERE subscriptionid=?";
872 my $sth = $dbh->prepare($query);
873 $sth->execute($subscriptionid);
874 return ($distributedto) = $sth->fetchrow;
877 =head2 GetNextSeq
879 =over 4
881 GetNextSeq($val)
882 $val is a hashref containing all the attributes of the table 'subscription'
883 This function get the next issue for the subscription given on input arg
884 return:
885 all the input params updated.
887 =back
889 =cut
891 # sub GetNextSeq {
892 # my ($val) =@_;
893 # my ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
894 # $calculated = $val->{numberingmethod};
895 # # calculate the (expected) value of the next issue recieved.
896 # $newlastvalue1 = $val->{lastvalue1};
897 # # check if we have to increase the new value.
898 # $newinnerloop1 = $val->{innerloop1}+1;
899 # $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
900 # $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
901 # $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
902 # $calculated =~ s/\{X\}/$newlastvalue1/g;
904 # $newlastvalue2 = $val->{lastvalue2};
905 # # check if we have to increase the new value.
906 # $newinnerloop2 = $val->{innerloop2}+1;
907 # $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
908 # $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
909 # $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
910 # $calculated =~ s/\{Y\}/$newlastvalue2/g;
912 # $newlastvalue3 = $val->{lastvalue3};
913 # # check if we have to increase the new value.
914 # $newinnerloop3 = $val->{innerloop3}+1;
915 # $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
916 # $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
917 # $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
918 # $calculated =~ s/\{Z\}/$newlastvalue3/g;
919 # return ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
922 sub GetNextSeq {
923 my ($val) = @_;
924 my (
925 $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3,
926 $newinnerloop1, $newinnerloop2, $newinnerloop3
928 my $pattern = $val->{numberpattern};
929 my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
930 my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
931 $calculated = $val->{numberingmethod};
932 $newlastvalue1 = $val->{lastvalue1};
933 $newlastvalue2 = $val->{lastvalue2};
934 $newlastvalue3 = $val->{lastvalue3};
935 $newlastvalue1 = $val->{lastvalue1};
936 # check if we have to increase the new value.
937 $newinnerloop1 = $val->{innerloop1} + 1;
938 $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
939 $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
940 $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
941 $calculated =~ s/\{X\}/$newlastvalue1/g;
943 $newlastvalue2 = $val->{lastvalue2};
944 # check if we have to increase the new value.
945 $newinnerloop2 = $val->{innerloop2} + 1;
946 $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
947 $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
948 $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
949 if ( $pattern == 6 ) {
950 if ( $val->{hemisphere} == 2 ) {
951 my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
952 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
954 else {
955 my $newlastvalue2seq = $seasons[$newlastvalue2];
956 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
959 else {
960 $calculated =~ s/\{Y\}/$newlastvalue2/g;
964 $newlastvalue3 = $val->{lastvalue3};
965 # check if we have to increase the new value.
966 $newinnerloop3 = $val->{innerloop3} + 1;
967 $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
968 $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
969 $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
970 $calculated =~ s/\{Z\}/$newlastvalue3/g;
972 return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 ,
973 $newinnerloop1, $newinnerloop2, $newinnerloop3);
976 =head2 GetSeq
978 =over 4
980 $calculated = GetSeq($val)
981 $val is a hashref containing all the attributes of the table 'subscription'
982 this function transforms {X},{Y},{Z} to 150,0,0 for example.
983 return:
984 the sequence in integer format
986 =back
988 =cut
990 sub GetSeq {
991 my ($val) = @_;
992 my $pattern = $val->{numberpattern};
993 my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
994 my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
995 my $calculated = $val->{numberingmethod};
996 my $x = $val->{'lastvalue1'};
997 $calculated =~ s/\{X\}/$x/g;
998 my $newlastvalue2 = $val->{'lastvalue2'};
999 if ( $pattern == 6 ) {
1000 if ( $val->{hemisphere} == 2 ) {
1001 my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
1002 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1004 else {
1005 my $newlastvalue2seq = $seasons[$newlastvalue2];
1006 $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1009 else {
1010 $calculated =~ s/\{Y\}/$newlastvalue2/g;
1012 my $z = $val->{'lastvalue3'};
1013 $calculated =~ s/\{Z\}/$z/g;
1014 return $calculated;
1017 =head2 GetExpirationDate
1019 $sensddate = GetExpirationDate($subscriptionid)
1021 this function return the expiration date for a subscription given on input args.
1023 return
1024 the enddate
1026 =cut
1028 sub GetExpirationDate {
1029 my ($subscriptionid) = @_;
1030 my $dbh = C4::Context->dbh;
1031 my $subscription = GetSubscription($subscriptionid);
1032 my $enddate = $subscription->{startdate};
1034 # we don't do the same test if the subscription is based on X numbers or on X weeks/months
1035 if (($subscription->{periodicity} % 16) >0){
1036 if ( $subscription->{numberlength} ) {
1037 #calculate the date of the last issue.
1038 my $length = $subscription->{numberlength};
1039 for ( my $i = 1 ; $i <= $length ; $i++ ) {
1040 $enddate = GetNextDate( $enddate, $subscription );
1043 elsif ( $subscription->{monthlength} ){
1044 my @date=split (/-/,$subscription->{startdate});
1045 my @enddate = Add_Delta_YM($date[0],$date[1],$date[2],0,$subscription->{monthlength});
1046 $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1047 } elsif ( $subscription->{weeklength} ){
1048 my @date=split (/-/,$subscription->{startdate});
1049 my @enddate = Add_Delta_Days($date[0],$date[1],$date[2],$subscription->{weeklength}*7);
1050 $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1052 return $enddate;
1053 } else {
1054 return 0;
1058 =head2 CountSubscriptionFromBiblionumber
1060 =over 4
1062 $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber)
1063 this count the number of subscription for a biblionumber given.
1064 return :
1065 the number of subscriptions with biblionumber given on input arg.
1067 =back
1069 =cut
1071 sub CountSubscriptionFromBiblionumber {
1072 my ($biblionumber) = @_;
1073 my $dbh = C4::Context->dbh;
1074 my $query = "SELECT count(*) FROM subscription WHERE biblionumber=?";
1075 my $sth = $dbh->prepare($query);
1076 $sth->execute($biblionumber);
1077 my $subscriptionsnumber = $sth->fetchrow;
1078 return $subscriptionsnumber;
1081 =head2 ModSubscriptionHistory
1083 =over 4
1085 ModSubscriptionHistory($subscriptionid,$histstartdate,$enddate,$recievedlist,$missinglist,$opacnote,$librariannote);
1087 this function modify the history of a subscription. Put your new values on input arg.
1089 =back
1091 =cut
1093 sub ModSubscriptionHistory {
1094 my (
1095 $subscriptionid, $histstartdate, $enddate, $recievedlist,
1096 $missinglist, $opacnote, $librariannote
1097 ) = @_;
1098 my $dbh = C4::Context->dbh;
1099 my $query = "UPDATE subscriptionhistory
1100 SET histstartdate=?,enddate=?,recievedlist=?,missinglist=?,opacnote=?,librariannote=?
1101 WHERE subscriptionid=?
1103 my $sth = $dbh->prepare($query);
1104 $recievedlist =~ s/^,//g;
1105 $missinglist =~ s/^,//g;
1106 $opacnote =~ s/^,//g;
1107 $sth->execute(
1108 $histstartdate, $enddate, $recievedlist, $missinglist,
1109 $opacnote, $librariannote, $subscriptionid
1111 return $sth->rows;
1114 =head2 ModSerialStatus
1116 =over 4
1118 ModSerialStatus($serialid,$serialseq, $planneddate,$publisheddate,$status,$notes)
1120 This function modify the serial status. Serial status is a number.(eg 2 is "arrived")
1121 Note : if we change from "waited" to something else,then we will have to create a new "waited" entry
1123 =back
1125 =cut
1127 sub ModSerialStatus {
1128 my ( $serialid, $serialseq, $planneddate,$publisheddate, $status, $notes )
1129 = @_;
1131 #It is a usual serial
1132 # 1st, get previous status :
1133 my $dbh = C4::Context->dbh;
1134 my $query = "SELECT subscriptionid,status FROM serial WHERE serialid=?";
1135 my $sth = $dbh->prepare($query);
1136 $sth->execute($serialid);
1137 my ( $subscriptionid, $oldstatus ) = $sth->fetchrow;
1139 # change status & update subscriptionhistory
1140 my $val;
1141 if ( $status eq 6 ) {
1142 DelIssue( {'serialid'=>$serialid, 'subscriptionid'=>$subscriptionid,'serialseq'=>$serialseq} );
1144 else {
1145 my $query =
1146 "UPDATE serial SET serialseq=?,publisheddate=?,planneddate=?,status=?,notes=? WHERE serialid = ?";
1147 $sth = $dbh->prepare($query);
1148 $sth->execute( $serialseq, $publisheddate, $planneddate, $status,
1149 $notes, $serialid );
1150 $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1151 $sth = $dbh->prepare($query);
1152 $sth->execute($subscriptionid);
1153 my $val = $sth->fetchrow_hashref;
1154 unless ( $val->{manualhistory} ) {
1155 $query =
1156 "SELECT missinglist,recievedlist FROM subscriptionhistory WHERE subscriptionid=?";
1157 $sth = $dbh->prepare($query);
1158 $sth->execute($subscriptionid);
1159 my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1160 if ( $status eq 2 ) {
1162 # warn "receivedlist : $recievedlist serialseq :$serialseq, ".index("$recievedlist","$serialseq");
1163 $recievedlist .= ",$serialseq"
1164 unless ( index( "$recievedlist", "$serialseq" ) >= 0 );
1167 # warn "missinglist : $missinglist serialseq :$serialseq, ".index("$missinglist","$serialseq");
1168 $missinglist .= ",$serialseq"
1169 if ( $status eq 4
1170 and not index( "$missinglist", "$serialseq" ) >= 0 );
1171 $missinglist .= ",not issued $serialseq"
1172 if ( $status eq 5
1173 and index( "$missinglist", "$serialseq" ) >= 0 );
1174 $query =
1175 "UPDATE subscriptionhistory SET recievedlist=?, missinglist=? WHERE subscriptionid=?";
1176 $sth = $dbh->prepare($query);
1177 $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1181 # create new waited entry if needed (ie : was a "waited" and has changed)
1182 if ( $oldstatus eq 1 && $status ne 1 ) {
1183 my $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1184 $sth = $dbh->prepare($query);
1185 $sth->execute($subscriptionid);
1186 my $val = $sth->fetchrow_hashref;
1188 # next issue number
1189 # warn "Next Seq";
1190 my (
1191 $newserialseq, $newlastvalue1, $newlastvalue2, $newlastvalue3,
1192 $newinnerloop1, $newinnerloop2, $newinnerloop3
1193 ) = GetNextSeq($val);
1194 # warn "Next Seq End";
1196 # next date (calculated from actual date & frequency parameters)
1197 # warn "publisheddate :$publisheddate ";
1198 my $nextpublisheddate = GetNextDate( $publisheddate, $val );
1199 NewIssue( $newserialseq, $subscriptionid, $val->{'biblionumber'},
1200 1, $nextpublisheddate, $nextpublisheddate );
1201 $query =
1202 "UPDATE subscription SET lastvalue1=?, lastvalue2=?, lastvalue3=?, innerloop1=?, innerloop2=?, innerloop3=?
1203 WHERE subscriptionid = ?";
1204 $sth = $dbh->prepare($query);
1205 $sth->execute(
1206 $newlastvalue1, $newlastvalue2, $newlastvalue3, $newinnerloop1,
1207 $newinnerloop2, $newinnerloop3, $subscriptionid
1210 # check if an alert must be sent... (= a letter is defined & status became "arrived"
1211 if ( $val->{letter} && $status eq 2 && $oldstatus ne 2 ) {
1212 SendAlerts( 'issue', $val->{subscriptionid}, $val->{letter} );
1217 =head2 ModSubscription
1219 =over 4
1221 this function modify a subscription. Put all new values on input args.
1223 =back
1225 =cut
1227 sub ModSubscription {
1228 my (
1229 $auser, $branchcode, $aqbooksellerid, $cost,
1230 $aqbudgetid, $startdate, $periodicity, $firstacquidate,
1231 $dow, $irregularity, $numberpattern, $numberlength,
1232 $weeklength, $monthlength, $add1, $every1,
1233 $whenmorethan1, $setto1, $lastvalue1, $innerloop1,
1234 $add2, $every2, $whenmorethan2, $setto2,
1235 $lastvalue2, $innerloop2, $add3, $every3,
1236 $whenmorethan3, $setto3, $lastvalue3, $innerloop3,
1237 $numberingmethod, $status, $biblionumber, $callnumber,
1238 $notes, $letter, $hemisphere, $manualhistory,
1239 $internalnotes,
1240 $subscriptionid
1241 ) = @_;
1242 # warn $irregularity;
1243 my $dbh = C4::Context->dbh;
1244 my $query = "UPDATE subscription
1245 SET librarian=?, branchcode=?,aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
1246 periodicity=?,firstacquidate=?,dow=?,irregularity=?, numberpattern=?, numberlength=?,weeklength=?,monthlength=?,
1247 add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
1248 add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
1249 add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
1250 numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, letter=?, hemisphere=?,manualhistory=?,internalnotes=?
1251 WHERE subscriptionid = ?";
1252 # warn "query :".$query;
1253 my $sth = $dbh->prepare($query);
1254 $sth->execute(
1255 $auser, $branchcode, $aqbooksellerid, $cost,
1256 $aqbudgetid, $startdate, $periodicity, $firstacquidate,
1257 $dow, "$irregularity", $numberpattern, $numberlength,
1258 $weeklength, $monthlength, $add1, $every1,
1259 $whenmorethan1, $setto1, $lastvalue1, $innerloop1,
1260 $add2, $every2, $whenmorethan2, $setto2,
1261 $lastvalue2, $innerloop2, $add3, $every3,
1262 $whenmorethan3, $setto3, $lastvalue3, $innerloop3,
1263 $numberingmethod, $status, $biblionumber, $callnumber,
1264 $notes, $letter, $hemisphere, ($manualhistory?$manualhistory:0),
1265 $internalnotes,
1266 $subscriptionid
1268 my $rows=$sth->rows;
1269 $sth->finish;
1271 &logaction(C4::Context->userenv->{'number'},"SERIAL","MODIFY",$subscriptionid,"")
1272 if C4::Context->preference("SubscriptionLog");
1273 return $rows;
1276 =head2 NewSubscription
1278 =over 4
1280 $subscriptionid = &NewSubscription($auser,branchcode,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
1281 $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength,
1282 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
1283 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
1284 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
1285 $numberingmethod, $status, $notes)
1287 Create a new subscription with value given on input args.
1289 return :
1290 the id of this new subscription
1292 =back
1294 =cut
1296 sub NewSubscription {
1297 my (
1298 $auser, $branchcode, $aqbooksellerid, $cost,
1299 $aqbudgetid, $biblionumber, $startdate, $periodicity,
1300 $dow, $numberlength, $weeklength, $monthlength,
1301 $add1, $every1, $whenmorethan1, $setto1,
1302 $lastvalue1, $innerloop1, $add2, $every2,
1303 $whenmorethan2, $setto2, $lastvalue2, $innerloop2,
1304 $add3, $every3, $whenmorethan3, $setto3,
1305 $lastvalue3, $innerloop3, $numberingmethod, $status,
1306 $notes, $letter, $firstacquidate, $irregularity,
1307 $numberpattern, $callnumber, $hemisphere, $manualhistory,
1308 $internalnotes
1309 ) = @_;
1310 my $dbh = C4::Context->dbh;
1312 #save subscription (insert into database)
1313 my $query = qq|
1314 INSERT INTO subscription
1315 (librarian,branchcode,aqbooksellerid,cost,aqbudgetid,biblionumber,
1316 startdate,periodicity,dow,numberlength,weeklength,monthlength,
1317 add1,every1,whenmorethan1,setto1,lastvalue1,innerloop1,
1318 add2,every2,whenmorethan2,setto2,lastvalue2,innerloop2,
1319 add3,every3,whenmorethan3,setto3,lastvalue3,innerloop3,
1320 numberingmethod, status, notes, letter,firstacquidate,irregularity,
1321 numberpattern, callnumber, hemisphere,manualhistory,internalnotes)
1322 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
1324 my $sth = $dbh->prepare($query);
1325 $sth->execute(
1326 $auser, $branchcode,
1327 $aqbooksellerid, $cost,
1328 $aqbudgetid, $biblionumber,
1329 format_date_in_iso($startdate), $periodicity,
1330 $dow, $numberlength,
1331 $weeklength, $monthlength,
1332 $add1, $every1,
1333 $whenmorethan1, $setto1,
1334 $lastvalue1, $innerloop1,
1335 $add2, $every2,
1336 $whenmorethan2, $setto2,
1337 $lastvalue2, $innerloop2,
1338 $add3, $every3,
1339 $whenmorethan3, $setto3,
1340 $lastvalue3, $innerloop3,
1341 $numberingmethod, "$status",
1342 $notes, $letter,
1343 format_date_in_iso($firstacquidate), $irregularity,
1344 $numberpattern, $callnumber,
1345 $hemisphere, $manualhistory,
1346 $internalnotes
1349 #then create the 1st waited number
1350 my $subscriptionid = $dbh->{'mysql_insertid'};
1351 $query = qq(
1352 INSERT INTO subscriptionhistory
1353 (biblionumber, subscriptionid, histstartdate, opacnote, librariannote)
1354 VALUES (?,?,?,?,?,?,?,?)
1356 $sth = $dbh->prepare($query);
1357 $sth->execute( $biblionumber, $subscriptionid,
1358 format_date_in_iso($startdate),
1359 $notes,$internalnotes );
1361 # reread subscription to get a hash (for calculation of the 1st issue number)
1362 $query = qq(
1363 SELECT *
1364 FROM subscription
1365 WHERE subscriptionid = ?
1367 $sth = $dbh->prepare($query);
1368 $sth->execute($subscriptionid);
1369 my $val = $sth->fetchrow_hashref;
1371 # calculate issue number
1372 my $serialseq = GetSeq($val);
1373 $query = qq|
1374 INSERT INTO serial
1375 (serialseq,subscriptionid,biblionumber,status, planneddate, publisheddate)
1376 VALUES (?,?,?,?,?,?)
1378 $sth = $dbh->prepare($query);
1379 $sth->execute(
1380 "$serialseq", $subscriptionid, $biblionumber, 1,
1381 format_date_in_iso($startdate),
1382 format_date_in_iso($startdate)
1385 &logaction(C4::Context->userenv->{'number'},"SERIAL","ADD",$subscriptionid,"")
1386 if C4::Context->preference("SubscriptionLog");
1388 #set serial flag on biblio if not already set.
1389 my ($null, ($bib)) = GetBiblio($biblionumber);
1390 if( ! $bib->{'serial'} ) {
1391 my $record = GetMarcBiblio($biblionumber);
1392 my ($tag,$subf) = GetMarcFromKohaField('biblio.serial',$bib->{'frameworkcode'});
1393 if($tag) {
1394 $record->field($tag)->update( $subf => 1 );
1396 ModBiblio($record,$biblionumber,$bib->{'frameworkcode'});
1398 return $subscriptionid;
1401 =head2 ReNewSubscription
1403 =over 4
1405 ReNewSubscription($subscriptionid,$user,$startdate,$numberlength,$weeklength,$monthlength,$note)
1407 this function renew a subscription with values given on input args.
1409 =back
1411 =cut
1413 sub ReNewSubscription {
1414 my ( $subscriptionid, $user, $startdate, $numberlength, $weeklength,
1415 $monthlength, $note )
1416 = @_;
1417 my $dbh = C4::Context->dbh;
1418 my $subscription = GetSubscription($subscriptionid);
1419 my $query = qq|
1420 SELECT *
1421 FROM biblio
1422 LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber
1423 WHERE biblio.biblionumber=?
1425 my $sth = $dbh->prepare($query);
1426 $sth->execute( $subscription->{biblionumber} );
1427 my $biblio = $sth->fetchrow_hashref;
1428 NewSuggestion(
1429 $user, $subscription->{bibliotitle},
1430 $biblio->{author}, $biblio->{publishercode},
1431 $biblio->{note}, '',
1432 '', '',
1433 '', '',
1434 $subscription->{biblionumber}
1437 # renew subscription
1438 $query = qq|
1439 UPDATE subscription
1440 SET startdate=?,numberlength=?,weeklength=?,monthlength=?
1441 WHERE subscriptionid=?
1443 $sth = $dbh->prepare($query);
1444 $sth->execute( format_date_in_iso($startdate),
1445 $numberlength, $weeklength, $monthlength, $subscriptionid );
1447 &logaction(C4::Context->userenv->{'number'},"SERIAL","RENEW",$subscriptionid,"")
1448 if C4::Context->preference("SubscriptionLog");
1451 =head2 NewIssue
1453 =over 4
1455 NewIssue($serialseq,$subscriptionid,$biblionumber,$status, $planneddate, $publisheddate, $notes)
1457 Create a new issue stored on the database.
1458 Note : we have to update the recievedlist and missinglist on subscriptionhistory for this subscription.
1460 =back
1462 =cut
1464 sub NewIssue {
1465 my ( $serialseq, $subscriptionid, $biblionumber, $status,
1466 $planneddate, $publisheddate, $notes )
1467 = @_;
1468 ### FIXME biblionumber CAN be provided by subscriptionid. So Do we STILL NEED IT ?
1470 my $dbh = C4::Context->dbh;
1471 my $query = qq|
1472 INSERT INTO serial
1473 (serialseq,subscriptionid,biblionumber,status,publisheddate,planneddate,notes)
1474 VALUES (?,?,?,?,?,?,?)
1476 my $sth = $dbh->prepare($query);
1477 $sth->execute( $serialseq, $subscriptionid, $biblionumber, $status,
1478 $publisheddate, $planneddate,$notes );
1479 my $serialid=$dbh->{'mysql_insertid'};
1480 $query = qq|
1481 SELECT missinglist,recievedlist
1482 FROM subscriptionhistory
1483 WHERE subscriptionid=?
1485 $sth = $dbh->prepare($query);
1486 $sth->execute($subscriptionid);
1487 my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1489 if ( $status eq 2 ) {
1490 ### TODO Add a feature that improves recognition and description.
1491 ### As such count (serialseq) i.e. : N18,2(N19),N20
1492 ### Would use substr and index But be careful to previous presence of ()
1493 $recievedlist .= ",$serialseq" unless (index($recievedlist,$serialseq)>0);
1495 if ( $status eq 4 ) {
1496 $missinglist .= ",$serialseq" unless (index($missinglist,$serialseq)>0);
1498 $query = qq|
1499 UPDATE subscriptionhistory
1500 SET recievedlist=?, missinglist=?
1501 WHERE subscriptionid=?
1503 $sth = $dbh->prepare($query);
1504 $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1505 return $serialid;
1508 =head2 ItemizeSerials
1510 =over 4
1512 ItemizeSerials($serialid, $info);
1513 $info is a hashref containing barcode branch, itemcallnumber, status, location
1514 $serialid the serialid
1515 return :
1516 1 if the itemize is a succes.
1517 0 and @error else. @error containts the list of errors found.
1519 =back
1521 =cut
1523 sub ItemizeSerials {
1524 my ( $serialid, $info ) = @_;
1525 my $now = POSIX::strftime( "%Y-%m-%d",localtime );
1527 my $dbh = C4::Context->dbh;
1528 my $query = qq|
1529 SELECT *
1530 FROM serial
1531 WHERE serialid=?
1533 my $sth = $dbh->prepare($query);
1534 $sth->execute($serialid);
1535 my $data = $sth->fetchrow_hashref;
1536 if ( C4::Context->preference("RoutingSerials") ) {
1538 # check for existing biblioitem relating to serial issue
1539 my ( $count, @results ) =
1540 GetBiblioItemByBiblioNumber( $data->{'biblionumber'} );
1541 my $bibitemno = 0;
1542 for ( my $i = 0 ; $i < $count ; $i++ ) {
1543 if ( $results[$i]->{'volumeddesc'} eq $data->{'serialseq'} . ' ('
1544 . $data->{'planneddate'}
1545 . ')' )
1547 $bibitemno = $results[$i]->{'biblioitemnumber'};
1548 last;
1551 if ( $bibitemno == 0 ) {
1553 # warn "need to add new biblioitem so copy last one and make minor changes";
1554 my $sth =
1555 $dbh->prepare(
1556 "SELECT * FROM biblioitems WHERE biblionumber = ? ORDER BY biblioitemnumber DESC"
1558 $sth->execute( $data->{'biblionumber'} );
1559 my $biblioitem = $sth->fetchrow_hashref;
1560 $biblioitem->{'volumedate'} =
1561 format_date_in_iso( $data->{planneddate} );
1562 $biblioitem->{'volumeddesc'} =
1563 $data->{serialseq} . ' ('
1564 . format_date( $data->{'planneddate'} ) . ')';
1565 $biblioitem->{'dewey'} = $info->{itemcallnumber};
1567 #FIXME HDL : I don't understand why you need to call newbiblioitem, as the biblioitem should already be somewhere.
1568 # so I comment it, we can speak of it when you want
1569 # newbiblioitems has been removed from Biblio.pm, as it has a deprecated API now
1570 # if ( $info->{barcode} )
1571 # { # only make biblioitem if we are going to make item also
1572 # $bibitemno = newbiblioitem($biblioitem);
1577 my $fwk = GetFrameworkCode( $data->{'biblionumber'} );
1578 if ( $info->{barcode} ) {
1579 my @errors;
1580 my $exists = itemdata( $info->{'barcode'} );
1581 push @errors, "barcode_not_unique" if ($exists);
1582 unless ($exists) {
1583 my $marcrecord = MARC::Record->new();
1584 my ( $tag, $subfield ) =
1585 GetMarcFromKohaField( "items.barcode", $fwk );
1586 my $newField =
1587 MARC::Field->new( "$tag", '', '',
1588 "$subfield" => $info->{barcode} );
1589 $marcrecord->insert_fields_ordered($newField);
1590 if ( $info->{branch} ) {
1591 my ( $tag, $subfield ) =
1592 GetMarcFromKohaField( "items.homebranch",
1593 $fwk );
1595 #warn "items.homebranch : $tag , $subfield";
1596 if ( $marcrecord->field($tag) ) {
1597 $marcrecord->field($tag)
1598 ->add_subfields( "$subfield" => $info->{branch} );
1600 else {
1601 my $newField =
1602 MARC::Field->new( "$tag", '', '',
1603 "$subfield" => $info->{branch} );
1604 $marcrecord->insert_fields_ordered($newField);
1606 ( $tag, $subfield ) =
1607 GetMarcFromKohaField( "items.holdingbranch",
1608 $fwk );
1610 #warn "items.holdingbranch : $tag , $subfield";
1611 if ( $marcrecord->field($tag) ) {
1612 $marcrecord->field($tag)
1613 ->add_subfields( "$subfield" => $info->{branch} );
1615 else {
1616 my $newField =
1617 MARC::Field->new( "$tag", '', '',
1618 "$subfield" => $info->{branch} );
1619 $marcrecord->insert_fields_ordered($newField);
1622 if ( $info->{itemcallnumber} ) {
1623 my ( $tag, $subfield ) =
1624 GetMarcFromKohaField( "items.itemcallnumber",
1625 $fwk );
1627 #warn "items.itemcallnumber : $tag , $subfield";
1628 if ( $marcrecord->field($tag) ) {
1629 $marcrecord->field($tag)
1630 ->add_subfields( "$subfield" => $info->{itemcallnumber} );
1632 else {
1633 my $newField =
1634 MARC::Field->new( "$tag", '', '',
1635 "$subfield" => $info->{itemcallnumber} );
1636 $marcrecord->insert_fields_ordered($newField);
1639 if ( $info->{notes} ) {
1640 my ( $tag, $subfield ) =
1641 GetMarcFromKohaField( "items.itemnotes", $fwk );
1643 # warn "items.itemnotes : $tag , $subfield";
1644 if ( $marcrecord->field($tag) ) {
1645 $marcrecord->field($tag)
1646 ->add_subfields( "$subfield" => $info->{notes} );
1648 else {
1649 my $newField =
1650 MARC::Field->new( "$tag", '', '',
1651 "$subfield" => $info->{notes} );
1652 $marcrecord->insert_fields_ordered($newField);
1655 if ( $info->{location} ) {
1656 my ( $tag, $subfield ) =
1657 GetMarcFromKohaField( "items.location", $fwk );
1659 # warn "items.location : $tag , $subfield";
1660 if ( $marcrecord->field($tag) ) {
1661 $marcrecord->field($tag)
1662 ->add_subfields( "$subfield" => $info->{location} );
1664 else {
1665 my $newField =
1666 MARC::Field->new( "$tag", '', '',
1667 "$subfield" => $info->{location} );
1668 $marcrecord->insert_fields_ordered($newField);
1671 if ( $info->{status} ) {
1672 my ( $tag, $subfield ) =
1673 GetMarcFromKohaField( "items.notforloan",
1674 $fwk );
1676 # warn "items.notforloan : $tag , $subfield";
1677 if ( $marcrecord->field($tag) ) {
1678 $marcrecord->field($tag)
1679 ->add_subfields( "$subfield" => $info->{status} );
1681 else {
1682 my $newField =
1683 MARC::Field->new( "$tag", '', '',
1684 "$subfield" => $info->{status} );
1685 $marcrecord->insert_fields_ordered($newField);
1688 if ( C4::Context->preference("RoutingSerials") ) {
1689 my ( $tag, $subfield ) =
1690 GetMarcFromKohaField( "items.dateaccessioned",
1691 $fwk );
1692 if ( $marcrecord->field($tag) ) {
1693 $marcrecord->field($tag)
1694 ->add_subfields( "$subfield" => $now );
1696 else {
1697 my $newField =
1698 MARC::Field->new( "$tag", '', '', "$subfield" => $now );
1699 $marcrecord->insert_fields_ordered($newField);
1702 AddItemFromMarc( $marcrecord, $data->{'biblionumber'} );
1703 return 1;
1705 return ( 0, @errors );
1709 =head2 HasSubscriptionExpired
1711 =over 4
1713 1 or 0 = HasSubscriptionExpired($subscriptionid)
1715 the subscription has expired when the next issue to arrive is out of subscription limit.
1717 return :
1718 1 if true, 0 if false.
1720 =back
1722 =cut
1724 sub HasSubscriptionExpired {
1725 my ($subscriptionid) = @_;
1726 my $dbh = C4::Context->dbh;
1727 my $subscription = GetSubscription($subscriptionid);
1728 if (($subscription->{periodicity} % 16)>0){
1729 my $expirationdate = GetExpirationDate($subscriptionid);
1730 my $query = qq|
1731 SELECT max(planneddate)
1732 FROM serial
1733 WHERE subscriptionid=?
1735 my $sth = $dbh->prepare($query);
1736 $sth->execute($subscriptionid);
1737 my ($res) = $sth->fetchrow ;
1738 my @res=split (/-/,$res);
1739 # warn "date expiration :$expirationdate";
1740 my @endofsubscriptiondate=split(/-/,$expirationdate);
1741 return 1 if ( (@endofsubscriptiondate && Delta_Days($res[0],$res[1],$res[2],
1742 $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) <= 0)
1743 || (!$res));
1744 return 0;
1745 } else {
1746 if ($subscription->{'numberlength'}){
1747 my $countreceived=countissuesfrom($subscriptionid,$subscription->{'startdate'});
1748 return 1 if ($countreceived >$subscription->{'numberlentgh'});
1749 return 0;
1750 } else {
1751 return 0;
1754 return 0;
1757 =head2 SetDistributedto
1759 =over 4
1761 SetDistributedto($distributedto,$subscriptionid);
1762 This function update the value of distributedto for a subscription given on input arg.
1764 =back
1766 =cut
1768 sub SetDistributedto {
1769 my ( $distributedto, $subscriptionid ) = @_;
1770 my $dbh = C4::Context->dbh;
1771 my $query = qq|
1772 UPDATE subscription
1773 SET distributedto=?
1774 WHERE subscriptionid=?
1776 my $sth = $dbh->prepare($query);
1777 $sth->execute( $distributedto, $subscriptionid );
1780 =head2 DelSubscription
1782 =over 4
1784 DelSubscription($subscriptionid)
1785 this function delete the subscription which has $subscriptionid as id.
1787 =back
1789 =cut
1791 sub DelSubscription {
1792 my ($subscriptionid) = @_;
1793 my $dbh = C4::Context->dbh;
1794 $subscriptionid = $dbh->quote($subscriptionid);
1795 $dbh->do("DELETE FROM subscription WHERE subscriptionid=$subscriptionid");
1796 $dbh->do(
1797 "DELETE FROM subscriptionhistory WHERE subscriptionid=$subscriptionid");
1798 $dbh->do("DELETE FROM serial WHERE subscriptionid=$subscriptionid");
1800 &logaction(C4::Context->userenv->{'number'},"SERIAL","DELETE",$subscriptionid,"")
1801 if C4::Context->preference("SubscriptionLog");
1804 =head2 DelIssue
1806 =over 4
1808 DelIssue($serialseq,$subscriptionid)
1809 this function delete an issue which has $serialseq and $subscriptionid given on input arg.
1811 =back
1813 =cut
1815 sub DelIssue {
1816 my ( $dataissue) = @_;
1817 my $dbh = C4::Context->dbh;
1818 ### TODO Add itemdeletion. Would need to get itemnumbers. Should be in a pref ?
1820 my $query = qq|
1821 DELETE FROM serial
1822 WHERE serialid= ?
1823 AND subscriptionid= ?
1825 my $mainsth = $dbh->prepare($query);
1826 $mainsth->execute( $dataissue->{'serialid'}, $dataissue->{'subscriptionid'});
1828 #Delete element from subscription history
1829 $query = "SELECT * FROM subscription WHERE subscriptionid = ?";
1830 my $sth = $dbh->prepare($query);
1831 $sth->execute($dataissue->{'subscriptionid'});
1832 my $val = $sth->fetchrow_hashref;
1833 unless ( $val->{manualhistory} ) {
1834 my $query = qq|
1835 SELECT * FROM subscriptionhistory
1836 WHERE subscriptionid= ?
1838 my $sth = $dbh->prepare($query);
1839 $sth->execute($dataissue->{'subscriptionid'});
1840 my $data = $sth->fetchrow_hashref;
1841 my $serialseq= $dataissue->{'serialseq'};
1842 $data->{'missinglist'} =~ s/\b$serialseq\b//;
1843 $data->{'recievedlist'} =~ s/\b$serialseq\b//;
1844 my $strsth = "UPDATE subscriptionhistory SET "
1845 . join( ",",
1846 map { join( "=", $_, $dbh->quote( $data->{$_} ) ) } keys %$data )
1847 . " WHERE subscriptionid=?";
1848 $sth = $dbh->prepare($strsth);
1849 $sth->execute($dataissue->{'subscriptionid'});
1852 return $mainsth->rows;
1855 =head2 GetLateOrMissingIssues
1857 =over 4
1859 ($count,@issuelist) = &GetLateMissingIssues($supplierid,$serialid)
1861 this function select missing issues on database - where serial.status = 4 or serial.status=3 or planneddate<now
1863 return :
1864 a count of the number of missing issues
1865 the issuelist into a table. Each line of this table containts a ref to a hash which it containts
1866 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
1868 =back
1870 =cut
1872 sub GetLateOrMissingIssues {
1873 my ( $supplierid, $serialid,$order ) = @_;
1874 my $dbh = C4::Context->dbh;
1875 my $sth;
1876 my $byserial = '';
1877 if ($serialid) {
1878 $byserial = "and serialid = " . $serialid;
1880 if ($order){
1881 $order.=", title";
1882 } else {
1883 $order="title";
1885 if ($supplierid) {
1886 $sth = $dbh->prepare(
1887 "SELECT
1888 serialid,
1889 aqbooksellerid,
1890 name,
1891 biblio.title,
1892 planneddate,
1893 serialseq,
1894 serial.status,
1895 serial.subscriptionid,
1896 claimdate
1897 FROM serial
1898 LEFT JOIN subscription ON serial.subscriptionid=subscription.subscriptionid
1899 LEFT JOIN biblio ON subscription.biblionumber=biblio.biblionumber
1900 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
1901 WHERE subscription.subscriptionid = serial.subscriptionid
1902 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1903 AND subscription.aqbooksellerid=$supplierid
1904 $byserial
1905 ORDER BY $order"
1908 else {
1909 $sth = $dbh->prepare(
1910 "SELECT
1911 serialid,
1912 aqbooksellerid,
1913 name,
1914 biblio.title,
1915 planneddate,
1916 serialseq,
1917 serial.status,
1918 serial.subscriptionid,
1919 claimdate
1920 FROM serial
1921 LEFT JOIN subscription
1922 ON serial.subscriptionid=subscription.subscriptionid
1923 LEFT JOIN biblio
1924 ON subscription.biblionumber=biblio.biblionumber
1925 LEFT JOIN aqbooksellers
1926 ON subscription.aqbooksellerid = aqbooksellers.id
1927 WHERE
1928 subscription.subscriptionid = serial.subscriptionid
1929 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1930 $byserial
1931 ORDER BY $order"
1934 $sth->execute;
1935 my @issuelist;
1936 my $last_title;
1937 my $odd = 0;
1938 my $count = 0;
1939 while ( my $line = $sth->fetchrow_hashref ) {
1940 $odd++ unless $line->{title} eq $last_title;
1941 $last_title = $line->{title} if ( $line->{title} );
1942 $line->{planneddate} = format_date( $line->{planneddate} );
1943 $line->{claimdate} = format_date( $line->{claimdate} );
1944 $line->{"status".$line->{status}} = 1;
1945 $line->{'odd'} = 1 if $odd % 2;
1946 $count++;
1947 push @issuelist, $line;
1949 return $count, @issuelist;
1952 =head2 removeMissingIssue
1954 =over 4
1956 removeMissingIssue($subscriptionid)
1958 this function removes an issue from being part of the missing string in
1959 subscriptionlist.missinglist column
1961 called when a missing issue is found from the serials-recieve.pl file
1963 =back
1965 =cut
1967 sub removeMissingIssue {
1968 my ( $sequence, $subscriptionid ) = @_;
1969 my $dbh = C4::Context->dbh;
1970 my $sth =
1971 $dbh->prepare(
1972 "SELECT * FROM subscriptionhistory WHERE subscriptionid = ?");
1973 $sth->execute($subscriptionid);
1974 my $data = $sth->fetchrow_hashref;
1975 my $missinglist = $data->{'missinglist'};
1976 my $missinglistbefore = $missinglist;
1978 # warn $missinglist." before";
1979 $missinglist =~ s/($sequence)//;
1981 # warn $missinglist." after";
1982 if ( $missinglist ne $missinglistbefore ) {
1983 $missinglist =~ s/\|\s\|/\|/g;
1984 $missinglist =~ s/^\| //g;
1985 $missinglist =~ s/\|$//g;
1986 my $sth2 = $dbh->prepare(
1987 "UPDATE subscriptionhistory
1988 SET missinglist = ?
1989 WHERE subscriptionid = ?"
1991 $sth2->execute( $missinglist, $subscriptionid );
1995 =head2 updateClaim
1997 =over 4
1999 &updateClaim($serialid)
2001 this function updates the time when a claim is issued for late/missing items
2003 called from claims.pl file
2005 =back
2007 =cut
2009 sub updateClaim {
2010 my ($serialid) = @_;
2011 my $dbh = C4::Context->dbh;
2012 my $sth = $dbh->prepare(
2013 "UPDATE serial SET claimdate = now()
2014 WHERE serialid = ?
2017 $sth->execute($serialid);
2020 =head2 getsupplierbyserialid
2022 =over 4
2024 ($result) = &getsupplierbyserialid($serialid)
2026 this function is used to find the supplier id given a serial id
2028 return :
2029 hashref containing serialid, subscriptionid, and aqbooksellerid
2031 =back
2033 =cut
2035 sub getsupplierbyserialid {
2036 my ($serialid) = @_;
2037 my $dbh = C4::Context->dbh;
2038 my $sth = $dbh->prepare(
2039 "SELECT serialid, serial.subscriptionid, aqbooksellerid
2040 FROM serial
2041 LEFT JOIN subscription ON serial.subscriptionid = subscription.subscriptionid
2042 WHERE serialid = ?
2045 $sth->execute($serialid);
2046 my $line = $sth->fetchrow_hashref;
2047 my $result = $line->{'aqbooksellerid'};
2048 return $result;
2051 =head2 check_routing
2053 =over 4
2055 ($result) = &check_routing($subscriptionid)
2057 this function checks to see if a serial has a routing list and returns the count of routingid
2058 used to show either an 'add' or 'edit' link
2059 =back
2061 =cut
2063 sub check_routing {
2064 my ($subscriptionid) = @_;
2065 my $dbh = C4::Context->dbh;
2066 my $sth = $dbh->prepare(
2067 "SELECT count(routingid) routingids FROM subscription LEFT JOIN subscriptionroutinglist
2068 ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2069 WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2072 $sth->execute($subscriptionid);
2073 my $line = $sth->fetchrow_hashref;
2074 my $result = $line->{'routingids'};
2075 return $result;
2078 =head2 addroutingmember
2080 =over 4
2082 &addroutingmember($borrowernumber,$subscriptionid)
2084 this function takes a borrowernumber and subscriptionid and add the member to the
2085 routing list for that serial subscription and gives them a rank on the list
2086 of either 1 or highest current rank + 1
2088 =back
2090 =cut
2092 sub addroutingmember {
2093 my ( $borrowernumber, $subscriptionid ) = @_;
2094 my $rank;
2095 my $dbh = C4::Context->dbh;
2096 my $sth =
2097 $dbh->prepare(
2098 "SELECT max(ranking) rank FROM subscriptionroutinglist WHERE subscriptionid = ?"
2100 $sth->execute($subscriptionid);
2101 while ( my $line = $sth->fetchrow_hashref ) {
2102 if ( $line->{'rank'} > 0 ) {
2103 $rank = $line->{'rank'} + 1;
2105 else {
2106 $rank = 1;
2109 $sth =
2110 $dbh->prepare(
2111 "INSERT INTO subscriptionroutinglist (subscriptionid,borrowernumber,ranking) VALUES (?,?,?)"
2113 $sth->execute( $subscriptionid, $borrowernumber, $rank );
2116 =head2 reorder_members
2118 =over 4
2120 &reorder_members($subscriptionid,$routingid,$rank)
2122 this function is used to reorder the routing list
2124 it takes the routingid of the member one wants to re-rank and the rank it is to move to
2125 - it gets all members on list puts their routingid's into an array
2126 - removes the one in the array that is $routingid
2127 - then reinjects $routingid at point indicated by $rank
2128 - then update the database with the routingids in the new order
2130 =back
2132 =cut
2134 sub reorder_members {
2135 my ( $subscriptionid, $routingid, $rank ) = @_;
2136 my $dbh = C4::Context->dbh;
2137 my $sth =
2138 $dbh->prepare(
2139 "SELECT * FROM subscriptionroutinglist WHERE subscriptionid = ? ORDER BY ranking ASC"
2141 $sth->execute($subscriptionid);
2142 my @result;
2143 while ( my $line = $sth->fetchrow_hashref ) {
2144 push( @result, $line->{'routingid'} );
2147 # To find the matching index
2148 my $i;
2149 my $key = -1; # to allow for 0 being a valid response
2150 for ( $i = 0 ; $i < @result ; $i++ ) {
2151 if ( $routingid == $result[$i] ) {
2152 $key = $i; # save the index
2153 last;
2157 # if index exists in array then move it to new position
2158 if ( $key > -1 && $rank > 0 ) {
2159 my $new_rank = $rank -
2160 1; # $new_rank is what you want the new index to be in the array
2161 my $moving_item = splice( @result, $key, 1 );
2162 splice( @result, $new_rank, 0, $moving_item );
2164 for ( my $j = 0 ; $j < @result ; $j++ ) {
2165 my $sth =
2166 $dbh->prepare( "UPDATE subscriptionroutinglist SET ranking = '"
2167 . ( $j + 1 )
2168 . "' WHERE routingid = '"
2169 . $result[$j]
2170 . "'" );
2171 $sth->execute;
2175 =head2 delroutingmember
2177 =over 4
2179 &delroutingmember($routingid,$subscriptionid)
2181 this function either deletes one member from routing list if $routingid exists otherwise
2182 deletes all members from the routing list
2184 =back
2186 =cut
2188 sub delroutingmember {
2190 # if $routingid exists then deletes that row otherwise deletes all with $subscriptionid
2191 my ( $routingid, $subscriptionid ) = @_;
2192 my $dbh = C4::Context->dbh;
2193 if ($routingid) {
2194 my $sth =
2195 $dbh->prepare(
2196 "DELETE FROM subscriptionroutinglist WHERE routingid = ?");
2197 $sth->execute($routingid);
2198 reorder_members( $subscriptionid, $routingid );
2200 else {
2201 my $sth =
2202 $dbh->prepare(
2203 "DELETE FROM subscriptionroutinglist WHERE subscriptionid = ?");
2204 $sth->execute($subscriptionid);
2208 =head2 getroutinglist
2210 =over 4
2212 ($count,@routinglist) = &getroutinglist($subscriptionid)
2214 this gets the info from the subscriptionroutinglist for $subscriptionid
2216 return :
2217 a count of the number of members on routinglist
2218 the routinglist into a table. Each line of this table containts a ref to a hash which containts
2219 routingid - a unique id, borrowernumber, ranking, and biblionumber of subscription
2221 =back
2223 =cut
2225 sub getroutinglist {
2226 my ($subscriptionid) = @_;
2227 my $dbh = C4::Context->dbh;
2228 my $sth = $dbh->prepare(
2229 "SELECT routingid, borrowernumber,
2230 ranking, biblionumber
2231 FROM subscription
2232 LEFT JOIN subscriptionroutinglist ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2233 WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2236 $sth->execute($subscriptionid);
2237 my @routinglist;
2238 my $count = 0;
2239 while ( my $line = $sth->fetchrow_hashref ) {
2240 $count++;
2241 push( @routinglist, $line );
2243 return ( $count, @routinglist );
2246 =head2 countissuesfrom
2248 =over 4
2250 $result = &countissuesfrom($subscriptionid,$startdate)
2253 =back
2255 =cut
2257 sub countissuesfrom {
2258 my ($subscriptionid,$startdate) = @_;
2259 my $dbh = C4::Context->dbh;
2260 my $query = qq|
2261 SELECT count(*)
2262 FROM serial
2263 WHERE subscriptionid=?
2264 AND serial.publisheddate>?
2266 my $sth=$dbh->prepare($query);
2267 $sth->execute($subscriptionid, $startdate);
2268 my ($countreceived)=$sth->fetchrow;
2269 return $countreceived;
2272 =head2 abouttoexpire
2274 =over 4
2276 $result = &abouttoexpire($subscriptionid)
2278 this function alerts you to the penultimate issue for a serial subscription
2280 returns 1 - if this is the penultimate issue
2281 returns 0 - if not
2283 =back
2285 =cut
2287 sub abouttoexpire {
2288 my ($subscriptionid) = @_;
2289 my $dbh = C4::Context->dbh;
2290 my $subscription = GetSubscription($subscriptionid);
2291 my $per = $subscription->{'periodicity'};
2292 if ($per % 16>0){
2293 my $expirationdate = GetExpirationDate($subscriptionid);
2294 my $sth =
2295 $dbh->prepare(
2296 "select max(planneddate) from serial where subscriptionid=?");
2297 $sth->execute($subscriptionid);
2298 my ($res) = $sth->fetchrow ;
2299 # warn "date expiration : ".$expirationdate." date courante ".$res;
2300 my @res=split /-/,$res;
2301 @res=Date::Calc::Today if ($res[0]*$res[1]==0);
2302 my @endofsubscriptiondate=split/-/,$expirationdate;
2303 my $x;
2304 if ( $per == 1 ) {$x=7;}
2305 if ( $per == 2 ) {$x=7; }
2306 if ( $per == 3 ) {$x=14;}
2307 if ( $per == 4 ) { $x = 21; }
2308 if ( $per == 5 ) { $x = 31; }
2309 if ( $per == 6 ) { $x = 62; }
2310 if ( $per == 7 || $per == 8 ) { $x = 93; }
2311 if ( $per == 9 ) { $x = 190; }
2312 if ( $per == 10 ) { $x = 365; }
2313 if ( $per == 11 ) { $x = 730; }
2314 my @datebeforeend=Add_Delta_Days( $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2],
2315 - (3 * $x)) if (@endofsubscriptiondate && $endofsubscriptiondate[0]*$endofsubscriptiondate[1]*$endofsubscriptiondate[2]);
2316 # warn "DATE BEFORE END: $datebeforeend";
2317 return 1 if ( @res &&
2318 (@datebeforeend &&
2319 Delta_Days($res[0],$res[1],$res[2],
2320 $datebeforeend[0],$datebeforeend[1],$datebeforeend[2]) <= 0) &&
2321 (@endofsubscriptiondate &&
2322 Delta_Days($res[0],$res[1],$res[2],
2323 $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) >= 0) );
2324 return 0;
2325 } elsif ($subscription->{numberlength}>0) {
2326 return (countissuesfrom($subscriptionid,$subscription->{'startdate'}) >=$subscription->{numberlength}-1);
2327 } else {return 0}
2330 =head2 old_newsubscription
2332 =over 4
2334 ($subscriptionid) = &old_newsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2335 $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2336 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2337 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2338 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2339 $numberingmethod, $status, $callnumber, $notes, $hemisphere)
2341 this function is similar to the NewSubscription subroutine but has a few different
2342 values passed in
2343 $firstacquidate - date of first serial issue to arrive
2344 $irregularity - the issues not expected separated by a '|'
2345 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2346 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the
2347 subscription-add.tmpl file
2348 $callnumber - display the callnumber of the serial
2349 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2351 return :
2352 the $subscriptionid number of the new subscription
2354 =back
2356 =cut
2358 sub old_newsubscription {
2359 my (
2360 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2361 $biblionumber, $startdate, $periodicity, $firstacquidate,
2362 $dow, $irregularity, $numberpattern, $numberlength,
2363 $weeklength, $monthlength, $add1, $every1,
2364 $whenmorethan1, $setto1, $lastvalue1, $add2,
2365 $every2, $whenmorethan2, $setto2, $lastvalue2,
2366 $add3, $every3, $whenmorethan3, $setto3,
2367 $lastvalue3, $numberingmethod, $status, $callnumber,
2368 $notes, $hemisphere
2369 ) = @_;
2370 my $dbh = C4::Context->dbh;
2372 #save subscription
2373 my $sth = $dbh->prepare(
2374 "insert into subscription (librarian,aqbooksellerid,cost,aqbudgetid,biblionumber,
2375 startdate,periodicity,firstacquidate,dow,irregularity,numberpattern,numberlength,weeklength,monthlength,
2376 add1,every1,whenmorethan1,setto1,lastvalue1,
2377 add2,every2,whenmorethan2,setto2,lastvalue2,
2378 add3,every3,whenmorethan3,setto3,lastvalue3,
2379 numberingmethod, status, callnumber, notes, hemisphere) values
2380 (?,?,?,?,?,?,?,?,?,?,?,
2381 ?,?,?,?,?,?,?,?,?,?,?,
2382 ?,?,?,?,?,?,?,?,?,?,?,?)"
2384 $sth->execute(
2385 $auser, $aqbooksellerid,
2386 $cost, $aqbudgetid,
2387 $biblionumber, format_date_in_iso($startdate),
2388 $periodicity, format_date_in_iso($firstacquidate),
2389 $dow, $irregularity,
2390 $numberpattern, $numberlength,
2391 $weeklength, $monthlength,
2392 $add1, $every1,
2393 $whenmorethan1, $setto1,
2394 $lastvalue1, $add2,
2395 $every2, $whenmorethan2,
2396 $setto2, $lastvalue2,
2397 $add3, $every3,
2398 $whenmorethan3, $setto3,
2399 $lastvalue3, $numberingmethod,
2400 $status, $callnumber,
2401 $notes, $hemisphere
2404 #then create the 1st waited number
2405 my $subscriptionid = $dbh->{'mysql_insertid'};
2406 my $enddate = GetExpirationDate($subscriptionid);
2408 $sth =
2409 $dbh->prepare(
2410 "insert into subscriptionhistory (biblionumber, subscriptionid, histstartdate, enddate, missinglist, recievedlist, opacnote, librariannote) values (?,?,?,?,?,?,?,?)"
2412 $sth->execute(
2413 $biblionumber, $subscriptionid,
2414 format_date_in_iso($startdate),
2415 format_date_in_iso($enddate),
2416 "", "", "", $notes
2419 # reread subscription to get a hash (for calculation of the 1st issue number)
2420 $sth =
2421 $dbh->prepare("select * from subscription where subscriptionid = ? ");
2422 $sth->execute($subscriptionid);
2423 my $val = $sth->fetchrow_hashref;
2425 # calculate issue number
2426 my $serialseq = GetSeq($val);
2427 $sth =
2428 $dbh->prepare(
2429 "insert into serial (serialseq,subscriptionid,biblionumber,status, planneddate) values (?,?,?,?,?)"
2431 $sth->execute( $serialseq, $subscriptionid, $val->{'biblionumber'},
2432 1, format_date_in_iso($startdate) );
2433 return $subscriptionid;
2436 =head2 old_modsubscription
2438 =over 4
2440 ($subscriptionid) = &old_modsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2441 $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2442 $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2443 $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2444 $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2445 $numberingmethod, $status, $callnumber, $notes, $hemisphere, $subscriptionid)
2447 this function is similar to the ModSubscription subroutine but has a few different
2448 values passed in
2449 $firstacquidate - date of first serial issue to arrive
2450 $irregularity - the issues not expected separated by a '|'
2451 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2452 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the
2453 subscription-add.tmpl file
2454 $callnumber - display the callnumber of the serial
2455 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2457 =back
2459 =cut
2461 sub old_modsubscription {
2462 my (
2463 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2464 $startdate, $periodicity, $firstacquidate, $dow,
2465 $irregularity, $numberpattern, $numberlength, $weeklength,
2466 $monthlength, $add1, $every1, $whenmorethan1,
2467 $setto1, $lastvalue1, $innerloop1, $add2,
2468 $every2, $whenmorethan2, $setto2, $lastvalue2,
2469 $innerloop2, $add3, $every3, $whenmorethan3,
2470 $setto3, $lastvalue3, $innerloop3, $numberingmethod,
2471 $status, $biblionumber, $callnumber, $notes,
2472 $hemisphere, $subscriptionid
2473 ) = @_;
2474 my $dbh = C4::Context->dbh;
2475 my $sth = $dbh->prepare(
2476 "update subscription set librarian=?, aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
2477 periodicity=?,firstacquidate=?,dow=?,irregularity=?,numberpattern=?,numberlength=?,weeklength=?,monthlength=?,
2478 add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
2479 add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
2480 add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
2481 numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, hemisphere=? where subscriptionid = ?"
2483 $sth->execute(
2484 $auser, $aqbooksellerid, $cost, $aqbudgetid,
2485 $startdate, $periodicity, $firstacquidate, $dow,
2486 $irregularity, $numberpattern, $numberlength, $weeklength,
2487 $monthlength, $add1, $every1, $whenmorethan1,
2488 $setto1, $lastvalue1, $innerloop1, $add2,
2489 $every2, $whenmorethan2, $setto2, $lastvalue2,
2490 $innerloop2, $add3, $every3, $whenmorethan3,
2491 $setto3, $lastvalue3, $innerloop3, $numberingmethod,
2492 $status, $biblionumber, $callnumber, $notes,
2493 $hemisphere, $subscriptionid
2495 $sth->finish;
2497 $sth =
2498 $dbh->prepare("select * from subscription where subscriptionid = ? ");
2499 $sth->execute($subscriptionid);
2500 my $val = $sth->fetchrow_hashref;
2502 # calculate issue number
2503 my $serialseq = Get_Seq($val);
2504 $sth =
2505 $dbh->prepare("UPDATE serial SET serialseq = ? WHERE subscriptionid = ?");
2506 $sth->execute( $serialseq, $subscriptionid );
2508 my $enddate = subscriptionexpirationdate($subscriptionid);
2509 $sth = $dbh->prepare("update subscriptionhistory set enddate=?");
2510 $sth->execute( format_date_in_iso($enddate) );
2513 =head2 old_getserials
2515 =over 4
2517 ($totalissues,@serials) = &old_getserials($subscriptionid)
2519 this function get a hashref of serials and the total count of them
2521 return :
2522 $totalissues - number of serial lines
2523 the serials into a table. Each line of this table containts a ref to a hash which it containts
2524 serialid, serialseq, status,planneddate,notes,routingnotes from tables : serial where status is not 2, 4, or 5
2526 =back
2528 =cut
2530 sub old_getserials {
2531 my ($subscriptionid) = @_;
2532 my $dbh = C4::Context->dbh;
2534 # status = 2 is "arrived"
2535 my $sth =
2536 $dbh->prepare(
2537 "select serialid,serialseq, status, planneddate,notes,routingnotes from serial where subscriptionid = ? and status <>2 and status <>4 and status <>5"
2539 $sth->execute($subscriptionid);
2540 my @serials;
2541 my $num = 1;
2542 while ( my $line = $sth->fetchrow_hashref ) {
2543 $line->{ "status" . $line->{status} } =
2544 1; # fills a "statusX" value, used for template status select list
2545 $line->{"planneddate"} = format_date( $line->{"planneddate"} );
2546 $line->{"num"} = $num;
2547 $num++;
2548 push @serials, $line;
2550 $sth = $dbh->prepare("select count(*) from serial where subscriptionid=?");
2551 $sth->execute($subscriptionid);
2552 my ($totalissues) = $sth->fetchrow;
2553 return ( $totalissues, @serials );
2556 =head2 GetNextDate
2558 ($resultdate) = &GetNextDate($planneddate,$subscription)
2560 this function is an extension of GetNextDate which allows for checking for irregularity
2562 it takes the planneddate and will return the next issue's date and will skip dates if there
2563 exists an irregularity
2564 - eg if periodicity is monthly and $planneddate is 2007-02-10 but if March and April is to be
2565 skipped then the returned date will be 2007-05-10
2567 return :
2568 $resultdate - then next date in the sequence
2570 Return 0 if periodicity==0
2572 =cut
2573 sub in_array { # used in next sub down
2574 my ($val,@elements) = @_;
2575 foreach my $elem(@elements) {
2576 if($val == $elem) {
2577 return 1;
2580 return 0;
2583 sub GetNextDate(@) {
2584 my ( $planneddate, $subscription ) = @_;
2585 my @irreg = split( /\,/, $subscription->{irregularity} );
2587 #date supposed to be in ISO.
2589 my ( $year, $month, $day ) = split(/-/, $planneddate);
2590 $month=1 unless ($month);
2591 $day=1 unless ($day);
2592 my @resultdate;
2594 # warn "DOW $dayofweek";
2595 if ( $subscription->{periodicity} % 16 == 0 ) {
2596 return 0;
2598 if ( $subscription->{periodicity} == 1 ) {
2599 my $dayofweek = eval{Day_of_Week( $year,$month, $day )};
2600 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2601 else {
2602 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2603 $dayofweek = 0 if ( $dayofweek == 7 );
2604 if ( in_array( ($dayofweek + 1), @irreg ) ) {
2605 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 1 );
2606 $dayofweek++;
2609 @resultdate = Add_Delta_Days($year,$month, $day , 1 );
2612 if ( $subscription->{periodicity} == 2 ) {
2613 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2614 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2615 else {
2616 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2617 if ( $irreg[$i] == (($wkno!=51)?($wkno +1) % 52 :52)) {
2618 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 7 );
2619 $wkno=(($wkno!=51)?($wkno +1) % 52 :52);
2622 @resultdate = Add_Delta_Days( $year,$month, $day, 7);
2625 if ( $subscription->{periodicity} == 3 ) {
2626 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2627 if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2628 else {
2629 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2630 if ( $irreg[$i] == (($wkno!=50)?($wkno +2) % 52 :52)) {
2631 ### BUGFIX was previously +1 ^
2632 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 14 );
2633 $wkno=(($wkno!=50)?($wkno +2) % 52 :52);
2636 @resultdate = Add_Delta_Days($year,$month, $day , 14 );
2639 if ( $subscription->{periodicity} == 4 ) {
2640 my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2641 if ($@){warn "année mois jour : $year $month $day $subscription->{subscriptionid} : $@";}
2642 else {
2643 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2644 if ( $irreg[$i] == (($wkno!=49)?($wkno +3) % 52 :52)) {
2645 ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 21 );
2646 $wkno=(($wkno!=49)?($wkno +3) % 52 :52);
2649 @resultdate = Add_Delta_Days($year,$month, $day , 21 );
2652 my $tmpmonth=$month;
2653 if ($year && $month && $day){
2654 if ( $subscription->{periodicity} == 5 ) {
2655 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2656 if ( $irreg[$i] == (($tmpmonth!=11)?($tmpmonth +1) % 12 :12)) {
2657 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2658 $tmpmonth=(($tmpmonth!=11)?($tmpmonth +1) % 12 :12);
2661 @resultdate = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2663 if ( $subscription->{periodicity} == 6 ) {
2664 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2665 if ( $irreg[$i] == (($tmpmonth!=10)?($tmpmonth +2) % 12 :12)) {
2666 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,2,0 );
2667 $tmpmonth=(($tmpmonth!=10)?($tmpmonth + 2) % 12 :12);
2670 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 2,0 );
2672 if ( $subscription->{periodicity} == 7 ) {
2673 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2674 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2675 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2676 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2679 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2681 if ( $subscription->{periodicity} == 8 ) {
2682 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2683 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2684 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2685 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2688 @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2690 if ( $subscription->{periodicity} == 9 ) {
2691 for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2692 if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2693 ### BUFIX Seems to need more Than One ?
2694 ($year,$month,$day) = Add_Delta_YM($year,$month, $day, 0, 6 );
2695 $tmpmonth=(($tmpmonth!=6)?($tmpmonth + 6) % 12 :12);
2698 @resultdate = Add_Delta_YM($year,$month, $day, 0, 6);
2700 if ( $subscription->{periodicity} == 10 ) {
2701 @resultdate = Add_Delta_YM($year,$month, $day, 1, 0 );
2703 if ( $subscription->{periodicity} == 11 ) {
2704 @resultdate = Add_Delta_YM($year,$month, $day, 2, 0 );
2707 my $resultdate=sprintf("%04d-%02d-%02d",$resultdate[0],$resultdate[1],$resultdate[2]);
2709 # warn "dateNEXTSEQ : ".$resultdate;
2710 return "$resultdate";
2713 =head2 itemdata
2715 $item = &itemdata($barcode);
2717 Looks up the item with the given barcode, and returns a
2718 reference-to-hash containing information about that item. The keys of
2719 the hash are the fields from the C<items> and C<biblioitems> tables in
2720 the Koha database.
2722 =cut
2725 sub itemdata {
2726 my ($barcode) = @_;
2727 my $dbh = C4::Context->dbh;
2728 my $sth = $dbh->prepare(
2729 "Select * from items LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
2730 WHERE barcode=?"
2732 $sth->execute($barcode);
2733 my $data = $sth->fetchrow_hashref;
2734 $sth->finish;
2735 return ($data);
2739 __END__
2741 =back
2743 =head1 AUTHOR
2745 Koha Developement team <info@koha.org>
2747 =cut