refactor C4::Log::logaction
[koha.git] / C4 / Serials.pm
1 package C4::Serials;    #assumes C4/Serials.pm
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
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
33 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
34
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
44     
45     &GetNextSeq         &NewIssue           &ItemizeSerials    &GetSerials
46     &GetLatestSerials   &ModSerialStatus    &GetNextDate       &GetSerials2
47     &ReNewSubscription  &GetLateIssues      &GetLateOrMissingIssues
48     &GetSerialInformation                   &AddItem2Serial
49     &PrepareSerialsData
50     
51     &UpdateClaimdateIssues
52     &GetSuppliersWithLateIssues             &getsupplierbyserialid
53     &GetDistributedTo   &SetDistributedTo
54     &getroutinglist     &delroutingmember   &addroutingmember
55     &reorder_members
56     &check_routing &updateClaim &removeMissingIssue
57     
58     &old_newsubscription &old_modsubscription &old_getserials
59         );
60 }
61
62 =head2 GetSuppliersWithLateIssues
63
64 =head1 NAME
65
66 C4::Serials - Give functions for serializing.
67
68 =head1 SYNOPSIS
69
70   use C4::Serials;
71
72 =head1 DESCRIPTION
73
74 Give all XYZ functions
75
76 =head1 FUNCTIONS
77
78 =over 4
79
80 %supplierlist = &GetSuppliersWithLateIssues
81
82 this function get all suppliers with late issues.
83
84 return :
85 the supplierlist into a hash. this hash containts id & name of the supplier
86
87 =back
88
89 =cut
90
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
101     |;
102     my $sth = $dbh->prepare($query);
103     $sth->execute;
104     my %supplierlist;
105     while ( my ( $id, $name ) = $sth->fetchrow ) {
106         $supplierlist{$id} = $name;
107     }
108     if ( C4::Context->preference("RoutingSerials") ) {
109         $supplierlist{''} = "All Suppliers";
110     }
111     return %supplierlist;
112 }
113
114 =head2 GetLateIssues
115
116 =over 4
117
118 @issuelist = &GetLateIssues($supplierid)
119
120 this function select late issues on database
121
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
125
126 =back
127
128 =cut
129
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
144         |;
145         $sth = $dbh->prepare($query);
146     }
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
156         |;
157         $sth = $dbh->prepare($query);
158     }
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;
171     }
172     return $count, @issuelist;
173 }
174
175 =head2 GetSubscriptionHistoryFromSubscriptionId
176
177 =over 4
178
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).
184
185 =back
186
187 =cut
188
189 sub GetSubscriptionHistoryFromSubscriptionId() {
190     my $dbh   = C4::Context->dbh;
191     my $query = qq|
192         SELECT *
193         FROM   subscriptionhistory
194         WHERE  subscriptionid = ?
195     |;
196     return $dbh->prepare($query);
197 }
198
199 =head2 GetSerialStatusFromSerialId
200
201 =over 4
202
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).
208
209 =back
210
211 =cut
212
213 sub GetSerialStatusFromSerialId() {
214     my $dbh   = C4::Context->dbh;
215     my $query = qq|
216         SELECT status
217         FROM   serial
218         WHERE  serialid = ?
219     |;
220     return $dbh->prepare($query);
221 }
222
223 =head2 GetSerialInformation
224
225 =over 4
226
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
233   
234 =back
235
236 =cut
237
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 ";
248         }
249             $query .= qq|             
250         FROM   serial LEFT JOIN subscription ON subscription.subscriptionid=serial.subscriptionid
251         WHERE  serialid = ?
252     |;
253     my $rq = $dbh->prepare($query);
254     $rq->execute($serialid);
255     my $data = $rq->fetchrow_hashref;
256
257     if ( C4::Context->preference("serialsadditems") ) {
258         if ( $data->{'itemnumber'} ) {
259             my @itemnumbers = split /,/, $data->{'itemnumber'};
260             foreach my $itemnum (@itemnumbers) {
261
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;
272             }
273         }
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;
282         }
283     }
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;
290 }
291
292 =head2 AddItem2Serial
293
294 =over 4
295
296 $data = AddItem2Serial($serialid,$itemnumber);
297 Adds an itemnumber to Serial record
298 =back
299
300 =cut
301
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;
308 }
309
310 =head2 UpdateClaimdateIssues
311
312 =over 4
313
314 UpdateClaimdateIssues($serialids,[$date]);
315
316 Update Claimdate for issues in @$serialids list with date $date 
317 (Take Today if none)
318 =back
319
320 =cut
321
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);
329     ;
330     my $rq = $dbh->prepare($query);
331     $rq->execute;
332     return $rq->rows;
333 }
334
335 =head2 GetSubscription
336
337 =over 4
338
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
344
345 =back
346
347 =cut
348
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 ";
364         }
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 = ?
372     );
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'}."',\"\")";
378 #     }
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;
385 }
386
387 =head2 GetFullSubscription
388
389 =over 4
390
391    \@res = GetFullSubscription($subscriptionid)
392    this function read on serial table.
393
394 =back
395
396 =cut
397
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 ";
418     }
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
430           |;
431 #     warn $query;   
432     my $sth = $dbh->prepare($query);
433     $sth->execute($subscriptionid);
434     my $subs = $sth->fetchall_arrayref({});
435     return $subs;
436 }
437
438
439 =head2 PrepareSerialsData
440
441 =over 4
442
443    \@res = PrepareSerialsData($serialinfomation)
444    where serialinformation is a hashref array
445
446 =back
447
448 =cut
449
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 = "";
461     
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;
469
470 #         $subs->{'notes'} = $subs->{'notes'} eq $previousnote?"":$subs->{notes};
471         if ( $subs->{'year'} && $subs->{'year'} ne "" ) {
472             $year = $subs->{'year'};
473         }
474         else {
475             $year = "manage";
476         }
477         if ( $tmpresults{$year} ) {
478             push @{ $tmpresults{$year}->{'serials'} }, $subs;
479         }
480         else {
481             $tmpresults{$year} = {
482                 'year' => $year,
483
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'},
491             };
492         }
493
494         #         $previousnote=$subs->{notes};
495     }
496     foreach my $key ( sort { $b cmp $a } keys %tmpresults ) {
497         push @res, $tmpresults{$key};
498     }
499     $res[0]->{'first'}=1;  
500     return \@res;
501 }
502
503 =head2 GetSubscriptionsFromBiblionumber
504
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
511
512 =cut
513
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 = ?
531     );
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'}."',\"\")";
536 #     }
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} = '';
556         }
557         else {
558             $subs->{enddate} = format_date( $subs->{enddate} );
559         }
560         $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
561         $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
562         push @res, $subs;
563     }
564     return \@res;
565 }
566
567 =head2 GetFullSubscriptionsFromBiblionumber
568
569 =over 4
570
571    \@res = GetFullSubscriptionsFromBiblionumber($biblionumber)
572    this function read on serial table.
573
574 =back
575
576 =cut
577
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 ";
598      }
599       
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
611           |;
612     my $sth = $dbh->prepare($query);
613     $sth->execute($biblionumber);
614     my $subs= $sth->fetchall_arrayref({});
615     return $subs;
616 }
617
618 =head2 GetSubscriptions
619
620 =over 4
621
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.
626
627 =back
628
629 =cut
630
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=?
643         );
644         $query.=" ORDER BY title";
645 #         warn "query :$query";
646         $sth = $dbh->prepare($query);
647         $sth->execute($biblionumber);
648     }
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 );
660         }
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 ?
669                 );
670                 $query.=" ORDER BY title";
671 #         warn "query :$query";
672                 $sth = $dbh->prepare($query);
673                 $sth->execute( "%" . $ISSN . "%" );
674             }
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) );
683                 
684                 $query.=" ORDER BY title";
685 #                 warn $query;       
686                 $sth = $dbh->prepare($query);
687                 $sth->execute;
688             }
689         }
690     }
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;
699         }
700         else {
701             $previoustitle = $line->{title};
702             $odd           = -$odd;
703             $line->{toggle} = 1 if $odd == 1;
704         }
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;
711     }
712     return @results;
713 }
714
715 =head2 GetSerials
716
717 =over 4
718
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)
723
724 =back
725
726 =cut
727
728 sub GetSerials {
729     my ($subscriptionid,$count) = @_;
730     my $dbh = C4::Context->dbh;
731
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;
749     }
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
757       ";
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;
767     }
768
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 );
774 }
775
776 =head2 GetSerials2
777
778 =over 4
779
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)
784
785 =back
786
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
796                     |;
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;
806     }
807     my ($totalissues) = scalar(@serials);
808     return ($totalissues,@serials);
809 }
810
811 =head2 GetLatestSerials
812
813 =over 4
814
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.
819
820 =back
821
822 =cut
823
824 sub GetLatestSerials {
825     my ( $subscriptionid, $limit ) = @_;
826     my $dbh = C4::Context->dbh;
827
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
834                 ";
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;
843     }
844
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;
854 }
855
856 =head2 GetDistributedTo
857
858 =over 4
859
860 $distributedto=GetDistributedTo($subscriptionid)
861 This function select the old previous value of distributedto in the database.
862
863 =back
864
865 =cut
866
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;
875 }
876
877 =head2 GetNextSeq
878
879 =over 4
880
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.
886
887 =back
888
889 =cut
890
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;
903 #
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;
911 #
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);
920 # }
921
922 sub GetNextSeq {
923     my ($val) = @_;
924     my (
925         $calculated,    $newlastvalue1, $newlastvalue2, $newlastvalue3,
926         $newinnerloop1, $newinnerloop2, $newinnerloop3
927     );
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;
942   
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;
953     }
954     else {
955        my $newlastvalue2seq = $seasons[$newlastvalue2];
956        $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
957     }
958   }
959   else {
960     $calculated =~ s/\{Y\}/$newlastvalue2/g;
961   }
962   
963   
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;
971     
972   return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 ,
973            $newinnerloop1, $newinnerloop2, $newinnerloop3);
974 }
975
976 =head2 GetSeq
977
978 =over 4
979
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
985
986 =back
987
988 =cut
989
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;
1003         }
1004         else {
1005             my $newlastvalue2seq = $seasons[$newlastvalue2];
1006             $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1007         }
1008     }
1009     else {
1010         $calculated =~ s/\{Y\}/$newlastvalue2/g;
1011     }
1012     my $z = $val->{'lastvalue3'};
1013     $calculated =~ s/\{Z\}/$z/g;
1014     return $calculated;
1015 }
1016
1017 =head2 GetExpirationDate
1018
1019 $sensddate = GetExpirationDate($subscriptionid)
1020
1021 this function return the expiration date for a subscription given on input args.
1022
1023 return
1024 the enddate
1025
1026 =cut
1027
1028 sub GetExpirationDate {
1029     my ($subscriptionid) = @_;
1030     my $dbh              = C4::Context->dbh;
1031     my $subscription     = GetSubscription($subscriptionid);
1032     my $enddate          = $subscription->{startdate};
1033
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 );
1041           }
1042       }
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]);
1051       }
1052       return $enddate;
1053     } else {
1054       return 0;  
1055     }  
1056 }
1057
1058 =head2 CountSubscriptionFromBiblionumber
1059
1060 =over 4
1061
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.
1066
1067 =back
1068
1069 =cut
1070
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;
1079 }
1080
1081 =head2 ModSubscriptionHistory
1082
1083 =over 4
1084
1085 ModSubscriptionHistory($subscriptionid,$histstartdate,$enddate,$recievedlist,$missinglist,$opacnote,$librariannote);
1086
1087 this function modify the history of a subscription. Put your new values on input arg.
1088
1089 =back
1090
1091 =cut
1092
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=?
1102                 ";
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
1110     );
1111     return $sth->rows;
1112 }
1113
1114 =head2 ModSerialStatus
1115
1116 =over 4
1117
1118 ModSerialStatus($serialid,$serialseq, $planneddate,$publisheddate,$status,$notes)
1119
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
1122
1123 =back
1124
1125 =cut
1126
1127 sub ModSerialStatus {
1128     my ( $serialid, $serialseq,  $planneddate,$publisheddate, $status, $notes )
1129       = @_;
1130
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;
1138
1139     # change status & update subscriptionhistory
1140     my $val;
1141     if ( $status eq 6 ) {
1142         DelIssue( {'serialid'=>$serialid, 'subscriptionid'=>$subscriptionid,'serialseq'=>$serialseq} );
1143     }
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 ) {
1161
1162 #             warn "receivedlist : $recievedlist serialseq :$serialseq, ".index("$recievedlist","$serialseq");
1163                 $recievedlist .= ",$serialseq"
1164                   unless ( index( "$recievedlist", "$serialseq" ) >= 0 );
1165             }
1166
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 );
1178         }
1179     }
1180
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;
1187
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";    
1195
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
1208         );
1209
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} );
1213         }
1214     }
1215 }
1216
1217 =head2 ModSubscription
1218
1219 =over 4
1220
1221 this function modify a subscription. Put all new values on input args.
1222
1223 =back
1224
1225 =cut
1226
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
1267     );
1268     my $rows=$sth->rows;
1269     $sth->finish;
1270     
1271     logaction("SERIAL", "MODIFY", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1272     return $rows;
1273 }
1274
1275 =head2 NewSubscription
1276
1277 =over 4
1278
1279 $subscriptionid = &NewSubscription($auser,branchcode,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
1280     $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength,
1281     $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
1282     $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
1283     $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
1284     $numberingmethod, $status, $notes)
1285
1286 Create a new subscription with value given on input args.
1287
1288 return :
1289 the id of this new subscription
1290
1291 =back
1292
1293 =cut
1294
1295 sub NewSubscription {
1296     my (
1297         $auser,         $branchcode,   $aqbooksellerid,  $cost,
1298         $aqbudgetid,    $biblionumber, $startdate,       $periodicity,
1299         $dow,           $numberlength, $weeklength,      $monthlength,
1300         $add1,          $every1,       $whenmorethan1,   $setto1,
1301         $lastvalue1,    $innerloop1,   $add2,            $every2,
1302         $whenmorethan2, $setto2,       $lastvalue2,      $innerloop2,
1303         $add3,          $every3,       $whenmorethan3,   $setto3,
1304         $lastvalue3,    $innerloop3,   $numberingmethod, $status,
1305         $notes,         $letter,       $firstacquidate,  $irregularity,
1306         $numberpattern, $callnumber,   $hemisphere,      $manualhistory,
1307         $internalnotes
1308     ) = @_;
1309     my $dbh = C4::Context->dbh;
1310
1311     #save subscription (insert into database)
1312     my $query = qq|
1313         INSERT INTO subscription
1314             (librarian,branchcode,aqbooksellerid,cost,aqbudgetid,biblionumber,
1315             startdate,periodicity,dow,numberlength,weeklength,monthlength,
1316             add1,every1,whenmorethan1,setto1,lastvalue1,innerloop1,
1317             add2,every2,whenmorethan2,setto2,lastvalue2,innerloop2,
1318             add3,every3,whenmorethan3,setto3,lastvalue3,innerloop3,
1319             numberingmethod, status, notes, letter,firstacquidate,irregularity,
1320             numberpattern, callnumber, hemisphere,manualhistory,internalnotes)
1321         VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
1322         |;
1323     my $sth = $dbh->prepare($query);
1324     $sth->execute(
1325         $auser,                         $branchcode,
1326         $aqbooksellerid,                $cost,
1327         $aqbudgetid,                    $biblionumber,
1328         format_date_in_iso($startdate), $periodicity,
1329         $dow,                           $numberlength,
1330         $weeklength,                    $monthlength,
1331         $add1,                          $every1,
1332         $whenmorethan1,                 $setto1,
1333         $lastvalue1,                    $innerloop1,
1334         $add2,                          $every2,
1335         $whenmorethan2,                 $setto2,
1336         $lastvalue2,                    $innerloop2,
1337         $add3,                          $every3,
1338         $whenmorethan3,                 $setto3,
1339         $lastvalue3,                    $innerloop3,
1340         $numberingmethod,               "$status",
1341         $notes,                         $letter,
1342         format_date_in_iso($firstacquidate),                $irregularity,
1343         $numberpattern,                 $callnumber,
1344         $hemisphere,                    $manualhistory,
1345         $internalnotes
1346     );
1347
1348     #then create the 1st waited number
1349     my $subscriptionid = $dbh->{'mysql_insertid'};
1350     $query             = qq(
1351         INSERT INTO subscriptionhistory
1352             (biblionumber, subscriptionid, histstartdate,  opacnote, librariannote)
1353         VALUES (?,?,?,?,?,?,?,?)
1354         );
1355     $sth = $dbh->prepare($query);
1356     $sth->execute( $biblionumber, $subscriptionid,
1357         format_date_in_iso($startdate),
1358         $notes,$internalnotes );
1359
1360    # reread subscription to get a hash (for calculation of the 1st issue number)
1361     $query = qq(
1362         SELECT *
1363         FROM   subscription
1364         WHERE  subscriptionid = ?
1365     );
1366     $sth = $dbh->prepare($query);
1367     $sth->execute($subscriptionid);
1368     my $val = $sth->fetchrow_hashref;
1369
1370     # calculate issue number
1371     my $serialseq = GetSeq($val);
1372     $query     = qq|
1373         INSERT INTO serial
1374             (serialseq,subscriptionid,biblionumber,status, planneddate, publisheddate)
1375         VALUES (?,?,?,?,?,?)
1376     |;
1377     $sth = $dbh->prepare($query);
1378     $sth->execute(
1379         "$serialseq", $subscriptionid, $biblionumber, 1,
1380         format_date_in_iso($startdate),
1381         format_date_in_iso($startdate)
1382     );
1383     
1384     logaction("SERIAL", "ADD", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1385     
1386 #set serial flag on biblio if not already set.
1387     my ($null, ($bib)) = GetBiblio($biblionumber);
1388     if( ! $bib->{'serial'} ) {
1389         my $record = GetMarcBiblio($biblionumber);
1390         my ($tag,$subf) = GetMarcFromKohaField('biblio.serial',$bib->{'frameworkcode'});
1391         if($tag) {
1392             $record->field($tag)->update( $subf => 1 );
1393         }
1394         ModBiblio($record,$biblionumber,$bib->{'frameworkcode'});
1395     }    
1396     return $subscriptionid;
1397 }
1398
1399 =head2 ReNewSubscription
1400
1401 =over 4
1402
1403 ReNewSubscription($subscriptionid,$user,$startdate,$numberlength,$weeklength,$monthlength,$note)
1404
1405 this function renew a subscription with values given on input args.
1406
1407 =back
1408
1409 =cut
1410
1411 sub ReNewSubscription {
1412     my ( $subscriptionid, $user, $startdate, $numberlength, $weeklength,
1413         $monthlength, $note )
1414       = @_;
1415     my $dbh          = C4::Context->dbh;
1416     my $subscription = GetSubscription($subscriptionid);
1417      my $query        = qq|
1418          SELECT *
1419          FROM   biblio 
1420          LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber
1421          WHERE    biblio.biblionumber=?
1422      |;
1423      my $sth = $dbh->prepare($query);
1424      $sth->execute( $subscription->{biblionumber} );
1425      my $biblio = $sth->fetchrow_hashref;
1426      NewSuggestion(
1427          $user,             $subscription->{bibliotitle},
1428          $biblio->{author}, $biblio->{publishercode},
1429          $biblio->{note},   '',
1430          '',                '',
1431          '',                '',
1432          $subscription->{biblionumber}
1433      );
1434
1435     # renew subscription
1436     $query = qq|
1437         UPDATE subscription
1438         SET    startdate=?,numberlength=?,weeklength=?,monthlength=?
1439         WHERE  subscriptionid=?
1440     |;
1441     $sth = $dbh->prepare($query);
1442     $sth->execute( format_date_in_iso($startdate),
1443         $numberlength, $weeklength, $monthlength, $subscriptionid );
1444         
1445     logaction("SERIAL", "RENEW", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1446 }
1447
1448 =head2 NewIssue
1449
1450 =over 4
1451
1452 NewIssue($serialseq,$subscriptionid,$biblionumber,$status, $planneddate, $publisheddate,  $notes)
1453
1454 Create a new issue stored on the database.
1455 Note : we have to update the recievedlist and missinglist on subscriptionhistory for this subscription.
1456
1457 =back
1458
1459 =cut
1460
1461 sub NewIssue {
1462     my ( $serialseq, $subscriptionid, $biblionumber, $status, 
1463         $planneddate, $publisheddate, $notes )
1464       = @_;
1465     ### FIXME biblionumber CAN be provided by subscriptionid. So Do we STILL NEED IT ?
1466     
1467     my $dbh   = C4::Context->dbh;
1468     my $query = qq|
1469         INSERT INTO serial
1470             (serialseq,subscriptionid,biblionumber,status,publisheddate,planneddate,notes)
1471         VALUES (?,?,?,?,?,?,?)
1472     |;
1473     my $sth = $dbh->prepare($query);
1474     $sth->execute( $serialseq, $subscriptionid, $biblionumber, $status,
1475         $publisheddate, $planneddate,$notes );
1476     my $serialid=$dbh->{'mysql_insertid'};
1477     $query = qq|
1478         SELECT missinglist,recievedlist
1479         FROM   subscriptionhistory
1480         WHERE  subscriptionid=?
1481     |;
1482     $sth = $dbh->prepare($query);
1483     $sth->execute($subscriptionid);
1484     my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1485
1486     if ( $status eq 2 ) {
1487       ### TODO Add a feature that improves recognition and description.
1488       ### As such count (serialseq) i.e. : N18,2(N19),N20
1489       ### Would use substr and index But be careful to previous presence of ()
1490         $recievedlist .= ",$serialseq" unless (index($recievedlist,$serialseq)>0);
1491     }
1492     if ( $status eq 4 ) {
1493         $missinglist .= ",$serialseq" unless (index($missinglist,$serialseq)>0);
1494     }
1495     $query = qq|
1496         UPDATE subscriptionhistory
1497         SET    recievedlist=?, missinglist=?
1498         WHERE  subscriptionid=?
1499     |;
1500     $sth = $dbh->prepare($query);
1501     $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1502     return $serialid;
1503 }
1504
1505 =head2 ItemizeSerials
1506
1507 =over 4
1508
1509 ItemizeSerials($serialid, $info);
1510 $info is a hashref containing  barcode branch, itemcallnumber, status, location
1511 $serialid the serialid
1512 return :
1513 1 if the itemize is a succes.
1514 0 and @error else. @error containts the list of errors found.
1515
1516 =back
1517
1518 =cut
1519
1520 sub ItemizeSerials {
1521     my ( $serialid, $info ) = @_;
1522     my $now = POSIX::strftime( "%Y-%m-%d",localtime );
1523
1524     my $dbh   = C4::Context->dbh;
1525     my $query = qq|
1526         SELECT *
1527         FROM   serial
1528         WHERE  serialid=?
1529     |;
1530     my $sth = $dbh->prepare($query);
1531     $sth->execute($serialid);
1532     my $data = $sth->fetchrow_hashref;
1533     if ( C4::Context->preference("RoutingSerials") ) {
1534
1535         # check for existing biblioitem relating to serial issue
1536         my ( $count, @results ) =
1537           GetBiblioItemByBiblioNumber( $data->{'biblionumber'} );
1538         my $bibitemno = 0;
1539         for ( my $i = 0 ; $i < $count ; $i++ ) {
1540             if (  $results[$i]->{'volumeddesc'} eq $data->{'serialseq'} . ' ('
1541                 . $data->{'planneddate'}
1542                 . ')' )
1543             {
1544                 $bibitemno = $results[$i]->{'biblioitemnumber'};
1545                 last;
1546             }
1547         }
1548         if ( $bibitemno == 0 ) {
1549
1550     # warn "need to add new biblioitem so copy last one and make minor changes";
1551             my $sth =
1552               $dbh->prepare(
1553 "SELECT * FROM biblioitems WHERE biblionumber = ? ORDER BY biblioitemnumber DESC"
1554               );
1555             $sth->execute( $data->{'biblionumber'} );
1556             my $biblioitem = $sth->fetchrow_hashref;
1557             $biblioitem->{'volumedate'} =
1558               format_date_in_iso( $data->{planneddate} );
1559             $biblioitem->{'volumeddesc'} =
1560               $data->{serialseq} . ' ('
1561               . format_date( $data->{'planneddate'} ) . ')';
1562             $biblioitem->{'dewey'} = $info->{itemcallnumber};
1563
1564             #FIXME  HDL : I don't understand why you need to call newbiblioitem, as the biblioitem should already be somewhere.
1565             # so I comment it, we can speak of it when you want
1566             # newbiblioitems has been removed from Biblio.pm, as it has a deprecated API now
1567 #             if ( $info->{barcode} )
1568 #             {    # only make biblioitem if we are going to make item also
1569 #                 $bibitemno = newbiblioitem($biblioitem);
1570 #             }
1571         }
1572     }
1573
1574     my $fwk = GetFrameworkCode( $data->{'biblionumber'} );
1575     if ( $info->{barcode} ) {
1576         my @errors;
1577         my $exists = itemdata( $info->{'barcode'} );
1578         push @errors, "barcode_not_unique" if ($exists);
1579         unless ($exists) {
1580             my $marcrecord = MARC::Record->new();
1581             my ( $tag, $subfield ) =
1582               GetMarcFromKohaField( "items.barcode", $fwk );
1583             my $newField =
1584               MARC::Field->new( "$tag", '', '',
1585                 "$subfield" => $info->{barcode} );
1586             $marcrecord->insert_fields_ordered($newField);
1587             if ( $info->{branch} ) {
1588                 my ( $tag, $subfield ) =
1589                   GetMarcFromKohaField( "items.homebranch",
1590                     $fwk );
1591
1592                 #warn "items.homebranch : $tag , $subfield";
1593                 if ( $marcrecord->field($tag) ) {
1594                     $marcrecord->field($tag)
1595                       ->add_subfields( "$subfield" => $info->{branch} );
1596                 }
1597                 else {
1598                     my $newField =
1599                       MARC::Field->new( "$tag", '', '',
1600                         "$subfield" => $info->{branch} );
1601                     $marcrecord->insert_fields_ordered($newField);
1602                 }
1603                 ( $tag, $subfield ) =
1604                   GetMarcFromKohaField( "items.holdingbranch",
1605                     $fwk );
1606
1607                 #warn "items.holdingbranch : $tag , $subfield";
1608                 if ( $marcrecord->field($tag) ) {
1609                     $marcrecord->field($tag)
1610                       ->add_subfields( "$subfield" => $info->{branch} );
1611                 }
1612                 else {
1613                     my $newField =
1614                       MARC::Field->new( "$tag", '', '',
1615                         "$subfield" => $info->{branch} );
1616                     $marcrecord->insert_fields_ordered($newField);
1617                 }
1618             }
1619             if ( $info->{itemcallnumber} ) {
1620                 my ( $tag, $subfield ) =
1621                   GetMarcFromKohaField( "items.itemcallnumber",
1622                     $fwk );
1623
1624                 #warn "items.itemcallnumber : $tag , $subfield";
1625                 if ( $marcrecord->field($tag) ) {
1626                     $marcrecord->field($tag)
1627                       ->add_subfields( "$subfield" => $info->{itemcallnumber} );
1628                 }
1629                 else {
1630                     my $newField =
1631                       MARC::Field->new( "$tag", '', '',
1632                         "$subfield" => $info->{itemcallnumber} );
1633                     $marcrecord->insert_fields_ordered($newField);
1634                 }
1635             }
1636             if ( $info->{notes} ) {
1637                 my ( $tag, $subfield ) =
1638                   GetMarcFromKohaField( "items.itemnotes", $fwk );
1639
1640                 # warn "items.itemnotes : $tag , $subfield";
1641                 if ( $marcrecord->field($tag) ) {
1642                     $marcrecord->field($tag)
1643                       ->add_subfields( "$subfield" => $info->{notes} );
1644                 }
1645                 else {
1646                     my $newField =
1647                       MARC::Field->new( "$tag", '', '',
1648                         "$subfield" => $info->{notes} );
1649                     $marcrecord->insert_fields_ordered($newField);
1650                 }
1651             }
1652             if ( $info->{location} ) {
1653                 my ( $tag, $subfield ) =
1654                   GetMarcFromKohaField( "items.location", $fwk );
1655
1656                 # warn "items.location : $tag , $subfield";
1657                 if ( $marcrecord->field($tag) ) {
1658                     $marcrecord->field($tag)
1659                       ->add_subfields( "$subfield" => $info->{location} );
1660                 }
1661                 else {
1662                     my $newField =
1663                       MARC::Field->new( "$tag", '', '',
1664                         "$subfield" => $info->{location} );
1665                     $marcrecord->insert_fields_ordered($newField);
1666                 }
1667             }
1668             if ( $info->{status} ) {
1669                 my ( $tag, $subfield ) =
1670                   GetMarcFromKohaField( "items.notforloan",
1671                     $fwk );
1672
1673                 # warn "items.notforloan : $tag , $subfield";
1674                 if ( $marcrecord->field($tag) ) {
1675                     $marcrecord->field($tag)
1676                       ->add_subfields( "$subfield" => $info->{status} );
1677                 }
1678                 else {
1679                     my $newField =
1680                       MARC::Field->new( "$tag", '', '',
1681                         "$subfield" => $info->{status} );
1682                     $marcrecord->insert_fields_ordered($newField);
1683                 }
1684             }
1685             if ( C4::Context->preference("RoutingSerials") ) {
1686                 my ( $tag, $subfield ) =
1687                   GetMarcFromKohaField( "items.dateaccessioned",
1688                     $fwk );
1689                 if ( $marcrecord->field($tag) ) {
1690                     $marcrecord->field($tag)
1691                       ->add_subfields( "$subfield" => $now );
1692                 }
1693                 else {
1694                     my $newField =
1695                       MARC::Field->new( "$tag", '', '', "$subfield" => $now );
1696                     $marcrecord->insert_fields_ordered($newField);
1697                 }
1698             }
1699             AddItemFromMarc( $marcrecord, $data->{'biblionumber'} );
1700             return 1;
1701         }
1702         return ( 0, @errors );
1703     }
1704 }
1705
1706 =head2 HasSubscriptionExpired
1707
1708 =over 4
1709
1710 1 or 0 = HasSubscriptionExpired($subscriptionid)
1711
1712 the subscription has expired when the next issue to arrive is out of subscription limit.
1713
1714 return :
1715 1 if true, 0 if false.
1716
1717 =back
1718
1719 =cut
1720
1721 sub HasSubscriptionExpired {
1722     my ($subscriptionid) = @_;
1723     my $dbh              = C4::Context->dbh;
1724     my $subscription     = GetSubscription($subscriptionid);
1725     if (($subscription->{periodicity} % 16)>0){
1726       my $expirationdate   = GetExpirationDate($subscriptionid);
1727       my $query = qq|
1728             SELECT max(planneddate)
1729             FROM   serial
1730             WHERE  subscriptionid=?
1731       |;
1732       my $sth = $dbh->prepare($query);
1733       $sth->execute($subscriptionid);
1734       my ($res) = $sth->fetchrow  ;
1735       my @res=split (/-/,$res);
1736 # warn "date expiration :$expirationdate";
1737       my @endofsubscriptiondate=split(/-/,$expirationdate);
1738       return 1 if ( (@endofsubscriptiondate && Delta_Days($res[0],$res[1],$res[2],
1739                   $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) <= 0)
1740                   || (!$res));
1741       return 0;
1742     } else {
1743       if ($subscription->{'numberlength'}){
1744         my $countreceived=countissuesfrom($subscriptionid,$subscription->{'startdate'});
1745         return 1 if ($countreceived >$subscription->{'numberlentgh'});
1746               return 0;
1747       } else {
1748               return 0;
1749       }
1750     }
1751     return 0;
1752 }
1753
1754 =head2 SetDistributedto
1755
1756 =over 4
1757
1758 SetDistributedto($distributedto,$subscriptionid);
1759 This function update the value of distributedto for a subscription given on input arg.
1760
1761 =back
1762
1763 =cut
1764
1765 sub SetDistributedto {
1766     my ( $distributedto, $subscriptionid ) = @_;
1767     my $dbh   = C4::Context->dbh;
1768     my $query = qq|
1769         UPDATE subscription
1770         SET    distributedto=?
1771         WHERE  subscriptionid=?
1772     |;
1773     my $sth = $dbh->prepare($query);
1774     $sth->execute( $distributedto, $subscriptionid );
1775 }
1776
1777 =head2 DelSubscription
1778
1779 =over 4
1780
1781 DelSubscription($subscriptionid)
1782 this function delete the subscription which has $subscriptionid as id.
1783
1784 =back
1785
1786 =cut
1787
1788 sub DelSubscription {
1789     my ($subscriptionid) = @_;
1790     my $dbh = C4::Context->dbh;
1791     $subscriptionid = $dbh->quote($subscriptionid);
1792     $dbh->do("DELETE FROM subscription WHERE subscriptionid=$subscriptionid");
1793     $dbh->do(
1794         "DELETE FROM subscriptionhistory WHERE subscriptionid=$subscriptionid");
1795     $dbh->do("DELETE FROM serial WHERE subscriptionid=$subscriptionid");
1796     
1797     logaction("SERIAL", "DELETE", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1798 }
1799
1800 =head2 DelIssue
1801
1802 =over 4
1803
1804 DelIssue($serialseq,$subscriptionid)
1805 this function delete an issue which has $serialseq and $subscriptionid given on input arg.
1806
1807 =back
1808
1809 =cut
1810
1811 sub DelIssue {
1812     my ( $dataissue) = @_;
1813     my $dbh   = C4::Context->dbh;
1814     ### TODO Add itemdeletion. Would need to get itemnumbers. Should be in a pref ?
1815     
1816     my $query = qq|
1817         DELETE FROM serial
1818         WHERE       serialid= ?
1819         AND         subscriptionid= ?
1820     |;
1821     my $mainsth = $dbh->prepare($query);
1822     $mainsth->execute( $dataissue->{'serialid'}, $dataissue->{'subscriptionid'});
1823
1824     #Delete element from subscription history
1825     $query = "SELECT * FROM   subscription WHERE  subscriptionid = ?";
1826     my $sth   = $dbh->prepare($query);
1827     $sth->execute($dataissue->{'subscriptionid'});
1828     my $val = $sth->fetchrow_hashref;
1829     unless ( $val->{manualhistory} ) {
1830         my $query = qq|
1831           SELECT * FROM subscriptionhistory
1832           WHERE       subscriptionid= ?
1833       |;
1834         my $sth = $dbh->prepare($query);
1835         $sth->execute($dataissue->{'subscriptionid'});
1836         my $data = $sth->fetchrow_hashref;
1837         my $serialseq= $dataissue->{'serialseq'};
1838         $data->{'missinglist'}  =~ s/\b$serialseq\b//;
1839         $data->{'recievedlist'} =~ s/\b$serialseq\b//;
1840         my $strsth = "UPDATE subscriptionhistory SET "
1841           . join( ",",
1842             map { join( "=", $_, $dbh->quote( $data->{$_} ) ) } keys %$data )
1843           . " WHERE subscriptionid=?";
1844         $sth = $dbh->prepare($strsth);
1845         $sth->execute($dataissue->{'subscriptionid'});
1846     }
1847     
1848     return $mainsth->rows;
1849 }
1850
1851 =head2 GetLateOrMissingIssues
1852
1853 =over 4
1854
1855 ($count,@issuelist) = &GetLateMissingIssues($supplierid,$serialid)
1856
1857 this function select missing issues on database - where serial.status = 4 or serial.status=3 or planneddate<now
1858
1859 return :
1860 a count of the number of missing issues
1861 the issuelist into a table. Each line of this table containts a ref to a hash which it containts
1862 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
1863
1864 =back
1865
1866 =cut
1867
1868 sub GetLateOrMissingIssues {
1869     my ( $supplierid, $serialid,$order ) = @_;
1870     my $dbh = C4::Context->dbh;
1871     my $sth;
1872     my $byserial = '';
1873     if ($serialid) {
1874         $byserial = "and serialid = " . $serialid;
1875     }
1876     if ($order){
1877       $order.=", title";
1878     } else {
1879       $order="title";
1880     }
1881     if ($supplierid) {
1882         $sth = $dbh->prepare(
1883 "SELECT
1884    serialid,
1885    aqbooksellerid,
1886    name,
1887    biblio.title,
1888    planneddate,
1889    serialseq,
1890    serial.status,
1891    serial.subscriptionid,
1892    claimdate
1893 FROM      serial 
1894 LEFT JOIN subscription  ON serial.subscriptionid=subscription.subscriptionid 
1895 LEFT JOIN biblio        ON subscription.biblionumber=biblio.biblionumber
1896 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
1897 WHERE subscription.subscriptionid = serial.subscriptionid 
1898 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1899 AND subscription.aqbooksellerid=$supplierid
1900 $byserial
1901 ORDER BY $order"
1902         );
1903     }
1904     else {
1905         $sth = $dbh->prepare(
1906 "SELECT 
1907    serialid,
1908    aqbooksellerid,
1909    name,
1910    biblio.title,
1911    planneddate,
1912    serialseq,
1913    serial.status,
1914    serial.subscriptionid,
1915    claimdate
1916 FROM serial 
1917 LEFT JOIN subscription 
1918 ON serial.subscriptionid=subscription.subscriptionid 
1919 LEFT JOIN biblio 
1920 ON subscription.biblionumber=biblio.biblionumber
1921 LEFT JOIN aqbooksellers 
1922 ON subscription.aqbooksellerid = aqbooksellers.id
1923 WHERE 
1924    subscription.subscriptionid = serial.subscriptionid 
1925 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1926 $byserial
1927 ORDER BY $order"
1928         );
1929     }
1930     $sth->execute;
1931     my @issuelist;
1932     my $last_title;
1933     my $odd   = 0;
1934     my $count = 0;
1935     while ( my $line = $sth->fetchrow_hashref ) {
1936         $odd++ unless $line->{title} eq $last_title;
1937         $last_title = $line->{title} if ( $line->{title} );
1938         $line->{planneddate} = format_date( $line->{planneddate} );
1939         $line->{claimdate}   = format_date( $line->{claimdate} );
1940         $line->{"status".$line->{status}}   = 1;
1941         $line->{'odd'} = 1 if $odd % 2;
1942         $count++;
1943         push @issuelist, $line;
1944     }
1945     return $count, @issuelist;
1946 }
1947
1948 =head2 removeMissingIssue
1949
1950 =over 4
1951
1952 removeMissingIssue($subscriptionid)
1953
1954 this function removes an issue from being part of the missing string in 
1955 subscriptionlist.missinglist column
1956
1957 called when a missing issue is found from the serials-recieve.pl file
1958
1959 =back
1960
1961 =cut
1962
1963 sub removeMissingIssue {
1964     my ( $sequence, $subscriptionid ) = @_;
1965     my $dbh = C4::Context->dbh;
1966     my $sth =
1967       $dbh->prepare(
1968         "SELECT * FROM subscriptionhistory WHERE subscriptionid = ?");
1969     $sth->execute($subscriptionid);
1970     my $data              = $sth->fetchrow_hashref;
1971     my $missinglist       = $data->{'missinglist'};
1972     my $missinglistbefore = $missinglist;
1973
1974     # warn $missinglist." before";
1975     $missinglist =~ s/($sequence)//;
1976
1977     # warn $missinglist." after";
1978     if ( $missinglist ne $missinglistbefore ) {
1979         $missinglist =~ s/\|\s\|/\|/g;
1980         $missinglist =~ s/^\| //g;
1981         $missinglist =~ s/\|$//g;
1982         my $sth2 = $dbh->prepare(
1983             "UPDATE subscriptionhistory
1984                                        SET missinglist = ?
1985                                        WHERE subscriptionid = ?"
1986         );
1987         $sth2->execute( $missinglist, $subscriptionid );
1988     }
1989 }
1990
1991 =head2 updateClaim
1992
1993 =over 4
1994
1995 &updateClaim($serialid)
1996
1997 this function updates the time when a claim is issued for late/missing items
1998
1999 called from claims.pl file
2000
2001 =back
2002
2003 =cut
2004
2005 sub updateClaim {
2006     my ($serialid) = @_;
2007     my $dbh        = C4::Context->dbh;
2008     my $sth        = $dbh->prepare(
2009         "UPDATE serial SET claimdate = now()
2010                                    WHERE serialid = ?
2011                                    "
2012     );
2013     $sth->execute($serialid);
2014 }
2015
2016 =head2 getsupplierbyserialid
2017
2018 =over 4
2019
2020 ($result) = &getsupplierbyserialid($serialid)
2021
2022 this function is used to find the supplier id given a serial id
2023
2024 return :
2025 hashref containing serialid, subscriptionid, and aqbooksellerid
2026
2027 =back
2028
2029 =cut
2030
2031 sub getsupplierbyserialid {
2032     my ($serialid) = @_;
2033     my $dbh        = C4::Context->dbh;
2034     my $sth        = $dbh->prepare(
2035         "SELECT serialid, serial.subscriptionid, aqbooksellerid
2036          FROM serial 
2037          LEFT JOIN subscription ON serial.subscriptionid = subscription.subscriptionid
2038          WHERE serialid = ?
2039                                    "
2040     );
2041     $sth->execute($serialid);
2042     my $line   = $sth->fetchrow_hashref;
2043     my $result = $line->{'aqbooksellerid'};
2044     return $result;
2045 }
2046
2047 =head2 check_routing
2048
2049 =over 4
2050
2051 ($result) = &check_routing($subscriptionid)
2052
2053 this function checks to see if a serial has a routing list and returns the count of routingid
2054 used to show either an 'add' or 'edit' link
2055 =back
2056
2057 =cut
2058
2059 sub check_routing {
2060     my ($subscriptionid) = @_;
2061     my $dbh              = C4::Context->dbh;
2062     my $sth              = $dbh->prepare(
2063 "SELECT count(routingid) routingids FROM subscription LEFT JOIN subscriptionroutinglist 
2064                               ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2065                               WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2066                               "
2067     );
2068     $sth->execute($subscriptionid);
2069     my $line   = $sth->fetchrow_hashref;
2070     my $result = $line->{'routingids'};
2071     return $result;
2072 }
2073
2074 =head2 addroutingmember
2075
2076 =over 4
2077
2078 &addroutingmember($borrowernumber,$subscriptionid)
2079
2080 this function takes a borrowernumber and subscriptionid and add the member to the
2081 routing list for that serial subscription and gives them a rank on the list
2082 of either 1 or highest current rank + 1
2083
2084 =back
2085
2086 =cut
2087
2088 sub addroutingmember {
2089     my ( $borrowernumber, $subscriptionid ) = @_;
2090     my $rank;
2091     my $dbh = C4::Context->dbh;
2092     my $sth =
2093       $dbh->prepare(
2094 "SELECT max(ranking) rank FROM subscriptionroutinglist WHERE subscriptionid = ?"
2095       );
2096     $sth->execute($subscriptionid);
2097     while ( my $line = $sth->fetchrow_hashref ) {
2098         if ( $line->{'rank'} > 0 ) {
2099             $rank = $line->{'rank'} + 1;
2100         }
2101         else {
2102             $rank = 1;
2103         }
2104     }
2105     $sth =
2106       $dbh->prepare(
2107 "INSERT INTO subscriptionroutinglist (subscriptionid,borrowernumber,ranking) VALUES (?,?,?)"
2108       );
2109     $sth->execute( $subscriptionid, $borrowernumber, $rank );
2110 }
2111
2112 =head2 reorder_members
2113
2114 =over 4
2115
2116 &reorder_members($subscriptionid,$routingid,$rank)
2117
2118 this function is used to reorder the routing list
2119
2120 it takes the routingid of the member one wants to re-rank and the rank it is to move to
2121 - it gets all members on list puts their routingid's into an array
2122 - removes the one in the array that is $routingid
2123 - then reinjects $routingid at point indicated by $rank
2124 - then update the database with the routingids in the new order
2125
2126 =back
2127
2128 =cut
2129
2130 sub reorder_members {
2131     my ( $subscriptionid, $routingid, $rank ) = @_;
2132     my $dbh = C4::Context->dbh;
2133     my $sth =
2134       $dbh->prepare(
2135 "SELECT * FROM subscriptionroutinglist WHERE subscriptionid = ? ORDER BY ranking ASC"
2136       );
2137     $sth->execute($subscriptionid);
2138     my @result;
2139     while ( my $line = $sth->fetchrow_hashref ) {
2140         push( @result, $line->{'routingid'} );
2141     }
2142
2143     # To find the matching index
2144     my $i;
2145     my $key = -1;    # to allow for 0 being a valid response
2146     for ( $i = 0 ; $i < @result ; $i++ ) {
2147         if ( $routingid == $result[$i] ) {
2148             $key = $i;    # save the index
2149             last;
2150         }
2151     }
2152
2153     # if index exists in array then move it to new position
2154     if ( $key > -1 && $rank > 0 ) {
2155         my $new_rank = $rank -
2156           1;    # $new_rank is what you want the new index to be in the array
2157         my $moving_item = splice( @result, $key, 1 );
2158         splice( @result, $new_rank, 0, $moving_item );
2159     }
2160     for ( my $j = 0 ; $j < @result ; $j++ ) {
2161         my $sth =
2162           $dbh->prepare( "UPDATE subscriptionroutinglist SET ranking = '"
2163               . ( $j + 1 )
2164               . "' WHERE routingid = '"
2165               . $result[$j]
2166               . "'" );
2167         $sth->execute;
2168     }
2169 }
2170
2171 =head2 delroutingmember
2172
2173 =over 4
2174
2175 &delroutingmember($routingid,$subscriptionid)
2176
2177 this function either deletes one member from routing list if $routingid exists otherwise
2178 deletes all members from the routing list
2179
2180 =back
2181
2182 =cut
2183
2184 sub delroutingmember {
2185
2186 # if $routingid exists then deletes that row otherwise deletes all with $subscriptionid
2187     my ( $routingid, $subscriptionid ) = @_;
2188     my $dbh = C4::Context->dbh;
2189     if ($routingid) {
2190         my $sth =
2191           $dbh->prepare(
2192             "DELETE FROM subscriptionroutinglist WHERE routingid = ?");
2193         $sth->execute($routingid);
2194         reorder_members( $subscriptionid, $routingid );
2195     }
2196     else {
2197         my $sth =
2198           $dbh->prepare(
2199             "DELETE FROM subscriptionroutinglist WHERE subscriptionid = ?");
2200         $sth->execute($subscriptionid);
2201     }
2202 }
2203
2204 =head2 getroutinglist
2205
2206 =over 4
2207
2208 ($count,@routinglist) = &getroutinglist($subscriptionid)
2209
2210 this gets the info from the subscriptionroutinglist for $subscriptionid
2211
2212 return :
2213 a count of the number of members on routinglist
2214 the routinglist into a table. Each line of this table containts a ref to a hash which containts
2215 routingid - a unique id, borrowernumber, ranking, and biblionumber of subscription
2216
2217 =back
2218
2219 =cut
2220
2221 sub getroutinglist {
2222     my ($subscriptionid) = @_;
2223     my $dbh              = C4::Context->dbh;
2224     my $sth              = $dbh->prepare(
2225         "SELECT routingid, borrowernumber,
2226                               ranking, biblionumber 
2227          FROM subscription 
2228          LEFT JOIN subscriptionroutinglist ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2229          WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2230                               "
2231     );
2232     $sth->execute($subscriptionid);
2233     my @routinglist;
2234     my $count = 0;
2235     while ( my $line = $sth->fetchrow_hashref ) {
2236         $count++;
2237         push( @routinglist, $line );
2238     }
2239     return ( $count, @routinglist );
2240 }
2241
2242 =head2 countissuesfrom
2243
2244 =over 4
2245
2246 $result = &countissuesfrom($subscriptionid,$startdate)
2247
2248
2249 =back
2250
2251 =cut
2252
2253 sub countissuesfrom {
2254     my ($subscriptionid,$startdate) = @_;
2255     my $dbh              = C4::Context->dbh;
2256     my $query = qq|
2257             SELECT count(*)
2258             FROM   serial
2259             WHERE  subscriptionid=?
2260             AND serial.publisheddate>?
2261         |;
2262     my $sth=$dbh->prepare($query);
2263     $sth->execute($subscriptionid, $startdate);
2264     my ($countreceived)=$sth->fetchrow;
2265     return $countreceived;  
2266 }
2267
2268 =head2 abouttoexpire
2269
2270 =over 4
2271
2272 $result = &abouttoexpire($subscriptionid)
2273
2274 this function alerts you to the penultimate issue for a serial subscription
2275
2276 returns 1 - if this is the penultimate issue
2277 returns 0 - if not
2278
2279 =back
2280
2281 =cut
2282
2283 sub abouttoexpire {
2284     my ($subscriptionid) = @_;
2285     my $dbh              = C4::Context->dbh;
2286     my $subscription     = GetSubscription($subscriptionid);
2287     my $per = $subscription->{'periodicity'};
2288     if ($per % 16>0){
2289       my $expirationdate   = GetExpirationDate($subscriptionid);
2290       my $sth =
2291         $dbh->prepare(
2292           "select max(planneddate) from serial where subscriptionid=?");
2293       $sth->execute($subscriptionid);
2294       my ($res) = $sth->fetchrow ;
2295 #        warn "date expiration : ".$expirationdate." date courante ".$res;
2296       my @res=split /-/,$res;
2297       @res=Date::Calc::Today if ($res[0]*$res[1]==0);
2298       my @endofsubscriptiondate=split/-/,$expirationdate;
2299       my $x;
2300       if ( $per == 1 ) {$x=7;}
2301       if ( $per == 2 ) {$x=7; }
2302       if ( $per == 3 ) {$x=14;}
2303       if ( $per == 4 ) { $x = 21; }
2304       if ( $per == 5 ) { $x = 31; }
2305       if ( $per == 6 ) { $x = 62; }
2306       if ( $per == 7 || $per == 8 ) { $x = 93; }
2307       if ( $per == 9 )  { $x = 190; }
2308       if ( $per == 10 ) { $x = 365; }
2309       if ( $per == 11 ) { $x = 730; }
2310       my @datebeforeend=Add_Delta_Days(  $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2],
2311                     - (3 * $x)) if (@endofsubscriptiondate && $endofsubscriptiondate[0]*$endofsubscriptiondate[1]*$endofsubscriptiondate[2]);
2312               # warn "DATE BEFORE END: $datebeforeend";
2313       return 1 if ( @res && 
2314                     (@datebeforeend && 
2315                         Delta_Days($res[0],$res[1],$res[2],
2316                         $datebeforeend[0],$datebeforeend[1],$datebeforeend[2]) <= 0) && 
2317                     (@endofsubscriptiondate && 
2318                         Delta_Days($res[0],$res[1],$res[2],
2319                         $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) >= 0) );
2320     return 0;
2321    } elsif ($subscription->{numberlength}>0) {
2322     return (countissuesfrom($subscriptionid,$subscription->{'startdate'}) >=$subscription->{numberlength}-1);
2323    } else {return 0}
2324 }
2325
2326 =head2 old_newsubscription
2327
2328 =over 4
2329
2330 ($subscriptionid) = &old_newsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2331                         $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2332                         $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2333                         $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2334                         $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2335                         $numberingmethod, $status, $callnumber, $notes, $hemisphere)
2336
2337 this function is similar to the NewSubscription subroutine but has a few different
2338 values passed in 
2339 $firstacquidate - date of first serial issue to arrive
2340 $irregularity - the issues not expected separated by a '|'
2341 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2342 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the 
2343    subscription-add.tmpl file
2344 $callnumber - display the callnumber of the serial
2345 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2346
2347 return :
2348 the $subscriptionid number of the new subscription
2349
2350 =back
2351
2352 =cut
2353
2354 sub old_newsubscription {
2355     my (
2356         $auser,         $aqbooksellerid,  $cost,          $aqbudgetid,
2357         $biblionumber,  $startdate,       $periodicity,   $firstacquidate,
2358         $dow,           $irregularity,    $numberpattern, $numberlength,
2359         $weeklength,    $monthlength,     $add1,          $every1,
2360         $whenmorethan1, $setto1,          $lastvalue1,    $add2,
2361         $every2,        $whenmorethan2,   $setto2,        $lastvalue2,
2362         $add3,          $every3,          $whenmorethan3, $setto3,
2363         $lastvalue3,    $numberingmethod, $status,        $callnumber,
2364         $notes,         $hemisphere
2365     ) = @_;
2366     my $dbh = C4::Context->dbh;
2367
2368     #save subscription
2369     my $sth = $dbh->prepare(
2370 "insert into subscription (librarian,aqbooksellerid,cost,aqbudgetid,biblionumber,
2371                                                         startdate,periodicity,firstacquidate,dow,irregularity,numberpattern,numberlength,weeklength,monthlength,
2372                                                                 add1,every1,whenmorethan1,setto1,lastvalue1,
2373                                                                 add2,every2,whenmorethan2,setto2,lastvalue2,
2374                                                                 add3,every3,whenmorethan3,setto3,lastvalue3,
2375                                                                 numberingmethod, status, callnumber, notes, hemisphere) values
2376                                                           (?,?,?,?,?,?,?,?,?,?,?,
2377                                                                                            ?,?,?,?,?,?,?,?,?,?,?,
2378                                                                                            ?,?,?,?,?,?,?,?,?,?,?,?)"
2379     );
2380     $sth->execute(
2381         $auser,         $aqbooksellerid,
2382         $cost,          $aqbudgetid,
2383         $biblionumber,  format_date_in_iso($startdate),
2384         $periodicity,   format_date_in_iso($firstacquidate),
2385         $dow,           $irregularity,
2386         $numberpattern, $numberlength,
2387         $weeklength,    $monthlength,
2388         $add1,          $every1,
2389         $whenmorethan1, $setto1,
2390         $lastvalue1,    $add2,
2391         $every2,        $whenmorethan2,
2392         $setto2,        $lastvalue2,
2393         $add3,          $every3,
2394         $whenmorethan3, $setto3,
2395         $lastvalue3,    $numberingmethod,
2396         $status,        $callnumber,
2397         $notes,         $hemisphere
2398     );
2399
2400     #then create the 1st waited number
2401     my $subscriptionid = $dbh->{'mysql_insertid'};
2402     my $enddate        = GetExpirationDate($subscriptionid);
2403
2404     $sth =
2405       $dbh->prepare(
2406 "insert into subscriptionhistory (biblionumber, subscriptionid, histstartdate, enddate, missinglist, recievedlist, opacnote, librariannote) values (?,?,?,?,?,?,?,?)"
2407       );
2408     $sth->execute(
2409         $biblionumber, $subscriptionid,
2410         format_date_in_iso($startdate),
2411         format_date_in_iso($enddate),
2412         "", "", "", $notes
2413     );
2414
2415    # reread subscription to get a hash (for calculation of the 1st issue number)
2416     $sth =
2417       $dbh->prepare("select * from subscription where subscriptionid = ? ");
2418     $sth->execute($subscriptionid);
2419     my $val = $sth->fetchrow_hashref;
2420
2421     # calculate issue number
2422     my $serialseq = GetSeq($val);
2423     $sth =
2424       $dbh->prepare(
2425 "insert into serial (serialseq,subscriptionid,biblionumber,status, planneddate) values (?,?,?,?,?)"
2426       );
2427     $sth->execute( $serialseq, $subscriptionid, $val->{'biblionumber'},
2428         1, format_date_in_iso($startdate) );
2429     return $subscriptionid;
2430 }
2431
2432 =head2 old_modsubscription
2433
2434 =over 4
2435
2436 ($subscriptionid) = &old_modsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2437                         $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2438                         $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2439                         $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2440                         $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2441                         $numberingmethod, $status, $callnumber, $notes, $hemisphere, $subscriptionid)
2442
2443 this function is similar to the ModSubscription subroutine but has a few different
2444 values passed in 
2445 $firstacquidate - date of first serial issue to arrive
2446 $irregularity - the issues not expected separated by a '|'
2447 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2448 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the 
2449    subscription-add.tmpl file
2450 $callnumber - display the callnumber of the serial
2451 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2452
2453 =back
2454
2455 =cut
2456
2457 sub old_modsubscription {
2458     my (
2459         $auser,        $aqbooksellerid, $cost,           $aqbudgetid,
2460         $startdate,    $periodicity,    $firstacquidate, $dow,
2461         $irregularity, $numberpattern,  $numberlength,   $weeklength,
2462         $monthlength,  $add1,           $every1,         $whenmorethan1,
2463         $setto1,       $lastvalue1,     $innerloop1,     $add2,
2464         $every2,       $whenmorethan2,  $setto2,         $lastvalue2,
2465         $innerloop2,   $add3,           $every3,         $whenmorethan3,
2466         $setto3,       $lastvalue3,     $innerloop3,     $numberingmethod,
2467         $status,       $biblionumber,   $callnumber,     $notes,
2468         $hemisphere,   $subscriptionid
2469     ) = @_;
2470     my $dbh = C4::Context->dbh;
2471     my $sth = $dbh->prepare(
2472 "update subscription set librarian=?, aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
2473                                                    periodicity=?,firstacquidate=?,dow=?,irregularity=?,numberpattern=?,numberlength=?,weeklength=?,monthlength=?,
2474                                                   add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
2475                                                   add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
2476                                                   add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
2477                                                   numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, hemisphere=? where subscriptionid = ?"
2478     );
2479     $sth->execute(
2480         $auser,        $aqbooksellerid, $cost,           $aqbudgetid,
2481         $startdate,    $periodicity,    $firstacquidate, $dow,
2482         $irregularity, $numberpattern,  $numberlength,   $weeklength,
2483         $monthlength,  $add1,           $every1,         $whenmorethan1,
2484         $setto1,       $lastvalue1,     $innerloop1,     $add2,
2485         $every2,       $whenmorethan2,  $setto2,         $lastvalue2,
2486         $innerloop2,   $add3,           $every3,         $whenmorethan3,
2487         $setto3,       $lastvalue3,     $innerloop3,     $numberingmethod,
2488         $status,       $biblionumber,   $callnumber,     $notes,
2489         $hemisphere,   $subscriptionid
2490     );
2491     $sth->finish;
2492
2493     $sth =
2494       $dbh->prepare("select * from subscription where subscriptionid = ? ");
2495     $sth->execute($subscriptionid);
2496     my $val = $sth->fetchrow_hashref;
2497
2498     # calculate issue number
2499     my $serialseq = Get_Seq($val);
2500     $sth =
2501       $dbh->prepare("UPDATE serial SET serialseq = ? WHERE subscriptionid = ?");
2502     $sth->execute( $serialseq, $subscriptionid );
2503
2504     my $enddate = subscriptionexpirationdate($subscriptionid);
2505     $sth = $dbh->prepare("update subscriptionhistory set enddate=?");
2506     $sth->execute( format_date_in_iso($enddate) );
2507 }
2508
2509 =head2 old_getserials
2510
2511 =over 4
2512
2513 ($totalissues,@serials) = &old_getserials($subscriptionid)
2514
2515 this function get a hashref of serials and the total count of them
2516
2517 return :
2518 $totalissues - number of serial lines
2519 the serials into a table. Each line of this table containts a ref to a hash which it containts
2520 serialid, serialseq, status,planneddate,notes,routingnotes  from tables : serial where status is not 2, 4, or 5
2521
2522 =back
2523
2524 =cut
2525
2526 sub old_getserials {
2527     my ($subscriptionid) = @_;
2528     my $dbh = C4::Context->dbh;
2529
2530     # status = 2 is "arrived"
2531     my $sth =
2532       $dbh->prepare(
2533 "select serialid,serialseq, status, planneddate,notes,routingnotes from serial where subscriptionid = ? and status <>2 and status <>4 and status <>5"
2534       );
2535     $sth->execute($subscriptionid);
2536     my @serials;
2537     my $num = 1;
2538     while ( my $line = $sth->fetchrow_hashref ) {
2539         $line->{ "status" . $line->{status} } =
2540           1;    # fills a "statusX" value, used for template status select list
2541         $line->{"planneddate"} = format_date( $line->{"planneddate"} );
2542         $line->{"num"}         = $num;
2543         $num++;
2544         push @serials, $line;
2545     }
2546     $sth = $dbh->prepare("select count(*) from serial where subscriptionid=?");
2547     $sth->execute($subscriptionid);
2548     my ($totalissues) = $sth->fetchrow;
2549     return ( $totalissues, @serials );
2550 }
2551
2552 =head2 GetNextDate
2553
2554 ($resultdate) = &GetNextDate($planneddate,$subscription)
2555
2556 this function is an extension of GetNextDate which allows for checking for irregularity
2557
2558 it takes the planneddate and will return the next issue's date and will skip dates if there
2559 exists an irregularity
2560 - eg if periodicity is monthly and $planneddate is 2007-02-10 but if March and April is to be 
2561 skipped then the returned date will be 2007-05-10
2562
2563 return :
2564 $resultdate - then next date in the sequence
2565
2566 Return 0 if periodicity==0
2567
2568 =cut
2569 sub in_array { # used in next sub down
2570   my ($val,@elements) = @_;
2571   foreach my $elem(@elements) {
2572     if($val == $elem) {
2573             return 1;
2574     }
2575   }
2576   return 0;
2577 }
2578
2579 sub GetNextDate(@) {
2580     my ( $planneddate, $subscription ) = @_;
2581     my @irreg = split( /\,/, $subscription->{irregularity} );
2582
2583     #date supposed to be in ISO.
2584     
2585     my ( $year, $month, $day ) = split(/-/, $planneddate);
2586     $month=1 unless ($month);
2587     $day=1 unless ($day);
2588     my @resultdate;
2589
2590     #       warn "DOW $dayofweek";
2591     if ( $subscription->{periodicity} % 16 == 0 ) {
2592       return 0;
2593     }  
2594     if ( $subscription->{periodicity} == 1 ) {
2595         my $dayofweek = eval{Day_of_Week( $year,$month, $day )};
2596         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2597         else {    
2598           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2599               $dayofweek = 0 if ( $dayofweek == 7 ); 
2600               if ( in_array( ($dayofweek + 1), @irreg ) ) {
2601                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 1 );
2602                   $dayofweek++;
2603               }
2604           }
2605           @resultdate = Add_Delta_Days($year,$month, $day , 1 );
2606         }    
2607     }
2608     if ( $subscription->{periodicity} == 2 ) {
2609         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2610         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2611         else {    
2612           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2613               if ( $irreg[$i] == (($wkno!=51)?($wkno +1) % 52 :52)) {
2614                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 7 );
2615                   $wkno=(($wkno!=51)?($wkno +1) % 52 :52);
2616               }
2617           }
2618           @resultdate = Add_Delta_Days( $year,$month, $day, 7);
2619         }        
2620     }
2621     if ( $subscription->{periodicity} == 3 ) {        
2622         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2623         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2624         else {    
2625           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2626               if ( $irreg[$i] == (($wkno!=50)?($wkno +2) % 52 :52)) {
2627               ### BUGFIX was previously +1 ^
2628                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 14 );
2629                   $wkno=(($wkno!=50)?($wkno +2) % 52 :52);
2630               }
2631           }
2632           @resultdate = Add_Delta_Days($year,$month, $day , 14 );
2633         }        
2634     }
2635     if ( $subscription->{periodicity} == 4 ) {
2636         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2637         if ($@){warn "annĂ©e mois jour : $year $month $day $subscription->{subscriptionid} : $@";}
2638         else {    
2639           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2640               if ( $irreg[$i] == (($wkno!=49)?($wkno +3) % 52 :52)) {
2641                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 21 );
2642                   $wkno=(($wkno!=49)?($wkno +3) % 52 :52);
2643               }
2644           }
2645           @resultdate = Add_Delta_Days($year,$month, $day , 21 );
2646         }        
2647     }
2648     my $tmpmonth=$month;
2649     if ($year && $month && $day){
2650     if ( $subscription->{periodicity} == 5 ) {
2651           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2652               if ( $irreg[$i] == (($tmpmonth!=11)?($tmpmonth +1) % 12 :12)) {
2653                   ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2654                   $tmpmonth=(($tmpmonth!=11)?($tmpmonth +1) % 12 :12);
2655               }
2656           }        
2657           @resultdate = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2658     }
2659     if ( $subscription->{periodicity} == 6 ) {
2660           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2661               if ( $irreg[$i] == (($tmpmonth!=10)?($tmpmonth +2) % 12 :12)) {
2662                   ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,2,0 );
2663                   $tmpmonth=(($tmpmonth!=10)?($tmpmonth + 2) % 12 :12);
2664               }
2665           }
2666           @resultdate = Add_Delta_YMD($year,$month, $day, 0, 2,0 );
2667     }
2668     if ( $subscription->{periodicity} == 7 ) {
2669         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2670             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2671                 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2672                 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2673             }
2674         }
2675         @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2676     }
2677     if ( $subscription->{periodicity} == 8 ) {
2678         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2679             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2680                 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2681                 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2682             }
2683         }
2684         @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2685     }
2686     if ( $subscription->{periodicity} == 9 ) {
2687         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2688             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2689             ### BUFIX Seems to need more Than One ?
2690                 ($year,$month,$day) = Add_Delta_YM($year,$month, $day, 0, 6 );
2691                 $tmpmonth=(($tmpmonth!=6)?($tmpmonth + 6) % 12 :12);
2692             }
2693         }
2694         @resultdate = Add_Delta_YM($year,$month, $day, 0, 6);
2695     }
2696     if ( $subscription->{periodicity} == 10 ) {
2697         @resultdate = Add_Delta_YM($year,$month, $day, 1, 0 );
2698     }
2699     if ( $subscription->{periodicity} == 11 ) {
2700         @resultdate = Add_Delta_YM($year,$month, $day, 2, 0 );
2701     }
2702     }  
2703     my $resultdate=sprintf("%04d-%02d-%02d",$resultdate[0],$resultdate[1],$resultdate[2]);
2704       
2705 #     warn "dateNEXTSEQ : ".$resultdate;
2706     return "$resultdate";
2707 }
2708
2709 =head2 itemdata
2710
2711   $item = &itemdata($barcode);
2712
2713 Looks up the item with the given barcode, and returns a
2714 reference-to-hash containing information about that item. The keys of
2715 the hash are the fields from the C<items> and C<biblioitems> tables in
2716 the Koha database.
2717
2718 =cut
2719
2720 #'
2721 sub itemdata {
2722     my ($barcode) = @_;
2723     my $dbh       = C4::Context->dbh;
2724     my $sth       = $dbh->prepare(
2725         "Select * from items LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber 
2726         WHERE barcode=?"
2727     );
2728     $sth->execute($barcode);
2729     my $data = $sth->fetchrow_hashref;
2730     $sth->finish;
2731     return ($data);
2732 }
2733
2734 1;
2735 __END__
2736
2737 =back
2738
2739 =head1 AUTHOR
2740
2741 Koha Developement team <info@koha.org>
2742
2743 =cut