[REPLACE previous] Removing map calls in void context
[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 use C4::Debug;
33
34 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
35
36 BEGIN {
37         $VERSION = 3.01;        # set version for version checking
38         require Exporter;
39         @ISA    = qw(Exporter);
40         @EXPORT = qw(
41     &NewSubscription    &ModSubscription    &DelSubscription    &GetSubscriptions
42     &GetSubscription    &CountSubscriptionFromBiblionumber      &GetSubscriptionsFromBiblionumber
43     &GetFullSubscriptionsFromBiblionumber   &GetFullSubscription &ModSubscriptionHistory
44     &HasSubscriptionExpired &GetExpirationDate &abouttoexpire
45     
46     &GetNextSeq         &NewIssue           &ItemizeSerials    &GetSerials
47     &GetLatestSerials   &ModSerialStatus    &GetNextDate       &GetSerials2
48     &ReNewSubscription  &GetLateIssues      &GetLateOrMissingIssues
49     &GetSerialInformation                   &AddItem2Serial
50     &PrepareSerialsData &GetNextExpected    &ModNextExpected
51     
52     &UpdateClaimdateIssues
53     &GetSuppliersWithLateIssues             &getsupplierbyserialid
54     &GetDistributedTo   &SetDistributedTo
55     &getroutinglist     &delroutingmember   &addroutingmember
56     &reorder_members
57     &check_routing &updateClaim &removeMissingIssue
58     
59     &old_newsubscription &old_modsubscription &old_getserials
60         );
61 }
62
63 =head2 GetSuppliersWithLateIssues
64
65 =head1 NAME
66
67 C4::Serials - Give functions for serializing.
68
69 =head1 SYNOPSIS
70
71   use C4::Serials;
72
73 =head1 DESCRIPTION
74
75 Give all XYZ functions
76
77 =head1 FUNCTIONS
78
79 =over 4
80
81 %supplierlist = &GetSuppliersWithLateIssues
82
83 this function get all suppliers with late issues.
84
85 return :
86 the supplierlist into a hash. this hash containts id & name of the supplier
87
88 =back
89
90 =cut
91
92 sub GetSuppliersWithLateIssues {
93     my $dbh   = C4::Context->dbh;
94     my $query = qq|
95         SELECT DISTINCT id, name
96         FROM            subscription 
97         LEFT JOIN       serial ON serial.subscriptionid=subscription.subscriptionid
98         LEFT JOIN       aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
99         WHERE           subscription.subscriptionid = serial.subscriptionid
100         AND             (planneddate < now() OR serial.STATUS = 3 OR serial.STATUS = 4)
101         ORDER BY name
102     |;
103     my $sth = $dbh->prepare($query);
104     $sth->execute;
105     my %supplierlist;
106     while ( my ( $id, $name ) = $sth->fetchrow ) {
107         $supplierlist{$id} = $name;
108     }
109     if ( C4::Context->preference("RoutingSerials") ) {
110         $supplierlist{''} = "All Suppliers";
111     }
112     return %supplierlist;
113 }
114
115 =head2 GetLateIssues
116
117 =over 4
118
119 @issuelist = &GetLateIssues($supplierid)
120
121 this function select late issues on database
122
123 return :
124 the issuelist into an table. Each line of this table containts a ref to a hash which it containts
125 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
126
127 =back
128
129 =cut
130
131 sub GetLateIssues {
132     my ($supplierid) = @_;
133     my $dbh = C4::Context->dbh;
134     my $sth;
135     if ($supplierid) {
136         my $query = qq|
137             SELECT     name,title,planneddate,serialseq,serial.subscriptionid
138             FROM       subscription
139             LEFT JOIN  serial ON subscription.subscriptionid = serial.subscriptionid
140             LEFT JOIN  biblio ON biblio.biblionumber = subscription.biblionumber
141             LEFT JOIN  aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
142             WHERE      ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
143             AND        subscription.aqbooksellerid=$supplierid
144             ORDER BY   title
145         |;
146         $sth = $dbh->prepare($query);
147     }
148     else {
149         my $query = qq|
150             SELECT     name,title,planneddate,serialseq,serial.subscriptionid
151             FROM       subscription
152             LEFT JOIN  serial ON subscription.subscriptionid = serial.subscriptionid
153             LEFT JOIN  biblio ON biblio.biblionumber = subscription.biblionumber
154             LEFT JOIN  aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
155             WHERE      ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3)
156             ORDER BY   title
157         |;
158         $sth = $dbh->prepare($query);
159     }
160     $sth->execute;
161     my @issuelist;
162     my $last_title;
163     my $odd   = 0;
164     my $count = 0;
165     while ( my $line = $sth->fetchrow_hashref ) {
166         $odd++ unless $line->{title} eq $last_title;
167         $line->{title} = "" if $line->{title} eq $last_title;
168         $last_title = $line->{title} if ( $line->{title} );
169         $line->{planneddate} = format_date( $line->{planneddate} );
170         $count++;
171         push @issuelist, $line;
172     }
173     return $count, @issuelist;
174 }
175
176 =head2 GetSubscriptionHistoryFromSubscriptionId
177
178 =over 4
179
180 $sth = GetSubscriptionHistoryFromSubscriptionId()
181 this function just prepare the SQL request.
182 After this function, don't forget to execute it by using $sth->execute($subscriptionid)
183 return :
184 $sth = $dbh->prepare($query).
185
186 =back
187
188 =cut
189
190 sub GetSubscriptionHistoryFromSubscriptionId() {
191     my $dbh   = C4::Context->dbh;
192     my $query = qq|
193         SELECT *
194         FROM   subscriptionhistory
195         WHERE  subscriptionid = ?
196     |;
197     return $dbh->prepare($query);
198 }
199
200 =head2 GetSerialStatusFromSerialId
201
202 =over 4
203
204 $sth = GetSerialStatusFromSerialId();
205 this function just prepare the SQL request.
206 After this function, don't forget to execute it by using $sth->execute($serialid)
207 return :
208 $sth = $dbh->prepare($query).
209
210 =back
211
212 =cut
213
214 sub GetSerialStatusFromSerialId() {
215     my $dbh   = C4::Context->dbh;
216     my $query = qq|
217         SELECT status
218         FROM   serial
219         WHERE  serialid = ?
220     |;
221     return $dbh->prepare($query);
222 }
223
224 =head2 GetSerialInformation
225
226 =over 4
227
228 $data = GetSerialInformation($serialid);
229 returns a hash containing :
230   items : items marcrecord (can be an array)
231   serial table field
232   subscription table field
233   + information about subscription expiration
234   
235 =back
236
237 =cut
238
239 sub GetSerialInformation {
240     my ($serialid) = @_;
241     my $dbh        = C4::Context->dbh;
242     my $query      = qq|
243         SELECT serial.*, serial.notes as sernotes, serial.status as serstatus,subscription.*,subscription.subscriptionid as subsid |;
244        if (C4::Context->preference('IndependantBranches') && 
245               C4::Context->userenv && 
246               C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
247                 $query.="
248       , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
249         }
250             $query .= qq|             
251         FROM   serial LEFT JOIN subscription ON subscription.subscriptionid=serial.subscriptionid
252         WHERE  serialid = ?
253     |;
254     my $rq = $dbh->prepare($query);
255     $rq->execute($serialid);
256     my $data = $rq->fetchrow_hashref;
257     # create item information if we have serialsadditems for this subscription
258     if ( $data->{'serialsadditems'} ) {
259         my $queryitem=$dbh->prepare("SELECT itemnumber from serialitems where serialid=?");
260         $queryitem->execute($serialid);
261         my $itemnumbers=$queryitem->fetchall_arrayref([0]);
262         if (scalar(@$itemnumbers)>0){
263             foreach my $itemnum (@$itemnumbers) {
264                 #It is ASSUMED that GetMarcItem ALWAYS WORK...
265                 #Maybe GetMarcItem should return values on failure
266                 $debug and warn "itemnumber :$itemnum->[0], bibnum :".$data->{'biblionumber'};
267                 my $itemprocessed =
268                   PrepareItemrecordDisplay( $data->{'biblionumber'}, $itemnum->[0] , $data );
269                 $itemprocessed->{'itemnumber'}   = $itemnum->[0];
270                 $itemprocessed->{'itemid'}       = $itemnum->[0];
271                 $itemprocessed->{'serialid'}     = $serialid;
272                 $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
273                 push @{ $data->{'items'} }, $itemprocessed;
274             }
275         }
276         else {
277             my $itemprocessed =
278               PrepareItemrecordDisplay( $data->{'biblionumber'}, '', $data );
279             $itemprocessed->{'itemid'}       = "N$serialid";
280             $itemprocessed->{'serialid'}     = $serialid;
281             $itemprocessed->{'biblionumber'} = $data->{'biblionumber'};
282             $itemprocessed->{'countitems'}   = 0;
283             push @{ $data->{'items'} }, $itemprocessed;
284         }
285     }
286     $data->{ "status" . $data->{'serstatus'} } = 1;
287     $data->{'subscriptionexpired'} =
288       HasSubscriptionExpired( $data->{'subscriptionid'} ) && $data->{'status'}==1;
289     $data->{'abouttoexpire'} =
290       abouttoexpire( $data->{'subscriptionid'} );
291     return $data;
292 }
293
294 =head2 AddItem2Serial
295
296 =over 4
297
298 $data = AddItem2Serial($serialid,$itemnumber);
299 Adds an itemnumber to Serial record
300
301 =back
302
303 =cut
304
305 sub AddItem2Serial {
306     my ( $serialid, $itemnumber ) = @_;
307     my $dbh   = C4::Context->dbh;
308     my $rq = $dbh->prepare("INSERT INTO `serialitems` SET serialid=? , itemnumber=?");
309     $rq->execute($serialid, $itemnumber);
310     return $rq->rows;
311 }
312
313 =head2 UpdateClaimdateIssues
314
315 =over 4
316
317 UpdateClaimdateIssues($serialids,[$date]);
318
319 Update Claimdate for issues in @$serialids list with date $date 
320 (Take Today if none)
321
322 =back
323
324 =cut
325
326 sub UpdateClaimdateIssues {
327     my ( $serialids, $date ) = @_;
328     my $dbh   = C4::Context->dbh;
329     $date = strftime("%Y-%m-%d",localtime) unless ($date);
330     my $query = "
331         UPDATE serial SET claimdate=$date,status=7
332         WHERE  serialid in ".join (",",@$serialids);
333     ;
334     my $rq = $dbh->prepare($query);
335     $rq->execute;
336     return $rq->rows;
337 }
338
339 =head2 GetSubscription
340
341 =over 4
342
343 $subs = GetSubscription($subscriptionid)
344 this function get the subscription which has $subscriptionid as id.
345 return :
346 a hashref. This hash containts
347 subscription, subscriptionhistory, aqbudget.bookfundid, biblio.title
348
349 =back
350
351 =cut
352
353 sub GetSubscription {
354     my ($subscriptionid) = @_;
355     my $dbh              = C4::Context->dbh;
356     my $query            = qq(
357         SELECT  subscription.*,
358                 subscriptionhistory.*,
359                 subscriptionhistory.enddate as histenddate,
360                 aqbudget.bookfundid,
361                 aqbooksellers.name AS aqbooksellername,
362                 biblio.title AS bibliotitle,
363                 subscription.biblionumber as bibnum);
364        if (C4::Context->preference('IndependantBranches') && 
365               C4::Context->userenv && 
366               C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
367                 $query.="
368       , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
369         }
370             $query .= qq(             
371        FROM subscription
372        LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
373        LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
374        LEFT JOIN aqbooksellers ON subscription.aqbooksellerid=aqbooksellers.id
375        LEFT JOIN biblio ON biblio.biblionumber=subscription.biblionumber
376        WHERE subscription.subscriptionid = ?
377     );
378 #     if (C4::Context->preference('IndependantBranches') && 
379 #         C4::Context->userenv && 
380 #         C4::Context->userenv->{'flags'} != 1){
381 # #       $debug and warn "flags: ".C4::Context->userenv->{'flags'};
382 #       $query.=" AND subscription.branchcode IN ('".C4::Context->userenv->{'branch'}."',\"\")";
383 #     }
384         $debug and warn "query : $query\nsubsid :$subscriptionid";
385     my $sth = $dbh->prepare($query);
386     $sth->execute($subscriptionid);
387     return $sth->fetchrow_hashref;
388 }
389
390 =head2 GetFullSubscription
391
392 =over 4
393
394    \@res = GetFullSubscription($subscriptionid)
395    this function read on serial table.
396
397 =back
398
399 =cut
400
401 sub GetFullSubscription {
402     my ($subscriptionid) = @_;
403     my $dbh            = C4::Context->dbh;
404     my $query          = qq|
405   SELECT    serial.serialid,
406             serial.serialseq,
407             serial.planneddate, 
408             serial.publisheddate, 
409             serial.status, 
410             serial.notes as notes,
411             year(IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate)) as year,
412             aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,
413             biblio.title as bibliotitle,
414             subscription.branchcode AS branchcode,
415             subscription.subscriptionid AS subscriptionid |;
416     if (C4::Context->preference('IndependantBranches') && 
417         C4::Context->userenv && 
418         C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
419       $query.="
420       , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
421     }
422     $query.=qq|
423   FROM      serial 
424   LEFT JOIN subscription ON 
425           (serial.subscriptionid=subscription.subscriptionid )
426   LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid 
427   LEFT JOIN aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id 
428   LEFT JOIN biblio on biblio.biblionumber=subscription.biblionumber 
429   WHERE     serial.subscriptionid = ? 
430   ORDER BY year DESC,
431           IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate) DESC,
432           serial.subscriptionid
433           |;
434         $debug and warn "GetFullSubscription query: $query";   
435     my $sth = $dbh->prepare($query);
436     $sth->execute($subscriptionid);
437     return $sth->fetchall_arrayref({});
438 }
439
440
441 =head2 PrepareSerialsData
442
443 =over 4
444
445    \@res = PrepareSerialsData($serialinfomation)
446    where serialinformation is a hashref array
447
448 =back
449
450 =cut
451
452 sub PrepareSerialsData{
453     my ($lines)=@_;
454     my %tmpresults;
455     my $year;
456     my @res;
457     my $startdate;
458     my $aqbooksellername;
459     my $bibliotitle;
460     my @loopissues;
461     my $first;
462     my $previousnote = "";
463     
464     foreach  my $subs ( @$lines ) {
465         $subs->{'publisheddate'} =
466           ( $subs->{'publisheddate'}
467             ? format_date( $subs->{'publisheddate'} )
468             : "XXX" );
469         $subs->{'planneddate'} = format_date( $subs->{'planneddate'} );
470         $subs->{ "status" . $subs->{'status'} } = 1;
471
472 #         $subs->{'notes'} = $subs->{'notes'} eq $previousnote?"":$subs->{notes};
473         if ( $subs->{'year'} && $subs->{'year'} ne "" ) {
474             $year = $subs->{'year'};
475         }
476         else {
477             $year = "manage";
478         }
479         if ( $tmpresults{$year} ) {
480             push @{ $tmpresults{$year}->{'serials'} }, $subs;
481         }
482         else {
483             $tmpresults{$year} = {
484                 'year' => $year,
485
486                 #               'startdate'=>format_date($subs->{'startdate'}),
487                 'aqbooksellername' => $subs->{'aqbooksellername'},
488                 'bibliotitle'      => $subs->{'bibliotitle'},
489                 'serials'          => [$subs],
490                 'first'            => $first,
491 #                 'branchcode'       => $subs->{'branchcode'},
492 #                 'subscriptionid'   => $subs->{'subscriptionid'},
493             };
494         }
495
496         #         $previousnote=$subs->{notes};
497     }
498     foreach my $key ( sort { $b cmp $a } keys %tmpresults ) {
499         push @res, $tmpresults{$key};
500     }
501     $res[0]->{'first'}=1;  
502     return \@res;
503 }
504
505 =head2 GetSubscriptionsFromBiblionumber
506
507 \@res = GetSubscriptionsFromBiblionumber($biblionumber)
508 this function get the subscription list. it reads on subscription table.
509 return :
510 table of subscription which has the biblionumber given on input arg.
511 each line of this table is a hashref. All hashes containt
512 startdate, histstartdate,opacnote,missinglist,recievedlist,periodicity,status & enddate
513
514 =cut
515
516 sub GetSubscriptionsFromBiblionumber {
517     my ($biblionumber) = @_;
518     my $dbh            = C4::Context->dbh;
519     my $query          = qq(
520         SELECT subscription.*,
521                branches.branchname,
522                subscriptionhistory.*,
523                subscriptionhistory.enddate as histenddate, 
524                aqbudget.bookfundid,
525                aqbooksellers.name AS aqbooksellername,
526                biblio.title AS bibliotitle
527        FROM subscription
528        LEFT JOIN subscriptionhistory ON subscription.subscriptionid=subscriptionhistory.subscriptionid
529        LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid
530        LEFT JOIN aqbooksellers ON subscription.aqbooksellerid=aqbooksellers.id
531        LEFT JOIN biblio ON biblio.biblionumber=subscription.biblionumber
532        LEFT JOIN branches ON branches.branchcode=subscription.branchcode
533        WHERE subscription.biblionumber = ?
534     );
535 #     if (C4::Context->preference('IndependantBranches') && 
536 #         C4::Context->userenv && 
537 #         C4::Context->userenv->{'flags'} != 1){
538 #        $query.=" AND subscription.branchcode IN ('".C4::Context->userenv->{'branch'}."',\"\")";
539 #     }
540     my $sth = $dbh->prepare($query);
541     $sth->execute($biblionumber);
542     my @res;
543     while ( my $subs = $sth->fetchrow_hashref ) {
544         $subs->{startdate}     = format_date( $subs->{startdate} );
545         $subs->{histstartdate} = format_date( $subs->{histstartdate} );
546         $subs->{histenddate} = format_date( $subs->{histenddate} );
547         $subs->{opacnote}     =~ s/\n/\<br\/\>/g;
548         $subs->{missinglist}  =~ s/\n/\<br\/\>/g;
549         $subs->{recievedlist} =~ s/\n/\<br\/\>/g;
550         $subs->{ "periodicity" . $subs->{periodicity} } = 1;
551         $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
552         $subs->{ "status" . $subs->{'status'} } = 1;
553         $subs->{'cannotedit'}=(C4::Context->preference('IndependantBranches') && 
554                 C4::Context->userenv && 
555                 C4::Context->userenv->{flags} !=1  && 
556                 C4::Context->userenv->{branch} && $subs->{branchcode} &&
557                 (C4::Context->userenv->{branch} ne $subs->{branchcode}));
558         if ( $subs->{enddate} eq '0000-00-00' ) {
559             $subs->{enddate} = '';
560         }
561         else {
562             $subs->{enddate} = format_date( $subs->{enddate} );
563         }
564         $subs->{'abouttoexpire'}=abouttoexpire($subs->{'subscriptionid'});
565         $subs->{'subscriptionexpired'}=HasSubscriptionExpired($subs->{'subscriptionid'});
566         push @res, $subs;
567     }
568     return \@res;
569 }
570
571 =head2 GetFullSubscriptionsFromBiblionumber
572
573 =over 4
574
575    \@res = GetFullSubscriptionsFromBiblionumber($biblionumber)
576    this function read on serial table.
577
578 =back
579
580 =cut
581
582 sub GetFullSubscriptionsFromBiblionumber {
583     my ($biblionumber) = @_;
584     my $dbh            = C4::Context->dbh;
585     my $query          = qq|
586   SELECT    serial.serialid,
587             serial.serialseq,
588             serial.planneddate, 
589             serial.publisheddate, 
590             serial.status, 
591             serial.notes as notes,
592             year(IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate)) as year,
593             aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,
594             biblio.title as bibliotitle,
595             subscription.branchcode AS branchcode,
596             subscription.subscriptionid AS subscriptionid|;
597      if (C4::Context->preference('IndependantBranches') && 
598         C4::Context->userenv && 
599         C4::Context->userenv->{'flags'} != 1 && C4::Context->userenv->{'branch'}){
600       $query.="
601       , ((subscription.branchcode <>\"".C4::Context->userenv->{'branch'}."\") and subscription.branchcode <>\"\" and subscription.branchcode IS NOT NULL) as cannotedit ";
602      }
603       
604      $query.=qq|      
605   FROM      serial 
606   LEFT JOIN subscription ON 
607           (serial.subscriptionid=subscription.subscriptionid)
608   LEFT JOIN aqbudget ON subscription.aqbudgetid=aqbudget.aqbudgetid 
609   LEFT JOIN aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id 
610   LEFT JOIN biblio on biblio.biblionumber=subscription.biblionumber 
611   WHERE     subscription.biblionumber = ? 
612   ORDER BY year DESC,
613           IF(serial.publisheddate="00-00-0000",serial.planneddate,serial.publisheddate) DESC,
614           serial.subscriptionid
615           |;
616     my $sth = $dbh->prepare($query);
617     $sth->execute($biblionumber);
618     return $sth->fetchall_arrayref({});
619 }
620
621 =head2 GetSubscriptions
622
623 =over 4
624
625 @results = GetSubscriptions($title,$ISSN,$biblionumber);
626 this function get all subscriptions which has title like $title,ISSN like $ISSN and biblionumber like $biblionumber.
627 return:
628 a table of hashref. Each hash containt the subscription.
629
630 =back
631
632 =cut
633
634 sub GetSubscriptions {
635     my ( $title, $ISSN, $biblionumber ) = @_;
636     #return unless $title or $ISSN or $biblionumber;
637     my $dbh = C4::Context->dbh;
638     my $sth;
639     if ($biblionumber) {
640         my $query = qq(
641             SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
642             FROM   subscription
643             LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
644             LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
645             WHERE biblio.biblionumber=?
646         );
647         $query.=" ORDER BY title";
648         $debug and warn "GetSubscriptions query: $query";
649         $sth = $dbh->prepare($query);
650         $sth->execute($biblionumber);
651     }
652     else {
653         if ( $ISSN and $title ) {
654             my $query = qq|
655                 SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber        
656                 FROM   subscription
657                 LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
658                 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
659                 WHERE (biblioitems.issn = ? or|. join('and ',map{"biblio.title LIKE \"%$_%\""}split (" ",$title))." )";
660             $query.=" ORDER BY title";
661                 $debug and warn "GetSubscriptions query: $query";
662             $sth = $dbh->prepare($query);
663             $sth->execute( $ISSN );
664         }
665         else {
666             if ($ISSN) {
667                 my $query = qq(
668                     SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
669                     FROM   subscription
670                     LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
671                     LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
672                     WHERE biblioitems.issn LIKE ?
673                 );
674                 $query.=" ORDER BY title";
675                         $debug and warn "GetSubscriptions query: $query";
676                 $sth = $dbh->prepare($query);
677                 $sth->execute( "%" . $ISSN . "%" );
678             }
679             else {
680                 my $query = qq(
681                     SELECT subscription.*,biblio.title,biblioitems.issn,biblio.biblionumber
682                     FROM   subscription
683                     LEFT JOIN biblio ON biblio.biblionumber = subscription.biblionumber
684                     LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
685                     WHERE 1
686                     ).($title?" and ":""). join('and ',map{"biblio.title LIKE \"%$_%\""} split (" ",$title) );
687                 
688                 $query.=" ORDER BY title";
689                         $debug and warn "GetSubscriptions query: $query";
690                 $sth = $dbh->prepare($query);
691                 $sth->execute;
692             }
693         }
694     }
695     my @results;
696     my $previoustitle = "";
697     my $odd           = 1;
698     while ( my $line = $sth->fetchrow_hashref ) {
699         if ( $previoustitle eq $line->{title} ) {
700             $line->{title}  = "";
701             $line->{issn}   = "";
702         }
703         else {
704             $previoustitle = $line->{title};
705             $odd           = -$odd;
706         }
707         $line->{toggle} = 1 if $odd == 1;
708         $line->{'cannotedit'}=(C4::Context->preference('IndependantBranches') && 
709                 C4::Context->userenv && 
710                 C4::Context->userenv->{flags} !=1  && 
711                 C4::Context->userenv->{branch} && $line->{branchcode} &&
712                 (C4::Context->userenv->{branch} ne $line->{branchcode}));
713         push @results, $line;
714     }
715     return @results;
716 }
717
718 =head2 GetSerials
719
720 =over 4
721
722 ($totalissues,@serials) = GetSerials($subscriptionid);
723 this function get every serial not arrived for a given subscription
724 as well as the number of issues registered in the database (all types)
725 this number is used to see if a subscription can be deleted (=it must have only 1 issue)
726
727 FIXME: We should return \@serials.
728
729 =back
730
731 =cut
732
733 sub GetSerials {
734     my ($subscriptionid,$count) = @_;
735     my $dbh = C4::Context->dbh;
736
737     # status = 2 is "arrived"
738     my $counter = 0;
739     $count=5 unless ($count);
740     my @serials;
741     my $query =
742       "SELECT serialid,serialseq, status, publisheddate, planneddate,notes, routingnotes
743                         FROM   serial
744                         WHERE  subscriptionid = ? AND status NOT IN (2,4,5) 
745                         ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC";
746     my $sth = $dbh->prepare($query);
747     $sth->execute($subscriptionid);
748     while ( my $line = $sth->fetchrow_hashref ) {
749         $line->{ "status" . $line->{status} } =
750           1;    # fills a "statusX" value, used for template status select list
751         $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
752         $line->{"planneddate"}   = format_date( $line->{"planneddate"} );
753         push @serials, $line;
754     }
755     # OK, now add the last 5 issues arrives/missing
756     $query =
757       "SELECT   serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
758        FROM     serial
759        WHERE    subscriptionid = ?
760        AND      (status in (2,4,5))
761        ORDER BY IF(publisheddate<>'0000-00-00',publisheddate,planneddate) DESC
762       ";
763     $sth = $dbh->prepare($query);
764     $sth->execute($subscriptionid);
765     while ( ( my $line = $sth->fetchrow_hashref ) && $counter < $count ) {
766         $counter++;
767         $line->{ "status" . $line->{status} } =
768           1;    # fills a "statusX" value, used for template status select list
769         $line->{"planneddate"}   = format_date( $line->{"planneddate"} );
770         $line->{"publisheddate"} = format_date( $line->{"publisheddate"} );
771         push @serials, $line;
772     }
773
774     $query = "SELECT count(*) FROM serial WHERE subscriptionid=?";
775     $sth = $dbh->prepare($query);
776     $sth->execute($subscriptionid);
777     my ($totalissues) = $sth->fetchrow;
778     return ( $totalissues, @serials );
779 }
780
781 =head2 GetSerials2
782
783 =over 4
784
785 ($totalissues,@serials) = GetSerials2($subscriptionid,$status);
786 this function get every serial waited for a given subscription
787 as well as the number of issues registered in the database (all types)
788 this number is used to see if a subscription can be deleted (=it must have only 1 issue)
789
790 =back
791
792 =cut
793 sub GetSerials2 {
794     my ($subscription,$status) = @_;
795     my $dbh = C4::Context->dbh;
796     my $query = qq|
797                  SELECT   serialid,serialseq, status, planneddate, publisheddate,notes, routingnotes
798                  FROM     serial 
799                  WHERE    subscriptionid=$subscription AND status IN ($status)
800                  ORDER BY publisheddate,serialid DESC
801                     |;
802         $debug and warn "GetSerials2 query: $query";
803     my $sth=$dbh->prepare($query);
804     $sth->execute;
805     my @serials;
806     while(my $line = $sth->fetchrow_hashref) {
807         $line->{"status".$line->{status}} = 1; # fills a "statusX" value, used for template status select list
808         $line->{"planneddate"} = format_date($line->{"planneddate"});
809         $line->{"publisheddate"} = format_date($line->{"publisheddate"});
810         push @serials,$line;
811     }
812     my ($totalissues) = scalar(@serials);
813     return ($totalissues,@serials);
814 }
815
816 =head2 GetLatestSerials
817
818 =over 4
819
820 \@serials = GetLatestSerials($subscriptionid,$limit)
821 get the $limit's latest serials arrived or missing for a given subscription
822 return :
823 a ref to a table which it containts all of the latest serials stored into a hash.
824
825 =back
826
827 =cut
828
829 sub GetLatestSerials {
830     my ( $subscriptionid, $limit ) = @_;
831     my $dbh = C4::Context->dbh;
832
833     # status = 2 is "arrived"
834     my $strsth = "SELECT   serialid,serialseq, status, planneddate, notes
835                         FROM     serial
836                         WHERE    subscriptionid = ?
837                         AND      (status =2 or status=4)
838                         ORDER BY planneddate DESC LIMIT 0,$limit
839                 ";
840     my $sth = $dbh->prepare($strsth);
841     $sth->execute($subscriptionid);
842     my @serials;
843     while ( my $line = $sth->fetchrow_hashref ) {
844         $line->{ "status" . $line->{status} } =
845           1;    # fills a "statusX" value, used for template status select list
846         $line->{"planneddate"} = format_date( $line->{"planneddate"} );
847         push @serials, $line;
848     }
849
850     #     my $query = qq|
851     #         SELECT count(*)
852     #         FROM   serial
853     #         WHERE  subscriptionid=?
854     #     |;
855     #     $sth=$dbh->prepare($query);
856     #     $sth->execute($subscriptionid);
857     #     my ($totalissues) = $sth->fetchrow;
858     return \@serials;
859 }
860
861 =head2 GetDistributedTo
862
863 =over 4
864
865 $distributedto=GetDistributedTo($subscriptionid)
866 This function select the old previous value of distributedto in the database.
867
868 =back
869
870 =cut
871
872 sub GetDistributedTo {
873     my $dbh = C4::Context->dbh;
874     my $distributedto;
875     my $subscriptionid = @_;
876     my $query = "SELECT distributedto FROM subscription WHERE subscriptionid=?";
877     my $sth   = $dbh->prepare($query);
878     $sth->execute($subscriptionid);
879     return ($distributedto) = $sth->fetchrow;
880 }
881
882 =head2 GetNextSeq
883
884 =over 4
885
886 GetNextSeq($val)
887 $val is a hashref containing all the attributes of the table 'subscription'
888 This function get the next issue for the subscription given on input arg
889 return:
890 all the input params updated.
891
892 =back
893
894 =cut
895
896 # sub GetNextSeq {
897 #     my ($val) =@_;
898 #     my ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
899 #     $calculated = $val->{numberingmethod};
900 # # calculate the (expected) value of the next issue recieved.
901 #     $newlastvalue1 = $val->{lastvalue1};
902 # # check if we have to increase the new value.
903 #     $newinnerloop1 = $val->{innerloop1}+1;
904 #     $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
905 #     $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
906 #     $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
907 #     $calculated =~ s/\{X\}/$newlastvalue1/g;
908 #
909 #     $newlastvalue2 = $val->{lastvalue2};
910 # # check if we have to increase the new value.
911 #     $newinnerloop2 = $val->{innerloop2}+1;
912 #     $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
913 #     $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
914 #     $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
915 #     $calculated =~ s/\{Y\}/$newlastvalue2/g;
916 #
917 #     $newlastvalue3 = $val->{lastvalue3};
918 # # check if we have to increase the new value.
919 #     $newinnerloop3 = $val->{innerloop3}+1;
920 #     $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
921 #     $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
922 #     $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
923 #     $calculated =~ s/\{Z\}/$newlastvalue3/g;
924 #     return ($calculated,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3);
925 # }
926
927 sub GetNextSeq {
928     my ($val) = @_;
929     my (
930         $calculated,    $newlastvalue1, $newlastvalue2, $newlastvalue3,
931         $newinnerloop1, $newinnerloop2, $newinnerloop3
932     );
933     my $pattern = $val->{numberpattern};
934     my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
935     my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
936     $calculated    = $val->{numberingmethod};
937     $newlastvalue1 = $val->{lastvalue1};
938     $newlastvalue2 = $val->{lastvalue2};
939     $newlastvalue3 = $val->{lastvalue3};
940   $newlastvalue1 = $val->{lastvalue1};
941   # check if we have to increase the new value.
942   $newinnerloop1 = $val->{innerloop1} + 1;
943   $newinnerloop1=0 if ($newinnerloop1 >= $val->{every1});
944   $newlastvalue1 += $val->{add1} if ($newinnerloop1<1); # <1 to be true when 0 or empty.
945   $newlastvalue1=$val->{setto1} if ($newlastvalue1>$val->{whenmorethan1}); # reset counter if needed.
946   $calculated =~ s/\{X\}/$newlastvalue1/g;
947   
948   $newlastvalue2 = $val->{lastvalue2};
949   # check if we have to increase the new value.
950   $newinnerloop2 = $val->{innerloop2} + 1;
951   $newinnerloop2=0 if ($newinnerloop2 >= $val->{every2});
952   $newlastvalue2 += $val->{add2} if ($newinnerloop2<1); # <1 to be true when 0 or empty.
953   $newlastvalue2=$val->{setto2} if ($newlastvalue2>$val->{whenmorethan2}); # reset counter if needed.
954   if ( $pattern == 6 ) {
955     if ( $val->{hemisphere} == 2 ) {
956        my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
957        $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
958     }
959     else {
960        my $newlastvalue2seq = $seasons[$newlastvalue2];
961        $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
962     }
963   }
964   else {
965     $calculated =~ s/\{Y\}/$newlastvalue2/g;
966   }
967   
968   
969   $newlastvalue3 = $val->{lastvalue3};
970   # check if we have to increase the new value.
971   $newinnerloop3 = $val->{innerloop3} + 1;
972   $newinnerloop3=0 if ($newinnerloop3 >= $val->{every3});
973   $newlastvalue3 += $val->{add3} if ($newinnerloop3<1); # <1 to be true when 0 or empty.
974   $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed.
975   $calculated =~ s/\{Z\}/$newlastvalue3/g;
976     
977   return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 ,
978            $newinnerloop1, $newinnerloop2, $newinnerloop3);
979 }
980
981 =head2 GetSeq
982
983 =over 4
984
985 $calculated = GetSeq($val)
986 $val is a hashref containing all the attributes of the table 'subscription'
987 this function transforms {X},{Y},{Z} to 150,0,0 for example.
988 return:
989 the sequence in integer format
990
991 =back
992
993 =cut
994
995 sub GetSeq {
996     my ($val)      = @_;
997     my $pattern = $val->{numberpattern};
998     my @seasons = ( 'nothing', 'Winter', 'Spring', 'Summer', 'Autumn' );
999     my @southern_seasons = ( '', 'Summer', 'Autumn', 'Winter', 'Spring' );
1000     my $calculated = $val->{numberingmethod};
1001     my $x          = $val->{'lastvalue1'};
1002     $calculated =~ s/\{X\}/$x/g;
1003     my $newlastvalue2 = $val->{'lastvalue2'};
1004     if ( $pattern == 6 ) {
1005         if ( $val->{hemisphere} == 2 ) {
1006             my $newlastvalue2seq = $southern_seasons[$newlastvalue2];
1007             $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1008         }
1009         else {
1010             my $newlastvalue2seq = $seasons[$newlastvalue2];
1011             $calculated =~ s/\{Y\}/$newlastvalue2seq/g;
1012         }
1013     }
1014     else {
1015         $calculated =~ s/\{Y\}/$newlastvalue2/g;
1016     }
1017     my $z = $val->{'lastvalue3'};
1018     $calculated =~ s/\{Z\}/$z/g;
1019     return $calculated;
1020 }
1021
1022 =head2 GetExpirationDate
1023
1024 $sensddate = GetExpirationDate($subscriptionid)
1025
1026 this function return the expiration date for a subscription given on input args.
1027
1028 return
1029 the enddate
1030
1031 =cut
1032
1033 sub GetExpirationDate {
1034     my ($subscriptionid) = @_;
1035     my $dbh              = C4::Context->dbh;
1036     my $subscription     = GetSubscription($subscriptionid);
1037     my $enddate          = $subscription->{startdate};
1038
1039 # we don't do the same test if the subscription is based on X numbers or on X weeks/months
1040     if (($subscription->{periodicity} % 16) >0){
1041       if ( $subscription->{numberlength} ) {
1042           #calculate the date of the last issue.
1043           my $length = $subscription->{numberlength};
1044           for ( my $i = 1 ; $i <= $length ; $i++ ) {
1045               $enddate = GetNextDate( $enddate, $subscription );
1046           }
1047       }
1048       elsif ( $subscription->{monthlength} ){
1049           my @date=split (/-/,$subscription->{startdate});
1050           my @enddate = Add_Delta_YM($date[0],$date[1],$date[2],0,$subscription->{monthlength});
1051           $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1052       } elsif ( $subscription->{weeklength} ){
1053           my @date=split (/-/,$subscription->{startdate});
1054           my @enddate = Add_Delta_Days($date[0],$date[1],$date[2],$subscription->{weeklength}*7);
1055           $enddate=sprintf("%04d-%02d-%02d",$enddate[0],$enddate[1],$enddate[2]);
1056       }
1057       return $enddate;
1058     } else {
1059       return 0;  
1060     }  
1061 }
1062
1063 =head2 CountSubscriptionFromBiblionumber
1064
1065 =over 4
1066
1067 $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber)
1068 this count the number of subscription for a biblionumber given.
1069 return :
1070 the number of subscriptions with biblionumber given on input arg.
1071
1072 =back
1073
1074 =cut
1075
1076 sub CountSubscriptionFromBiblionumber {
1077     my ($biblionumber) = @_;
1078     my $dbh = C4::Context->dbh;
1079     my $query = "SELECT count(*) FROM subscription WHERE biblionumber=?";
1080     my $sth   = $dbh->prepare($query);
1081     $sth->execute($biblionumber);
1082     my $subscriptionsnumber = $sth->fetchrow;
1083     return $subscriptionsnumber;
1084 }
1085
1086 =head2 ModSubscriptionHistory
1087
1088 =over 4
1089
1090 ModSubscriptionHistory($subscriptionid,$histstartdate,$enddate,$recievedlist,$missinglist,$opacnote,$librariannote);
1091
1092 this function modify the history of a subscription. Put your new values on input arg.
1093
1094 =back
1095
1096 =cut
1097
1098 sub ModSubscriptionHistory {
1099     my (
1100         $subscriptionid, $histstartdate, $enddate, $recievedlist,
1101         $missinglist,    $opacnote,      $librariannote
1102     ) = @_;
1103     my $dbh   = C4::Context->dbh;
1104     my $query = "UPDATE subscriptionhistory 
1105                     SET histstartdate=?,enddate=?,recievedlist=?,missinglist=?,opacnote=?,librariannote=?
1106                     WHERE subscriptionid=?
1107                 ";
1108     my $sth = $dbh->prepare($query);
1109     $recievedlist =~ s/^,//g;
1110     $missinglist  =~ s/^,//g;
1111     $opacnote     =~ s/^,//g;
1112     $sth->execute(
1113         $histstartdate, $enddate,       $recievedlist, $missinglist,
1114         $opacnote,      $librariannote, $subscriptionid
1115     );
1116     return $sth->rows;
1117 }
1118
1119 =head2 ModSerialStatus
1120
1121 =over 4
1122
1123 ModSerialStatus($serialid,$serialseq, $planneddate,$publisheddate,$status,$notes)
1124
1125 This function modify the serial status. Serial status is a number.(eg 2 is "arrived")
1126 Note : if we change from "waited" to something else,then we will have to create a new "waited" entry
1127
1128 =back
1129
1130 =cut
1131
1132 sub ModSerialStatus {
1133     my ( $serialid, $serialseq,  $planneddate,$publisheddate, $status, $notes )
1134       = @_;
1135
1136     #It is a usual serial
1137     # 1st, get previous status :
1138     my $dbh   = C4::Context->dbh;
1139     my $query = "SELECT subscriptionid,status FROM serial WHERE  serialid=?";
1140     my $sth   = $dbh->prepare($query);
1141     $sth->execute($serialid);
1142     my ( $subscriptionid, $oldstatus ) = $sth->fetchrow;
1143
1144     # change status & update subscriptionhistory
1145     my $val;
1146     if ( $status eq 6 ) {
1147         DelIssue( {'serialid'=>$serialid, 'subscriptionid'=>$subscriptionid,'serialseq'=>$serialseq} );
1148     }
1149     else {
1150         my $query =
1151 "UPDATE serial SET serialseq=?,publisheddate=?,planneddate=?,status=?,notes=? WHERE  serialid = ?";
1152         $sth = $dbh->prepare($query);
1153         $sth->execute( $serialseq, $publisheddate, $planneddate, $status,
1154             $notes, $serialid );
1155         $query = "SELECT * FROM   subscription WHERE  subscriptionid = ?";
1156         $sth = $dbh->prepare($query);
1157         $sth->execute($subscriptionid);
1158         my $val = $sth->fetchrow_hashref;
1159         unless ( $val->{manualhistory} ) {
1160             $query =
1161 "SELECT missinglist,recievedlist FROM subscriptionhistory WHERE  subscriptionid=?";
1162             $sth = $dbh->prepare($query);
1163             $sth->execute($subscriptionid);
1164             my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1165             if ( $status eq 2 ) {
1166
1167 #             warn "receivedlist : $recievedlist serialseq :$serialseq, ".index("$recievedlist","$serialseq");
1168                 $recievedlist .= ",$serialseq"
1169                   unless ( index( "$recievedlist", "$serialseq" ) >= 0 );
1170             }
1171
1172 #         warn "missinglist : $missinglist serialseq :$serialseq, ".index("$missinglist","$serialseq");
1173             $missinglist .= ",$serialseq"
1174               if ( $status eq 4
1175                 and not index( "$missinglist", "$serialseq" ) >= 0 );
1176             $missinglist .= ",not issued $serialseq"
1177               if ( $status eq 5
1178                 and index( "$missinglist", "$serialseq" ) >= 0 );
1179             $query =
1180 "UPDATE subscriptionhistory SET recievedlist=?, missinglist=? WHERE  subscriptionid=?";
1181             $sth = $dbh->prepare($query);
1182             $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1183         }
1184     }
1185
1186     # create new waited entry if needed (ie : was a "waited" and has changed)
1187     if ( $oldstatus eq 1 && $status ne 1 ) {
1188         my $query = "SELECT * FROM   subscription WHERE  subscriptionid = ?";
1189         $sth = $dbh->prepare($query);
1190         $sth->execute($subscriptionid);
1191         my $val = $sth->fetchrow_hashref;
1192
1193         # next issue number
1194 #     warn "Next Seq";    
1195         my (
1196             $newserialseq,  $newlastvalue1, $newlastvalue2, $newlastvalue3,
1197             $newinnerloop1, $newinnerloop2, $newinnerloop3
1198         ) = GetNextSeq($val);
1199 #     warn "Next Seq End";    
1200
1201         # next date (calculated from actual date & frequency parameters)
1202 #         warn "publisheddate :$publisheddate ";
1203         my $nextpublisheddate = GetNextDate( $publisheddate, $val );
1204         NewIssue( $newserialseq, $subscriptionid, $val->{'biblionumber'},
1205             1, $nextpublisheddate, $nextpublisheddate );
1206         $query =
1207 "UPDATE subscription SET lastvalue1=?, lastvalue2=?, lastvalue3=?, innerloop1=?, innerloop2=?, innerloop3=?
1208                     WHERE  subscriptionid = ?";
1209         $sth = $dbh->prepare($query);
1210         $sth->execute(
1211             $newlastvalue1, $newlastvalue2, $newlastvalue3, $newinnerloop1,
1212             $newinnerloop2, $newinnerloop3, $subscriptionid
1213         );
1214
1215 # check if an alert must be sent... (= a letter is defined & status became "arrived"
1216         if ( $val->{letter} && $status eq 2 && $oldstatus ne 2 ) {
1217             SendAlerts( 'issue', $val->{subscriptionid}, $val->{letter} );
1218         }
1219     }
1220 }
1221
1222 =head2 GetNextExpected
1223
1224 =over 4
1225
1226 $nextexpected = GetNextExpected($subscriptionid)
1227
1228 Get the planneddate for the current expected issue of the subscription.
1229
1230 returns a hashref:
1231
1232 $nextexepected = {
1233     serialid => int
1234     planneddate => C4::Dates object
1235     }
1236
1237 =back
1238
1239 =cut
1240
1241 sub GetNextExpected($) {
1242     my ($subscriptionid) = @_;
1243     my $dbh = C4::Context->dbh;
1244     my $sth = $dbh->prepare('SELECT serialid, planneddate FROM serial WHERE subscriptionid=? AND status=?');
1245     # Each subscription has only one 'expected' issue, with serial.status==1.
1246     $sth->execute( $subscriptionid, 1 );
1247     my ( $nextissue ) = $sth->fetchrow_hashref;
1248     $nextissue->{planneddate} = C4::Dates->new($nextissue->{planneddate},'iso');
1249     return $nextissue;
1250 }
1251 =head2 ModNextExpected
1252
1253 =over 4
1254
1255 ModNextExpected($subscriptionid,$date)
1256
1257 Update the planneddate for the current expected issue of the subscription.
1258 This will modify all future prediction results.  
1259
1260 C<$date> is a C4::Dates object.
1261
1262 =back
1263
1264 =cut
1265
1266 sub ModNextExpected($$) {
1267     my ($subscriptionid,$date) = @_;
1268     my $dbh = C4::Context->dbh;
1269     #FIXME: Would expect to only set planneddate, but we set both on new issue creation, so updating it here
1270     my $sth = $dbh->prepare('UPDATE serial SET planneddate=?,publisheddate=? WHERE subscriptionid=? AND status=?');
1271     # Each subscription has only one 'expected' issue, with serial.status==1.
1272     $sth->execute( $date->output('iso'),$date->output('iso'), $subscriptionid, 1);
1273     return 0;
1274
1275 }
1276
1277 =head2 ModSubscription
1278
1279 =over 4
1280
1281 this function modify a subscription. Put all new values on input args.
1282
1283 =back
1284
1285 =cut
1286
1287 sub ModSubscription {
1288     my (
1289         $auser,           $branchcode,   $aqbooksellerid, $cost,
1290         $aqbudgetid,      $startdate,    $periodicity,    $firstacquidate,
1291         $dow,             $irregularity, $numberpattern,  $numberlength,
1292         $weeklength,      $monthlength,  $add1,           $every1,
1293         $whenmorethan1,   $setto1,       $lastvalue1,     $innerloop1,
1294         $add2,            $every2,       $whenmorethan2,  $setto2,
1295         $lastvalue2,      $innerloop2,   $add3,           $every3,
1296         $whenmorethan3,   $setto3,       $lastvalue3,     $innerloop3,
1297         $numberingmethod, $status,       $biblionumber,   $callnumber,
1298         $notes,           $letter,       $hemisphere,     $manualhistory,
1299         $internalnotes,   $serialsadditems,
1300         $subscriptionid
1301     ) = @_;
1302 #     warn $irregularity;
1303     my $dbh   = C4::Context->dbh;
1304     my $query = "UPDATE subscription
1305                     SET librarian=?, branchcode=?,aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
1306                         periodicity=?,firstacquidate=?,dow=?,irregularity=?, numberpattern=?, numberlength=?,weeklength=?,monthlength=?,
1307                         add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
1308                         add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
1309                         add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
1310                         numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, letter=?, hemisphere=?,manualhistory=?,internalnotes=?,serialsadditems=?
1311                     WHERE subscriptionid = ?";
1312 #     warn "query :".$query;
1313     my $sth = $dbh->prepare($query);
1314     $sth->execute(
1315         $auser,           $branchcode,   $aqbooksellerid, $cost,
1316         $aqbudgetid,      $startdate,    $periodicity,    $firstacquidate,
1317         $dow,             "$irregularity", $numberpattern,  $numberlength,
1318         $weeklength,      $monthlength,  $add1,           $every1,
1319         $whenmorethan1,   $setto1,       $lastvalue1,     $innerloop1,
1320         $add2,            $every2,       $whenmorethan2,  $setto2,
1321         $lastvalue2,      $innerloop2,   $add3,           $every3,
1322         $whenmorethan3,   $setto3,       $lastvalue3,     $innerloop3,
1323         $numberingmethod, $status,       $biblionumber,   $callnumber,
1324         $notes,           $letter,       $hemisphere,     ($manualhistory?$manualhistory:0),
1325         $internalnotes,   $serialsadditems,
1326         $subscriptionid
1327     );
1328     my $rows=$sth->rows;
1329     $sth->finish;
1330     
1331     logaction("SERIAL", "MODIFY", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1332     return $rows;
1333 }
1334
1335 =head2 NewSubscription
1336
1337 =over 4
1338
1339 $subscriptionid = &NewSubscription($auser,branchcode,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
1340     $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength,
1341     $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
1342     $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
1343     $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
1344     $numberingmethod, $status, $notes, $serialsadditems)
1345
1346 Create a new subscription with value given on input args.
1347
1348 return :
1349 the id of this new subscription
1350
1351 =back
1352
1353 =cut
1354
1355 sub NewSubscription {
1356     my (
1357         $auser,         $branchcode,   $aqbooksellerid,  $cost,
1358         $aqbudgetid,    $biblionumber, $startdate,       $periodicity,
1359         $dow,           $numberlength, $weeklength,      $monthlength,
1360         $add1,          $every1,       $whenmorethan1,   $setto1,
1361         $lastvalue1,    $innerloop1,   $add2,            $every2,
1362         $whenmorethan2, $setto2,       $lastvalue2,      $innerloop2,
1363         $add3,          $every3,       $whenmorethan3,   $setto3,
1364         $lastvalue3,    $innerloop3,   $numberingmethod, $status,
1365         $notes,         $letter,       $firstacquidate,  $irregularity,
1366         $numberpattern, $callnumber,   $hemisphere,      $manualhistory,
1367         $internalnotes, $serialsadditems,
1368     ) = @_;
1369     my $dbh = C4::Context->dbh;
1370
1371     #save subscription (insert into database)
1372     my $query = qq|
1373         INSERT INTO subscription
1374             (librarian,branchcode,aqbooksellerid,cost,aqbudgetid,biblionumber,
1375             startdate,periodicity,dow,numberlength,weeklength,monthlength,
1376             add1,every1,whenmorethan1,setto1,lastvalue1,innerloop1,
1377             add2,every2,whenmorethan2,setto2,lastvalue2,innerloop2,
1378             add3,every3,whenmorethan3,setto3,lastvalue3,innerloop3,
1379             numberingmethod, status, notes, letter,firstacquidate,irregularity,
1380             numberpattern, callnumber, hemisphere,manualhistory,internalnotes,serialsadditems)
1381         VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
1382         |;
1383     my $sth = $dbh->prepare($query);
1384     $sth->execute(
1385         $auser,                         $branchcode,
1386         $aqbooksellerid,                $cost,
1387         $aqbudgetid,                    $biblionumber,
1388         format_date_in_iso($startdate), $periodicity,
1389         $dow,                           $numberlength,
1390         $weeklength,                    $monthlength,
1391         $add1,                          $every1,
1392         $whenmorethan1,                 $setto1,
1393         $lastvalue1,                    $innerloop1,
1394         $add2,                          $every2,
1395         $whenmorethan2,                 $setto2,
1396         $lastvalue2,                    $innerloop2,
1397         $add3,                          $every3,
1398         $whenmorethan3,                 $setto3,
1399         $lastvalue3,                    $innerloop3,
1400         $numberingmethod,               "$status",
1401         $notes,                         $letter,
1402         format_date_in_iso($firstacquidate),                $irregularity,
1403         $numberpattern,                 $callnumber,
1404         $hemisphere,                    $manualhistory,
1405         $internalnotes,                 $serialsadditems,
1406     );
1407
1408     #then create the 1st waited number
1409     my $subscriptionid = $dbh->{'mysql_insertid'};
1410     $query             = qq(
1411         INSERT INTO subscriptionhistory
1412             (biblionumber, subscriptionid, histstartdate,  opacnote, librariannote)
1413         VALUES (?,?,?,?,?)
1414         );
1415     $sth = $dbh->prepare($query);
1416     $sth->execute( $biblionumber, $subscriptionid,
1417         format_date_in_iso($startdate),
1418         $notes,$internalnotes );
1419
1420    # reread subscription to get a hash (for calculation of the 1st issue number)
1421     $query = qq(
1422         SELECT *
1423         FROM   subscription
1424         WHERE  subscriptionid = ?
1425     );
1426     $sth = $dbh->prepare($query);
1427     $sth->execute($subscriptionid);
1428     my $val = $sth->fetchrow_hashref;
1429
1430     # calculate issue number
1431     my $serialseq = GetSeq($val);
1432     $query     = qq|
1433         INSERT INTO serial
1434             (serialseq,subscriptionid,biblionumber,status, planneddate, publisheddate)
1435         VALUES (?,?,?,?,?,?)
1436     |;
1437     $sth = $dbh->prepare($query);
1438     $sth->execute(
1439         "$serialseq", $subscriptionid, $biblionumber, 1,
1440         format_date_in_iso($firstacquidate),
1441         format_date_in_iso($firstacquidate)
1442     );
1443     
1444     logaction("SERIAL", "ADD", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1445     
1446 #set serial flag on biblio if not already set.
1447     my ($null, ($bib)) = GetBiblio($biblionumber);
1448     if( ! $bib->{'serial'} ) {
1449         my $record = GetMarcBiblio($biblionumber);
1450         my ($tag,$subf) = GetMarcFromKohaField('biblio.serial',$bib->{'frameworkcode'});
1451         if($tag) {
1452             eval {
1453             $record->field($tag)->update( $subf => 1 );
1454             };
1455         }
1456         ModBiblio($record,$biblionumber,$bib->{'frameworkcode'});
1457     }    
1458     return $subscriptionid;
1459 }
1460
1461 =head2 ReNewSubscription
1462
1463 =over 4
1464
1465 ReNewSubscription($subscriptionid,$user,$startdate,$numberlength,$weeklength,$monthlength,$note)
1466
1467 this function renew a subscription with values given on input args.
1468
1469 =back
1470
1471 =cut
1472
1473 sub ReNewSubscription {
1474     my ( $subscriptionid, $user, $startdate, $numberlength, $weeklength,
1475         $monthlength, $note )
1476       = @_;
1477     my $dbh          = C4::Context->dbh;
1478     my $subscription = GetSubscription($subscriptionid);
1479      my $query        = qq|
1480          SELECT *
1481          FROM   biblio 
1482          LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber
1483          WHERE    biblio.biblionumber=?
1484      |;
1485      my $sth = $dbh->prepare($query);
1486      $sth->execute( $subscription->{biblionumber} );
1487      my $biblio = $sth->fetchrow_hashref;
1488      if (C4::Context->preference("RenewSerialAddsSuggestion")){
1489         NewSuggestion(
1490             $user,             $subscription->{bibliotitle},
1491             $biblio->{author}, $biblio->{publishercode},
1492             $biblio->{note},   '',
1493             '',                '',
1494             '',                '',
1495             $subscription->{biblionumber}
1496         );
1497     }
1498
1499     # renew subscription
1500     $query = qq|
1501         UPDATE subscription
1502         SET    startdate=?,numberlength=?,weeklength=?,monthlength=?
1503         WHERE  subscriptionid=?
1504     |;
1505     $sth = $dbh->prepare($query);
1506     $sth->execute( format_date_in_iso($startdate),
1507         $numberlength, $weeklength, $monthlength, $subscriptionid );
1508         
1509     logaction("SERIAL", "RENEW", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1510 }
1511
1512 =head2 NewIssue
1513
1514 =over 4
1515
1516 NewIssue($serialseq,$subscriptionid,$biblionumber,$status, $planneddate, $publisheddate,  $notes)
1517
1518 Create a new issue stored on the database.
1519 Note : we have to update the recievedlist and missinglist on subscriptionhistory for this subscription.
1520
1521 =back
1522
1523 =cut
1524
1525 sub NewIssue {
1526     my ( $serialseq, $subscriptionid, $biblionumber, $status, 
1527         $planneddate, $publisheddate, $notes )
1528       = @_;
1529     ### FIXME biblionumber CAN be provided by subscriptionid. So Do we STILL NEED IT ?
1530     
1531     my $dbh   = C4::Context->dbh;
1532     my $query = qq|
1533         INSERT INTO serial
1534             (serialseq,subscriptionid,biblionumber,status,publisheddate,planneddate,notes)
1535         VALUES (?,?,?,?,?,?,?)
1536     |;
1537     my $sth = $dbh->prepare($query);
1538     $sth->execute( $serialseq, $subscriptionid, $biblionumber, $status,
1539         $publisheddate, $planneddate,$notes );
1540     my $serialid=$dbh->{'mysql_insertid'};
1541     $query = qq|
1542         SELECT missinglist,recievedlist
1543         FROM   subscriptionhistory
1544         WHERE  subscriptionid=?
1545     |;
1546     $sth = $dbh->prepare($query);
1547     $sth->execute($subscriptionid);
1548     my ( $missinglist, $recievedlist ) = $sth->fetchrow;
1549
1550     if ( $status eq 2 ) {
1551       ### TODO Add a feature that improves recognition and description.
1552       ### As such count (serialseq) i.e. : N18,2(N19),N20
1553       ### Would use substr and index But be careful to previous presence of ()
1554         $recievedlist .= ",$serialseq" unless (index($recievedlist,$serialseq)>0);
1555     }
1556     if ( $status eq 4 ) {
1557         $missinglist .= ",$serialseq" unless (index($missinglist,$serialseq)>0);
1558     }
1559     $query = qq|
1560         UPDATE subscriptionhistory
1561         SET    recievedlist=?, missinglist=?
1562         WHERE  subscriptionid=?
1563     |;
1564     $sth = $dbh->prepare($query);
1565     $sth->execute( $recievedlist, $missinglist, $subscriptionid );
1566     return $serialid;
1567 }
1568
1569 =head2 ItemizeSerials
1570
1571 =over 4
1572
1573 ItemizeSerials($serialid, $info);
1574 $info is a hashref containing  barcode branch, itemcallnumber, status, location
1575 $serialid the serialid
1576 return :
1577 1 if the itemize is a succes.
1578 0 and @error else. @error containts the list of errors found.
1579
1580 =back
1581
1582 =cut
1583
1584 sub ItemizeSerials {
1585     my ( $serialid, $info ) = @_;
1586     my $now = POSIX::strftime( "%Y-%m-%d",localtime );
1587
1588     my $dbh   = C4::Context->dbh;
1589     my $query = qq|
1590         SELECT *
1591         FROM   serial
1592         WHERE  serialid=?
1593     |;
1594     my $sth = $dbh->prepare($query);
1595     $sth->execute($serialid);
1596     my $data = $sth->fetchrow_hashref;
1597     if ( C4::Context->preference("RoutingSerials") ) {
1598
1599         # check for existing biblioitem relating to serial issue
1600         my ( $count, @results ) =
1601           GetBiblioItemByBiblioNumber( $data->{'biblionumber'} );
1602         my $bibitemno = 0;
1603         for ( my $i = 0 ; $i < $count ; $i++ ) {
1604             if (  $results[$i]->{'volumeddesc'} eq $data->{'serialseq'} . ' ('
1605                 . $data->{'planneddate'}
1606                 . ')' )
1607             {
1608                 $bibitemno = $results[$i]->{'biblioitemnumber'};
1609                 last;
1610             }
1611         }
1612         if ( $bibitemno == 0 ) {
1613
1614     # warn "need to add new biblioitem so copy last one and make minor changes";
1615             my $sth =
1616               $dbh->prepare(
1617 "SELECT * FROM biblioitems WHERE biblionumber = ? ORDER BY biblioitemnumber DESC"
1618               );
1619             $sth->execute( $data->{'biblionumber'} );
1620             my $biblioitem = $sth->fetchrow_hashref;
1621             $biblioitem->{'volumedate'} =
1622               format_date_in_iso( $data->{planneddate} );
1623             $biblioitem->{'volumeddesc'} =
1624               $data->{serialseq} . ' ('
1625               . format_date( $data->{'planneddate'} ) . ')';
1626             $biblioitem->{'dewey'} = $info->{itemcallnumber};
1627
1628             #FIXME  HDL : I don't understand why you need to call newbiblioitem, as the biblioitem should already be somewhere.
1629             # so I comment it, we can speak of it when you want
1630             # newbiblioitems has been removed from Biblio.pm, as it has a deprecated API now
1631 #             if ( $info->{barcode} )
1632 #             {    # only make biblioitem if we are going to make item also
1633 #                 $bibitemno = newbiblioitem($biblioitem);
1634 #             }
1635         }
1636     }
1637
1638     my $fwk = GetFrameworkCode( $data->{'biblionumber'} );
1639     if ( $info->{barcode} ) {
1640         my @errors;
1641         my $exists = itemdata( $info->{'barcode'} );
1642         push @errors, "barcode_not_unique" if ($exists);
1643         unless ($exists) {
1644             my $marcrecord = MARC::Record->new();
1645             my ( $tag, $subfield ) =
1646               GetMarcFromKohaField( "items.barcode", $fwk );
1647             my $newField =
1648               MARC::Field->new( "$tag", '', '',
1649                 "$subfield" => $info->{barcode} );
1650             $marcrecord->insert_fields_ordered($newField);
1651             if ( $info->{branch} ) {
1652                 my ( $tag, $subfield ) =
1653                   GetMarcFromKohaField( "items.homebranch",
1654                     $fwk );
1655
1656                 #warn "items.homebranch : $tag , $subfield";
1657                 if ( $marcrecord->field($tag) ) {
1658                     $marcrecord->field($tag)
1659                       ->add_subfields( "$subfield" => $info->{branch} );
1660                 }
1661                 else {
1662                     my $newField =
1663                       MARC::Field->new( "$tag", '', '',
1664                         "$subfield" => $info->{branch} );
1665                     $marcrecord->insert_fields_ordered($newField);
1666                 }
1667                 ( $tag, $subfield ) =
1668                   GetMarcFromKohaField( "items.holdingbranch",
1669                     $fwk );
1670
1671                 #warn "items.holdingbranch : $tag , $subfield";
1672                 if ( $marcrecord->field($tag) ) {
1673                     $marcrecord->field($tag)
1674                       ->add_subfields( "$subfield" => $info->{branch} );
1675                 }
1676                 else {
1677                     my $newField =
1678                       MARC::Field->new( "$tag", '', '',
1679                         "$subfield" => $info->{branch} );
1680                     $marcrecord->insert_fields_ordered($newField);
1681                 }
1682             }
1683             if ( $info->{itemcallnumber} ) {
1684                 my ( $tag, $subfield ) =
1685                   GetMarcFromKohaField( "items.itemcallnumber",
1686                     $fwk );
1687
1688                 #warn "items.itemcallnumber : $tag , $subfield";
1689                 if ( $marcrecord->field($tag) ) {
1690                     $marcrecord->field($tag)
1691                       ->add_subfields( "$subfield" => $info->{itemcallnumber} );
1692                 }
1693                 else {
1694                     my $newField =
1695                       MARC::Field->new( "$tag", '', '',
1696                         "$subfield" => $info->{itemcallnumber} );
1697                     $marcrecord->insert_fields_ordered($newField);
1698                 }
1699             }
1700             if ( $info->{notes} ) {
1701                 my ( $tag, $subfield ) =
1702                   GetMarcFromKohaField( "items.itemnotes", $fwk );
1703
1704                 # warn "items.itemnotes : $tag , $subfield";
1705                 if ( $marcrecord->field($tag) ) {
1706                     $marcrecord->field($tag)
1707                       ->add_subfields( "$subfield" => $info->{notes} );
1708                 }
1709                 else {
1710                     my $newField =
1711                       MARC::Field->new( "$tag", '', '',
1712                         "$subfield" => $info->{notes} );
1713                     $marcrecord->insert_fields_ordered($newField);
1714                 }
1715             }
1716             if ( $info->{location} ) {
1717                 my ( $tag, $subfield ) =
1718                   GetMarcFromKohaField( "items.location", $fwk );
1719
1720                 # warn "items.location : $tag , $subfield";
1721                 if ( $marcrecord->field($tag) ) {
1722                     $marcrecord->field($tag)
1723                       ->add_subfields( "$subfield" => $info->{location} );
1724                 }
1725                 else {
1726                     my $newField =
1727                       MARC::Field->new( "$tag", '', '',
1728                         "$subfield" => $info->{location} );
1729                     $marcrecord->insert_fields_ordered($newField);
1730                 }
1731             }
1732             if ( $info->{status} ) {
1733                 my ( $tag, $subfield ) =
1734                   GetMarcFromKohaField( "items.notforloan",
1735                     $fwk );
1736
1737                 # warn "items.notforloan : $tag , $subfield";
1738                 if ( $marcrecord->field($tag) ) {
1739                     $marcrecord->field($tag)
1740                       ->add_subfields( "$subfield" => $info->{status} );
1741                 }
1742                 else {
1743                     my $newField =
1744                       MARC::Field->new( "$tag", '', '',
1745                         "$subfield" => $info->{status} );
1746                     $marcrecord->insert_fields_ordered($newField);
1747                 }
1748             }
1749             if ( C4::Context->preference("RoutingSerials") ) {
1750                 my ( $tag, $subfield ) =
1751                   GetMarcFromKohaField( "items.dateaccessioned",
1752                     $fwk );
1753                 if ( $marcrecord->field($tag) ) {
1754                     $marcrecord->field($tag)
1755                       ->add_subfields( "$subfield" => $now );
1756                 }
1757                 else {
1758                     my $newField =
1759                       MARC::Field->new( "$tag", '', '', "$subfield" => $now );
1760                     $marcrecord->insert_fields_ordered($newField);
1761                 }
1762             }
1763             AddItemFromMarc( $marcrecord, $data->{'biblionumber'} );
1764             return 1;
1765         }
1766         return ( 0, @errors );
1767     }
1768 }
1769
1770 =head2 HasSubscriptionExpired
1771
1772 =over 4
1773
1774 1 or 0 = HasSubscriptionExpired($subscriptionid)
1775
1776 the subscription has expired when the next issue to arrive is out of subscription limit.
1777
1778 return :
1779 1 if true, 0 if false.
1780
1781 =back
1782
1783 =cut
1784
1785 sub HasSubscriptionExpired {
1786     my ($subscriptionid) = @_;
1787     my $dbh              = C4::Context->dbh;
1788     my $subscription     = GetSubscription($subscriptionid);
1789     if (($subscription->{periodicity} % 16)>0){
1790       my $expirationdate   = GetExpirationDate($subscriptionid);
1791       my $query = qq|
1792             SELECT max(planneddate)
1793             FROM   serial
1794             WHERE  subscriptionid=?
1795       |;
1796       my $sth = $dbh->prepare($query);
1797       $sth->execute($subscriptionid);
1798       my ($res) = $sth->fetchrow  ;
1799       my @res=split (/-/,$res);
1800       my @endofsubscriptiondate=split(/-/,$expirationdate);
1801       foreach (@res,@endofsubscriptiondate){
1802         return 2 unless $_ ;
1803       } 
1804       return 1 if ( (@endofsubscriptiondate && Delta_Days($res[0],$res[1],$res[2],
1805                   $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) <= 0)
1806                   || (!$res));
1807       return 0;
1808     } else {
1809       if ($subscription->{'numberlength'}){
1810         my $countreceived=countissuesfrom($subscriptionid,$subscription->{'startdate'});
1811         return 1 if ($countreceived >$subscription->{'numberlength'});
1812               return 0;
1813       } else {
1814               return 0;
1815       }
1816     }
1817     return 0;   # Notice that you'll never get here.
1818 }
1819
1820 =head2 SetDistributedto
1821
1822 =over 4
1823
1824 SetDistributedto($distributedto,$subscriptionid);
1825 This function update the value of distributedto for a subscription given on input arg.
1826
1827 =back
1828
1829 =cut
1830
1831 sub SetDistributedto {
1832     my ( $distributedto, $subscriptionid ) = @_;
1833     my $dbh   = C4::Context->dbh;
1834     my $query = qq|
1835         UPDATE subscription
1836         SET    distributedto=?
1837         WHERE  subscriptionid=?
1838     |;
1839     my $sth = $dbh->prepare($query);
1840     $sth->execute( $distributedto, $subscriptionid );
1841 }
1842
1843 =head2 DelSubscription
1844
1845 =over 4
1846
1847 DelSubscription($subscriptionid)
1848 this function delete the subscription which has $subscriptionid as id.
1849
1850 =back
1851
1852 =cut
1853
1854 sub DelSubscription {
1855     my ($subscriptionid) = @_;
1856     my $dbh = C4::Context->dbh;
1857     $subscriptionid = $dbh->quote($subscriptionid);
1858     $dbh->do("DELETE FROM subscription WHERE subscriptionid=$subscriptionid");
1859     $dbh->do(
1860         "DELETE FROM subscriptionhistory WHERE subscriptionid=$subscriptionid");
1861     $dbh->do("DELETE FROM serial WHERE subscriptionid=$subscriptionid");
1862     
1863     logaction("SERIAL", "DELETE", $subscriptionid, "") if C4::Context->preference("SubscriptionLog");
1864 }
1865
1866 =head2 DelIssue
1867
1868 =over 4
1869
1870 DelIssue($serialseq,$subscriptionid)
1871 this function delete an issue which has $serialseq and $subscriptionid given on input arg.
1872
1873 =back
1874
1875 =cut
1876
1877 sub DelIssue {
1878     my ( $dataissue) = @_;
1879     my $dbh   = C4::Context->dbh;
1880     ### TODO Add itemdeletion. Would need to get itemnumbers. Should be in a pref ?
1881     
1882     my $query = qq|
1883         DELETE FROM serial
1884         WHERE       serialid= ?
1885         AND         subscriptionid= ?
1886     |;
1887     my $mainsth = $dbh->prepare($query);
1888     $mainsth->execute( $dataissue->{'serialid'}, $dataissue->{'subscriptionid'});
1889
1890     #Delete element from subscription history
1891     $query = "SELECT * FROM   subscription WHERE  subscriptionid = ?";
1892     my $sth   = $dbh->prepare($query);
1893     $sth->execute($dataissue->{'subscriptionid'});
1894     my $val = $sth->fetchrow_hashref;
1895     unless ( $val->{manualhistory} ) {
1896         my $query = qq|
1897           SELECT * FROM subscriptionhistory
1898           WHERE       subscriptionid= ?
1899       |;
1900         my $sth = $dbh->prepare($query);
1901         $sth->execute($dataissue->{'subscriptionid'});
1902         my $data = $sth->fetchrow_hashref;
1903         my $serialseq= $dataissue->{'serialseq'};
1904         $data->{'missinglist'}  =~ s/\b$serialseq\b//;
1905         $data->{'recievedlist'} =~ s/\b$serialseq\b//;
1906         my $strsth = "UPDATE subscriptionhistory SET "
1907           . join( ",",
1908             map { join( "=", $_, $dbh->quote( $data->{$_} ) ) } keys %$data )
1909           . " WHERE subscriptionid=?";
1910         $sth = $dbh->prepare($strsth);
1911         $sth->execute($dataissue->{'subscriptionid'});
1912     }
1913     
1914     return $mainsth->rows;
1915 }
1916
1917 =head2 GetLateOrMissingIssues
1918
1919 =over 4
1920
1921 ($count,@issuelist) = &GetLateMissingIssues($supplierid,$serialid)
1922
1923 this function select missing issues on database - where serial.status = 4 or serial.status=3 or planneddate<now
1924
1925 return :
1926 a count of the number of missing issues
1927 the issuelist into a table. Each line of this table containts a ref to a hash which it containts
1928 name,title,planneddate,serialseq,serial.subscriptionid from tables : subscription, serial & biblio
1929
1930 =back
1931
1932 =cut
1933
1934 sub GetLateOrMissingIssues {
1935     my ( $supplierid, $serialid,$order ) = @_;
1936     my $dbh = C4::Context->dbh;
1937     my $sth;
1938     my $byserial = '';
1939     if ($serialid) {
1940         $byserial = "and serialid = " . $serialid;
1941     }
1942     if ($order){
1943       $order.=", title";
1944     } else {
1945       $order="title";
1946     }
1947     if ($supplierid) {
1948         $sth = $dbh->prepare(
1949 "SELECT
1950    serialid,
1951    aqbooksellerid,
1952    name,
1953    biblio.title,
1954    planneddate,
1955    serialseq,
1956    serial.status,
1957    serial.subscriptionid,
1958    claimdate
1959 FROM      serial 
1960 LEFT JOIN subscription  ON serial.subscriptionid=subscription.subscriptionid 
1961 LEFT JOIN biblio        ON subscription.biblionumber=biblio.biblionumber
1962 LEFT JOIN aqbooksellers ON subscription.aqbooksellerid = aqbooksellers.id
1963 WHERE subscription.subscriptionid = serial.subscriptionid 
1964 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1965 AND subscription.aqbooksellerid=$supplierid
1966 $byserial
1967 ORDER BY $order"
1968         );
1969     }
1970     else {
1971         $sth = $dbh->prepare(
1972 "SELECT 
1973    serialid,
1974    aqbooksellerid,
1975    name,
1976    biblio.title,
1977    planneddate,
1978    serialseq,
1979    serial.status,
1980    serial.subscriptionid,
1981    claimdate
1982 FROM serial 
1983 LEFT JOIN subscription 
1984 ON serial.subscriptionid=subscription.subscriptionid 
1985 LEFT JOIN biblio 
1986 ON subscription.biblionumber=biblio.biblionumber
1987 LEFT JOIN aqbooksellers 
1988 ON subscription.aqbooksellerid = aqbooksellers.id
1989 WHERE 
1990    subscription.subscriptionid = serial.subscriptionid 
1991 AND (serial.STATUS = 4 OR ((planneddate < now() AND serial.STATUS =1) OR serial.STATUS = 3))
1992 $byserial
1993 ORDER BY $order"
1994         );
1995     }
1996     $sth->execute;
1997     my @issuelist;
1998     my $last_title;
1999     my $odd   = 0;
2000     my $count = 0;
2001     while ( my $line = $sth->fetchrow_hashref ) {
2002         $odd++ unless $line->{title} eq $last_title;
2003         $last_title = $line->{title} if ( $line->{title} );
2004         $line->{planneddate} = format_date( $line->{planneddate} );
2005         $line->{claimdate}   = format_date( $line->{claimdate} );
2006         $line->{"status".$line->{status}}   = 1;
2007         $line->{'odd'} = 1 if $odd % 2;
2008         $count++;
2009         push @issuelist, $line;
2010     }
2011     return $count, @issuelist;
2012 }
2013
2014 =head2 removeMissingIssue
2015
2016 =over 4
2017
2018 removeMissingIssue($subscriptionid)
2019
2020 this function removes an issue from being part of the missing string in 
2021 subscriptionlist.missinglist column
2022
2023 called when a missing issue is found from the serials-recieve.pl file
2024
2025 =back
2026
2027 =cut
2028
2029 sub removeMissingIssue {
2030     my ( $sequence, $subscriptionid ) = @_;
2031     my $dbh = C4::Context->dbh;
2032     my $sth =
2033       $dbh->prepare(
2034         "SELECT * FROM subscriptionhistory WHERE subscriptionid = ?");
2035     $sth->execute($subscriptionid);
2036     my $data              = $sth->fetchrow_hashref;
2037     my $missinglist       = $data->{'missinglist'};
2038     my $missinglistbefore = $missinglist;
2039
2040     # warn $missinglist." before";
2041     $missinglist =~ s/($sequence)//;
2042
2043     # warn $missinglist." after";
2044     if ( $missinglist ne $missinglistbefore ) {
2045         $missinglist =~ s/\|\s\|/\|/g;
2046         $missinglist =~ s/^\| //g;
2047         $missinglist =~ s/\|$//g;
2048         my $sth2 = $dbh->prepare(
2049             "UPDATE subscriptionhistory
2050                                        SET missinglist = ?
2051                                        WHERE subscriptionid = ?"
2052         );
2053         $sth2->execute( $missinglist, $subscriptionid );
2054     }
2055 }
2056
2057 =head2 updateClaim
2058
2059 =over 4
2060
2061 &updateClaim($serialid)
2062
2063 this function updates the time when a claim is issued for late/missing items
2064
2065 called from claims.pl file
2066
2067 =back
2068
2069 =cut
2070
2071 sub updateClaim {
2072     my ($serialid) = @_;
2073     my $dbh        = C4::Context->dbh;
2074     my $sth        = $dbh->prepare(
2075         "UPDATE serial SET claimdate = now()
2076                                    WHERE serialid = ?
2077                                    "
2078     );
2079     $sth->execute($serialid);
2080 }
2081
2082 =head2 getsupplierbyserialid
2083
2084 =over 4
2085
2086 ($result) = &getsupplierbyserialid($serialid)
2087
2088 this function is used to find the supplier id given a serial id
2089
2090 return :
2091 hashref containing serialid, subscriptionid, and aqbooksellerid
2092
2093 =back
2094
2095 =cut
2096
2097 sub getsupplierbyserialid {
2098     my ($serialid) = @_;
2099     my $dbh        = C4::Context->dbh;
2100     my $sth        = $dbh->prepare(
2101         "SELECT serialid, serial.subscriptionid, aqbooksellerid
2102          FROM serial 
2103          LEFT JOIN subscription ON serial.subscriptionid = subscription.subscriptionid
2104          WHERE serialid = ?
2105                                    "
2106     );
2107     $sth->execute($serialid);
2108     my $line   = $sth->fetchrow_hashref;
2109     my $result = $line->{'aqbooksellerid'};
2110     return $result;
2111 }
2112
2113 =head2 check_routing
2114
2115 =over 4
2116
2117 ($result) = &check_routing($subscriptionid)
2118
2119 this function checks to see if a serial has a routing list and returns the count of routingid
2120 used to show either an 'add' or 'edit' link
2121
2122 =back
2123
2124 =cut
2125
2126 sub check_routing {
2127     my ($subscriptionid) = @_;
2128     my $dbh              = C4::Context->dbh;
2129     my $sth              = $dbh->prepare(
2130 "SELECT count(routingid) routingids FROM subscription LEFT JOIN subscriptionroutinglist 
2131                               ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2132                               WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2133                               "
2134     );
2135     $sth->execute($subscriptionid);
2136     my $line   = $sth->fetchrow_hashref;
2137     my $result = $line->{'routingids'};
2138     return $result;
2139 }
2140
2141 =head2 addroutingmember
2142
2143 =over 4
2144
2145 &addroutingmember($borrowernumber,$subscriptionid)
2146
2147 this function takes a borrowernumber and subscriptionid and add the member to the
2148 routing list for that serial subscription and gives them a rank on the list
2149 of either 1 or highest current rank + 1
2150
2151 =back
2152
2153 =cut
2154
2155 sub addroutingmember {
2156     my ( $borrowernumber, $subscriptionid ) = @_;
2157     my $rank;
2158     my $dbh = C4::Context->dbh;
2159     my $sth =
2160       $dbh->prepare(
2161 "SELECT max(ranking) rank FROM subscriptionroutinglist WHERE subscriptionid = ?"
2162       );
2163     $sth->execute($subscriptionid);
2164     while ( my $line = $sth->fetchrow_hashref ) {
2165         if ( $line->{'rank'} > 0 ) {
2166             $rank = $line->{'rank'} + 1;
2167         }
2168         else {
2169             $rank = 1;
2170         }
2171     }
2172     $sth =
2173       $dbh->prepare(
2174 "INSERT INTO subscriptionroutinglist (subscriptionid,borrowernumber,ranking) VALUES (?,?,?)"
2175       );
2176     $sth->execute( $subscriptionid, $borrowernumber, $rank );
2177 }
2178
2179 =head2 reorder_members
2180
2181 =over 4
2182
2183 &reorder_members($subscriptionid,$routingid,$rank)
2184
2185 this function is used to reorder the routing list
2186
2187 it takes the routingid of the member one wants to re-rank and the rank it is to move to
2188 - it gets all members on list puts their routingid's into an array
2189 - removes the one in the array that is $routingid
2190 - then reinjects $routingid at point indicated by $rank
2191 - then update the database with the routingids in the new order
2192
2193 =back
2194
2195 =cut
2196
2197 sub reorder_members {
2198     my ( $subscriptionid, $routingid, $rank ) = @_;
2199     my $dbh = C4::Context->dbh;
2200     my $sth =
2201       $dbh->prepare(
2202 "SELECT * FROM subscriptionroutinglist WHERE subscriptionid = ? ORDER BY ranking ASC"
2203       );
2204     $sth->execute($subscriptionid);
2205     my @result;
2206     while ( my $line = $sth->fetchrow_hashref ) {
2207         push( @result, $line->{'routingid'} );
2208     }
2209
2210     # To find the matching index
2211     my $i;
2212     my $key = -1;    # to allow for 0 being a valid response
2213     for ( $i = 0 ; $i < @result ; $i++ ) {
2214         if ( $routingid == $result[$i] ) {
2215             $key = $i;    # save the index
2216             last;
2217         }
2218     }
2219
2220     # if index exists in array then move it to new position
2221     if ( $key > -1 && $rank > 0 ) {
2222         my $new_rank = $rank -
2223           1;    # $new_rank is what you want the new index to be in the array
2224         my $moving_item = splice( @result, $key, 1 );
2225         splice( @result, $new_rank, 0, $moving_item );
2226     }
2227     for ( my $j = 0 ; $j < @result ; $j++ ) {
2228         my $sth =
2229           $dbh->prepare( "UPDATE subscriptionroutinglist SET ranking = '"
2230               . ( $j + 1 )
2231               . "' WHERE routingid = '"
2232               . $result[$j]
2233               . "'" );
2234         $sth->execute;
2235     }
2236 }
2237
2238 =head2 delroutingmember
2239
2240 =over 4
2241
2242 &delroutingmember($routingid,$subscriptionid)
2243
2244 this function either deletes one member from routing list if $routingid exists otherwise
2245 deletes all members from the routing list
2246
2247 =back
2248
2249 =cut
2250
2251 sub delroutingmember {
2252
2253 # if $routingid exists then deletes that row otherwise deletes all with $subscriptionid
2254     my ( $routingid, $subscriptionid ) = @_;
2255     my $dbh = C4::Context->dbh;
2256     if ($routingid) {
2257         my $sth =
2258           $dbh->prepare(
2259             "DELETE FROM subscriptionroutinglist WHERE routingid = ?");
2260         $sth->execute($routingid);
2261         reorder_members( $subscriptionid, $routingid );
2262     }
2263     else {
2264         my $sth =
2265           $dbh->prepare(
2266             "DELETE FROM subscriptionroutinglist WHERE subscriptionid = ?");
2267         $sth->execute($subscriptionid);
2268     }
2269 }
2270
2271 =head2 getroutinglist
2272
2273 =over 4
2274
2275 ($count,@routinglist) = &getroutinglist($subscriptionid)
2276
2277 this gets the info from the subscriptionroutinglist for $subscriptionid
2278
2279 return :
2280 a count of the number of members on routinglist
2281 the routinglist into a table. Each line of this table containts a ref to a hash which containts
2282 routingid - a unique id, borrowernumber, ranking, and biblionumber of subscription
2283
2284 =back
2285
2286 =cut
2287
2288 sub getroutinglist {
2289     my ($subscriptionid) = @_;
2290     my $dbh              = C4::Context->dbh;
2291     my $sth              = $dbh->prepare(
2292         "SELECT routingid, borrowernumber,
2293                               ranking, biblionumber 
2294          FROM subscription 
2295          LEFT JOIN subscriptionroutinglist ON subscription.subscriptionid = subscriptionroutinglist.subscriptionid
2296          WHERE subscription.subscriptionid = ? ORDER BY ranking ASC
2297                               "
2298     );
2299     $sth->execute($subscriptionid);
2300     my @routinglist;
2301     my $count = 0;
2302     while ( my $line = $sth->fetchrow_hashref ) {
2303         $count++;
2304         push( @routinglist, $line );
2305     }
2306     return ( $count, @routinglist );
2307 }
2308
2309 =head2 countissuesfrom
2310
2311 =over 4
2312
2313 $result = &countissuesfrom($subscriptionid,$startdate)
2314
2315
2316 =back
2317
2318 =cut
2319
2320 sub countissuesfrom {
2321     my ($subscriptionid,$startdate) = @_;
2322     my $dbh              = C4::Context->dbh;
2323     my $query = qq|
2324             SELECT count(*)
2325             FROM   serial
2326             WHERE  subscriptionid=?
2327             AND serial.publisheddate>?
2328         |;
2329     my $sth=$dbh->prepare($query);
2330     $sth->execute($subscriptionid, $startdate);
2331     my ($countreceived)=$sth->fetchrow;
2332     return $countreceived;  
2333 }
2334
2335 =head2 abouttoexpire
2336
2337 =over 4
2338
2339 $result = &abouttoexpire($subscriptionid)
2340
2341 this function alerts you to the penultimate issue for a serial subscription
2342
2343 returns 1 - if this is the penultimate issue
2344 returns 0 - if not
2345
2346 =back
2347
2348 =cut
2349
2350 sub abouttoexpire {
2351     my ($subscriptionid) = @_;
2352     my $dbh              = C4::Context->dbh;
2353     my $subscription     = GetSubscription($subscriptionid);
2354     my $per = $subscription->{'periodicity'};
2355     if ($per % 16>0){
2356       my $expirationdate   = GetExpirationDate($subscriptionid);
2357       my $sth =
2358         $dbh->prepare(
2359           "select max(planneddate) from serial where subscriptionid=?");
2360       $sth->execute($subscriptionid);
2361       my ($res) = $sth->fetchrow ;
2362 #        warn "date expiration : ".$expirationdate." date courante ".$res;
2363       my @res=split /-/,$res;
2364       @res=Date::Calc::Today if ($res[0]*$res[1]==0);
2365       my @endofsubscriptiondate=split/-/,$expirationdate;
2366       my $x;
2367       if ( $per == 1 ) {$x=7;}
2368       if ( $per == 2 ) {$x=7; }
2369       if ( $per == 3 ) {$x=14;}
2370       if ( $per == 4 ) { $x = 21; }
2371       if ( $per == 5 ) { $x = 31; }
2372       if ( $per == 6 ) { $x = 62; }
2373       if ( $per == 7 || $per == 8 ) { $x = 93; }
2374       if ( $per == 9 )  { $x = 190; }
2375       if ( $per == 10 ) { $x = 365; }
2376       if ( $per == 11 ) { $x = 730; }
2377       my @datebeforeend=Add_Delta_Days(  $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2],
2378                     - (3 * $x)) if (@endofsubscriptiondate && $endofsubscriptiondate[0]*$endofsubscriptiondate[1]*$endofsubscriptiondate[2]);
2379               # warn "DATE BEFORE END: $datebeforeend";
2380       return 1 if ( @res && 
2381                     (@datebeforeend && 
2382                         Delta_Days($res[0],$res[1],$res[2],
2383                         $datebeforeend[0],$datebeforeend[1],$datebeforeend[2]) <= 0) && 
2384                     (@endofsubscriptiondate && 
2385                         Delta_Days($res[0],$res[1],$res[2],
2386                         $endofsubscriptiondate[0],$endofsubscriptiondate[1],$endofsubscriptiondate[2]) >= 0) );
2387     return 0;
2388    } elsif ($subscription->{numberlength}>0) {
2389     return (countissuesfrom($subscriptionid,$subscription->{'startdate'}) >=$subscription->{numberlength}-1);
2390    } else {return 0}
2391 }
2392
2393 =head2 old_newsubscription
2394
2395 =over 4
2396
2397 ($subscriptionid) = &old_newsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2398                         $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2399                         $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2400                         $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2401                         $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2402                         $numberingmethod, $status, $callnumber, $notes, $hemisphere)
2403
2404 this function is similar to the NewSubscription subroutine but has a few different
2405 values passed in 
2406 $firstacquidate - date of first serial issue to arrive
2407 $irregularity - the issues not expected separated by a '|'
2408 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2409 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the 
2410    subscription-add.tmpl file
2411 $callnumber - display the callnumber of the serial
2412 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2413
2414 return :
2415 the $subscriptionid number of the new subscription
2416
2417 =back
2418
2419 =cut
2420
2421 sub old_newsubscription {
2422     my (
2423         $auser,         $aqbooksellerid,  $cost,          $aqbudgetid,
2424         $biblionumber,  $startdate,       $periodicity,   $firstacquidate,
2425         $dow,           $irregularity,    $numberpattern, $numberlength,
2426         $weeklength,    $monthlength,     $add1,          $every1,
2427         $whenmorethan1, $setto1,          $lastvalue1,    $add2,
2428         $every2,        $whenmorethan2,   $setto2,        $lastvalue2,
2429         $add3,          $every3,          $whenmorethan3, $setto3,
2430         $lastvalue3,    $numberingmethod, $status,        $callnumber,
2431         $notes,         $hemisphere
2432     ) = @_;
2433     my $dbh = C4::Context->dbh;
2434
2435     #save subscription
2436     my $sth = $dbh->prepare(
2437 "insert into subscription (librarian,aqbooksellerid,cost,aqbudgetid,biblionumber,
2438                                                         startdate,periodicity,firstacquidate,dow,irregularity,numberpattern,numberlength,weeklength,monthlength,
2439                                                                 add1,every1,whenmorethan1,setto1,lastvalue1,
2440                                                                 add2,every2,whenmorethan2,setto2,lastvalue2,
2441                                                                 add3,every3,whenmorethan3,setto3,lastvalue3,
2442                                                                 numberingmethod, status, callnumber, notes, hemisphere) values
2443                                                           (?,?,?,?,?,?,?,?,?,?,?,
2444                                                                                            ?,?,?,?,?,?,?,?,?,?,?,
2445                                                                                            ?,?,?,?,?,?,?,?,?,?,?,?)"
2446     );
2447     $sth->execute(
2448         $auser,         $aqbooksellerid,
2449         $cost,          $aqbudgetid,
2450         $biblionumber,  format_date_in_iso($startdate),
2451         $periodicity,   format_date_in_iso($firstacquidate),
2452         $dow,           $irregularity,
2453         $numberpattern, $numberlength,
2454         $weeklength,    $monthlength,
2455         $add1,          $every1,
2456         $whenmorethan1, $setto1,
2457         $lastvalue1,    $add2,
2458         $every2,        $whenmorethan2,
2459         $setto2,        $lastvalue2,
2460         $add3,          $every3,
2461         $whenmorethan3, $setto3,
2462         $lastvalue3,    $numberingmethod,
2463         $status,        $callnumber,
2464         $notes,         $hemisphere
2465     );
2466
2467     #then create the 1st waited number
2468     my $subscriptionid = $dbh->{'mysql_insertid'};
2469     my $enddate        = GetExpirationDate($subscriptionid);
2470
2471     $sth =
2472       $dbh->prepare(
2473 "insert into subscriptionhistory (biblionumber, subscriptionid, histstartdate, enddate, missinglist, recievedlist, opacnote, librariannote) values (?,?,?,?,?,?,?,?)"
2474       );
2475     $sth->execute(
2476         $biblionumber, $subscriptionid,
2477         format_date_in_iso($startdate),
2478         format_date_in_iso($enddate),
2479         "", "", "", $notes
2480     );
2481
2482    # reread subscription to get a hash (for calculation of the 1st issue number)
2483     $sth =
2484       $dbh->prepare("select * from subscription where subscriptionid = ? ");
2485     $sth->execute($subscriptionid);
2486     my $val = $sth->fetchrow_hashref;
2487
2488     # calculate issue number
2489     my $serialseq = GetSeq($val);
2490     $sth =
2491       $dbh->prepare(
2492 "insert into serial (serialseq,subscriptionid,biblionumber,status, planneddate) values (?,?,?,?,?)"
2493       );
2494     $sth->execute( $serialseq, $subscriptionid, $val->{'biblionumber'},
2495         1, format_date_in_iso($startdate) );
2496     return $subscriptionid;
2497 }
2498
2499 =head2 old_modsubscription
2500
2501 =over 4
2502
2503 ($subscriptionid) = &old_modsubscription($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
2504                         $startdate,$periodicity,$firstacquidate,$dow,$irregularity,$numberpattern,$numberlength,$weeklength,$monthlength,
2505                         $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,
2506                         $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,
2507                         $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,
2508                         $numberingmethod, $status, $callnumber, $notes, $hemisphere, $subscriptionid)
2509
2510 this function is similar to the ModSubscription subroutine but has a few different
2511 values passed in 
2512 $firstacquidate - date of first serial issue to arrive
2513 $irregularity - the issues not expected separated by a '|'
2514 - eg. monthly issue but not expecting issue for june and july would have $irregularity of '6|7'
2515 $numberpattern - the number for an array of labels to reconstruct the javascript correctly in the 
2516    subscription-add.tmpl file
2517 $callnumber - display the callnumber of the serial
2518 $hemisphere - either 2 = southern hemisphere or 1 = northern hemisphere - used for quarterly serials
2519
2520 =back
2521
2522 =cut
2523
2524 sub old_modsubscription {
2525     my (
2526         $auser,        $aqbooksellerid, $cost,           $aqbudgetid,
2527         $startdate,    $periodicity,    $firstacquidate, $dow,
2528         $irregularity, $numberpattern,  $numberlength,   $weeklength,
2529         $monthlength,  $add1,           $every1,         $whenmorethan1,
2530         $setto1,       $lastvalue1,     $innerloop1,     $add2,
2531         $every2,       $whenmorethan2,  $setto2,         $lastvalue2,
2532         $innerloop2,   $add3,           $every3,         $whenmorethan3,
2533         $setto3,       $lastvalue3,     $innerloop3,     $numberingmethod,
2534         $status,       $biblionumber,   $callnumber,     $notes,
2535         $hemisphere,   $subscriptionid
2536     ) = @_;
2537     my $dbh = C4::Context->dbh;
2538     my $sth = $dbh->prepare(
2539 "update subscription set librarian=?, aqbooksellerid=?,cost=?,aqbudgetid=?,startdate=?,
2540                                                    periodicity=?,firstacquidate=?,dow=?,irregularity=?,numberpattern=?,numberlength=?,weeklength=?,monthlength=?,
2541                                                   add1=?,every1=?,whenmorethan1=?,setto1=?,lastvalue1=?,innerloop1=?,
2542                                                   add2=?,every2=?,whenmorethan2=?,setto2=?,lastvalue2=?,innerloop2=?,
2543                                                   add3=?,every3=?,whenmorethan3=?,setto3=?,lastvalue3=?,innerloop3=?,
2544                                                   numberingmethod=?, status=?, biblionumber=?, callnumber=?, notes=?, hemisphere=? where subscriptionid = ?"
2545     );
2546     $sth->execute(
2547         $auser,        $aqbooksellerid, $cost,           $aqbudgetid,
2548         $startdate,    $periodicity,    $firstacquidate, $dow,
2549         $irregularity, $numberpattern,  $numberlength,   $weeklength,
2550         $monthlength,  $add1,           $every1,         $whenmorethan1,
2551         $setto1,       $lastvalue1,     $innerloop1,     $add2,
2552         $every2,       $whenmorethan2,  $setto2,         $lastvalue2,
2553         $innerloop2,   $add3,           $every3,         $whenmorethan3,
2554         $setto3,       $lastvalue3,     $innerloop3,     $numberingmethod,
2555         $status,       $biblionumber,   $callnumber,     $notes,
2556         $hemisphere,   $subscriptionid
2557     );
2558     $sth->finish;
2559
2560     $sth =
2561       $dbh->prepare("select * from subscription where subscriptionid = ? ");
2562     $sth->execute($subscriptionid);
2563     my $val = $sth->fetchrow_hashref;
2564
2565     # calculate issue number
2566     my $serialseq = Get_Seq($val);
2567     $sth =
2568       $dbh->prepare("UPDATE serial SET serialseq = ? WHERE subscriptionid = ?");
2569     $sth->execute( $serialseq, $subscriptionid );
2570
2571     my $enddate = subscriptionexpirationdate($subscriptionid);
2572     $sth = $dbh->prepare("update subscriptionhistory set enddate=?");
2573     $sth->execute( format_date_in_iso($enddate) );
2574 }
2575
2576 =head2 old_getserials
2577
2578 =over 4
2579
2580 ($totalissues,@serials) = &old_getserials($subscriptionid)
2581
2582 this function get a hashref of serials and the total count of them
2583
2584 return :
2585 $totalissues - number of serial lines
2586 the serials into a table. Each line of this table containts a ref to a hash which it containts
2587 serialid, serialseq, status,planneddate,notes,routingnotes  from tables : serial where status is not 2, 4, or 5
2588
2589 =back
2590
2591 =cut
2592
2593 sub old_getserials {
2594     my ($subscriptionid) = @_;
2595     my $dbh = C4::Context->dbh;
2596
2597     # status = 2 is "arrived"
2598     my $sth =
2599       $dbh->prepare(
2600 "select serialid,serialseq, status, planneddate,notes,routingnotes from serial where subscriptionid = ? and status <>2 and status <>4 and status <>5"
2601       );
2602     $sth->execute($subscriptionid);
2603     my @serials;
2604     my $num = 1;
2605     while ( my $line = $sth->fetchrow_hashref ) {
2606         $line->{ "status" . $line->{status} } =
2607           1;    # fills a "statusX" value, used for template status select list
2608         $line->{"planneddate"} = format_date( $line->{"planneddate"} );
2609         $line->{"num"}         = $num;
2610         $num++;
2611         push @serials, $line;
2612     }
2613     $sth = $dbh->prepare("select count(*) from serial where subscriptionid=?");
2614     $sth->execute($subscriptionid);
2615     my ($totalissues) = $sth->fetchrow;
2616     return ( $totalissues, @serials );
2617 }
2618
2619 =head2 GetNextDate
2620
2621 ($resultdate) = &GetNextDate($planneddate,$subscription)
2622
2623 this function is an extension of GetNextDate which allows for checking for irregularity
2624
2625 it takes the planneddate and will return the next issue's date and will skip dates if there
2626 exists an irregularity
2627 - eg if periodicity is monthly and $planneddate is 2007-02-10 but if March and April is to be 
2628 skipped then the returned date will be 2007-05-10
2629
2630 return :
2631 $resultdate - then next date in the sequence
2632
2633 Return 0 if periodicity==0
2634
2635 =cut
2636 sub in_array { # used in next sub down
2637   my ($val,@elements) = @_;
2638   foreach my $elem(@elements) {
2639     if($val == $elem) {
2640             return 1;
2641     }
2642   }
2643   return 0;
2644 }
2645
2646 sub GetNextDate(@) {
2647     my ( $planneddate, $subscription ) = @_;
2648     my @irreg = split( /\,/, $subscription->{irregularity} );
2649
2650     #date supposed to be in ISO.
2651     
2652     my ( $year, $month, $day ) = split(/-/, $planneddate);
2653     $month=1 unless ($month);
2654     $day=1 unless ($day);
2655     my @resultdate;
2656
2657     #       warn "DOW $dayofweek";
2658     if ( $subscription->{periodicity} % 16 == 0 ) {  # 'without regularity' || 'irregular'
2659       return 0;
2660     }  
2661     #   daily : n / week
2662     #   Since we're interpreting irregularity here as which days of the week to skip an issue,
2663     #   renaming this pattern from 1/day to " n / week ".
2664     if ( $subscription->{periodicity} == 1 ) {  
2665         my $dayofweek = eval{Day_of_Week( $year,$month, $day )};
2666         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2667         else {    
2668           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2669               $dayofweek = 0 if ( $dayofweek == 7 ); 
2670               if ( in_array( ($dayofweek + 1), @irreg ) ) {
2671                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 1 );
2672                   $dayofweek++;
2673               }
2674           }
2675           @resultdate = Add_Delta_Days($year,$month, $day , 1 );
2676         }    
2677     }
2678     #   1  week
2679     if ( $subscription->{periodicity} == 2 ) {
2680         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2681         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2682         else {    
2683           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2684           #FIXME: if two consecutive irreg, do we only skip one?
2685               if ( $irreg[$i] == (($wkno!=51)?($wkno +1) % 52 :52)) {
2686                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 7 );
2687                   $wkno=(($wkno!=51)?($wkno +1) % 52 :52);
2688               }
2689           }
2690           @resultdate = Add_Delta_Days( $year,$month, $day, 7);
2691         }        
2692     }
2693     #   1 / 2 weeks
2694     if ( $subscription->{periodicity} == 3 ) {        
2695         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2696         if ($@){warn "year month day : $year $month $day $subscription->{subscriptionid} : $@";}
2697         else {    
2698           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2699               if ( $irreg[$i] == (($wkno!=50)?($wkno +2) % 52 :52)) {
2700               ### BUGFIX was previously +1 ^
2701                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 14 );
2702                   $wkno=(($wkno!=50)?($wkno +2) % 52 :52);
2703               }
2704           }
2705           @resultdate = Add_Delta_Days($year,$month, $day , 14 );
2706         }        
2707     }
2708     #   1 / 3 weeks
2709     if ( $subscription->{periodicity} == 4 ) {
2710         my ($wkno,$year) = eval {Week_of_Year( $year,$month, $day )};
2711         if ($@){warn "annĂ©e mois jour : $year $month $day $subscription->{subscriptionid} : $@";}
2712         else {    
2713           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2714               if ( $irreg[$i] == (($wkno!=49)?($wkno +3) % 52 :52)) {
2715                   ($year,$month,$day) = Add_Delta_Days($year,$month, $day , 21 );
2716                   $wkno=(($wkno!=49)?($wkno +3) % 52 :52);
2717               }
2718           }
2719           @resultdate = Add_Delta_Days($year,$month, $day , 21 );
2720         }        
2721     }
2722     my $tmpmonth=$month;
2723     if ($year && $month && $day){
2724     if ( $subscription->{periodicity} == 5 ) {
2725           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2726               if ( $irreg[$i] == (($tmpmonth!=11)?($tmpmonth +1) % 12 :12)) {
2727                   ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2728                   $tmpmonth=(($tmpmonth!=11)?($tmpmonth +1) % 12 :12);
2729               }
2730           }        
2731           @resultdate = Add_Delta_YMD($year,$month, $day ,0,1,0 );
2732     }
2733     if ( $subscription->{periodicity} == 6 ) {
2734           for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2735               if ( $irreg[$i] == (($tmpmonth!=10)?($tmpmonth +2) % 12 :12)) {
2736                   ($year,$month,$day) = Add_Delta_YMD($year,$month, $day ,0,2,0 );
2737                   $tmpmonth=(($tmpmonth!=10)?($tmpmonth + 2) % 12 :12);
2738               }
2739           }
2740           @resultdate = Add_Delta_YMD($year,$month, $day, 0, 2,0 );
2741     }
2742     if ( $subscription->{periodicity} == 7 ) {
2743         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2744             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2745                 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2746                 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2747             }
2748         }
2749         @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2750     }
2751     if ( $subscription->{periodicity} == 8 ) {
2752         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2753             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2754                 ($year,$month,$day) = Add_Delta_YMD($year,$month, $day, 0, 3,0 );
2755                 $tmpmonth=(($tmpmonth!=9)?($tmpmonth + 3) % 12 :12);
2756             }
2757         }
2758         @resultdate = Add_Delta_YMD($year,$month, $day, 0, 3, 0);
2759     }
2760     if ( $subscription->{periodicity} == 9 ) {
2761         for ( my $i = 0 ; $i < @irreg ; $i++ ) {
2762             if ( $irreg[$i] == (($tmpmonth!=9)?($tmpmonth +3) % 12 :12)) {
2763             ### BUFIX Seems to need more Than One ?
2764                 ($year,$month,$day) = Add_Delta_YM($year,$month, $day, 0, 6 );
2765                 $tmpmonth=(($tmpmonth!=6)?($tmpmonth + 6) % 12 :12);
2766             }
2767         }
2768         @resultdate = Add_Delta_YM($year,$month, $day, 0, 6);
2769     }
2770     if ( $subscription->{periodicity} == 10 ) {
2771         @resultdate = Add_Delta_YM($year,$month, $day, 1, 0 );
2772     }
2773     if ( $subscription->{periodicity} == 11 ) {
2774         @resultdate = Add_Delta_YM($year,$month, $day, 2, 0 );
2775     }
2776     }  
2777     my $resultdate=sprintf("%04d-%02d-%02d",$resultdate[0],$resultdate[1],$resultdate[2]);
2778       
2779 #     warn "dateNEXTSEQ : ".$resultdate;
2780     return "$resultdate";
2781 }
2782
2783 =head2 itemdata
2784
2785   $item = &itemdata($barcode);
2786
2787 Looks up the item with the given barcode, and returns a
2788 reference-to-hash containing information about that item. The keys of
2789 the hash are the fields from the C<items> and C<biblioitems> tables in
2790 the Koha database.
2791
2792 =cut
2793
2794 #'
2795 sub itemdata {
2796     my ($barcode) = @_;
2797     my $dbh       = C4::Context->dbh;
2798     my $sth       = $dbh->prepare(
2799         "Select * from items LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber 
2800         WHERE barcode=?"
2801     );
2802     $sth->execute($barcode);
2803     my $data = $sth->fetchrow_hashref;
2804     $sth->finish;
2805     return ($data);
2806 }
2807
2808 1;
2809 __END__
2810
2811 =head1 AUTHOR
2812
2813 Koha Developement team <info@koha.org>
2814
2815 =cut