Merge branch 'bug_8641' into 3.12-master
[koha.git] / serials / subscription-add.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 use strict;
19 use warnings;
20
21 use CGI;
22 use Date::Calc qw(Today Day_of_Year Week_of_Year Add_Delta_Days);
23 use C4::Koha;
24 use C4::Biblio;
25 use C4::Auth;
26 use C4::Dates qw/format_date format_date_in_iso/;
27 use C4::Acquisition;
28 use C4::Output;
29 use C4::Context;
30 use C4::Branch; # GetBranches
31 use C4::Serials;
32 use C4::Letters;
33 use Carp;
34
35 #use Smart::Comments;
36
37 our $query = CGI->new;
38 my $op = $query->param('op') || '';
39 my $dbh = C4::Context->dbh;
40 my $sub_length;
41
42 my @budgets;
43
44 # Permission needed if it is a modification : edit_subscription
45 # Permission needed otherwise (nothing or dup) : create_subscription
46 my $permission = ($op eq "modify") ? "edit_subscription" : "create_subscription";
47
48 my ($template, $loggedinuser, $cookie)
49 = get_template_and_user({template_name => "serials/subscription-add.tmpl",
50                                 query => $query,
51                                 type => "intranet",
52                                 authnotrequired => 0,
53                                 flagsrequired => {serials => $permission},
54                                 debug => 1,
55                                 });
56
57
58
59 my $sub_on;
60 my @subscription_types = (
61             'issues', 'weeks', 'months'
62         );
63 my @sub_type_data;
64
65 my $subs;
66 my $firstissuedate;
67
68 if ($op eq 'modify' || $op eq 'dup' || $op eq 'modsubscription') {
69
70     my $subscriptionid = $query->param('subscriptionid');
71     $subs = GetSubscription($subscriptionid);
72 ## FIXME : Check rights to edit if mod. Could/Should display an error message.
73     if ($subs->{'cannotedit'} && $op eq 'modify'){
74       carp "Attempt to modify subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
75       print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
76     }
77     $firstissuedate = $subs->{firstacquidate};  # in iso format.
78     for (qw(startdate firstacquidate histstartdate enddate histenddate)) {
79         next unless defined $subs->{$_};
80         # TODO : Handle date formats properly.
81          if ($subs->{$_} eq '0000-00-00') {
82             $subs->{$_} = ''
83         } else {
84             $subs->{$_} = format_date($subs->{$_});
85         }
86           }
87       if (!defined $subs->{letter}) {
88           $subs->{letter}= q{};
89       }
90     letter_loop($subs->{'letter'}, $template);
91     my $nextexpected = GetNextExpected($subscriptionid);
92     $nextexpected->{'isfirstissue'} = $nextexpected->{planneddate}->output('iso') eq $firstissuedate ;
93     $subs->{nextacquidate} = $nextexpected->{planneddate}->output()  if($op eq 'modify');
94     unless($op eq 'modsubscription') {
95                 foreach my $length_unit qw(numberlength weeklength monthlength){
96                         if ($subs->{$length_unit}){
97                                 $sub_length=$subs->{$length_unit};
98                                 $sub_on=$length_unit;
99                                 last;
100                         }
101                 }
102
103         $template->param( %{$subs} );
104         $template->param("dow".$subs->{'dow'} => 1) if defined $subs->{'dow'};
105         $template->param(
106                     $op => 1,
107                     "subtype_$sub_on" => 1,
108                     sublength =>$sub_length,
109                     history => ($op eq 'modify'),
110                     "periodicity".$subs->{'periodicity'} => 1,
111                     "numberpattern".$subs->{'numberpattern'} => 1,
112                     firstacquiyear => substr($firstissuedate,0,4),
113                     );
114     }
115
116     if ( $op eq 'dup' ) {
117         my $dont_copy_fields = C4::Context->preference('SubscriptionDuplicateDroppedInput');
118         my @fields_id = map { fieldid => $_ }, split '\|', $dont_copy_fields;
119         $template->param( dont_export_field_loop => \@fields_id );
120     }
121 }
122
123 my $onlymine=C4::Context->preference('IndependantBranches') &&
124              C4::Context->userenv &&
125              C4::Context->userenv->{flags} % 2 !=1 &&
126              C4::Context->userenv->{branch};
127 my $branches = GetBranches($onlymine);
128 my $branchloop;
129 for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %{$branches}) {
130     my $selected = 0;
131     $selected = 1 if (defined($subs) && $thisbranch eq $subs->{'branchcode'});
132     push @{$branchloop}, {
133         value => $thisbranch,
134         selected => $selected,
135         branchname => $branches->{$thisbranch}->{'branchname'},
136     };
137 }
138
139 my $locations_loop = GetAuthorisedValues("LOC",$subs->{'location'});
140
141 $template->param(branchloop => $branchloop,
142     DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
143     locations_loop=>$locations_loop,
144 );
145 # prepare template variables common to all $op conditions:
146 $template->param(  'dateformat_' . C4::Context->preference('dateformat') => 1 );
147 if ($op!~/^mod/) {
148     letter_loop(q{}, $template);
149 }
150
151 if ($op eq 'addsubscription') {
152     redirect_add_subscription();
153 } elsif ($op eq 'modsubscription') {
154     redirect_mod_subscription();
155 } else {
156         while (@subscription_types) {
157            my $sub_type = shift @subscription_types;
158            my %row = ( 'name' => $sub_type );
159            if ( defined $sub_on and $sub_on eq $sub_type ) {
160              $row{'selected'} = ' selected';
161            } else {
162              $row{'selected'} = '';
163            }
164            push( @sub_type_data, \%row );
165         }
166     $template->param(subtype => \@sub_type_data);
167
168     letter_loop( '', $template ) if ($op ne 'modsubscription' && $op ne 'dup' && $op ne 'modify');
169
170     my $new_biblionumber = $query->param('biblionumber_for_new_subscription');
171     if (defined $new_biblionumber) {
172         my $bib = GetBiblioData($new_biblionumber);
173         if (defined $bib) {
174             $template->param(bibnum      => $new_biblionumber);
175             $template->param(bibliotitle => $bib->{title});
176         }
177     }
178         $template->param((uc(C4::Context->preference("marcflavour"))) => 1);
179         output_html_with_http_headers $query, $cookie, $template->output;
180 }
181
182 sub letter_loop {
183     my ($selected_letter, $templte) = @_;
184     my $letters = GetLetters('serial');
185     my $letterloop;
186     foreach my $thisletter (keys %{$letters}) {
187         push @{$letterloop}, {
188             value => $thisletter,
189             selected => $thisletter eq $selected_letter,
190             lettername => $letters->{$thisletter},
191         };
192     }
193     $templte->param(letterloop => $letterloop);
194     return;
195 }
196
197 sub _get_sub_length {
198     my ($type, $length) = @_;
199     return
200         (
201             $type eq 'numberlength' ? $length : 0,
202             $type eq 'weeklength'   ? $length : 0,
203             $type eq 'monthlength'  ? $length : 0,
204         );
205 }
206
207 sub redirect_add_subscription {
208     my $auser          = $query->param('user');
209     my $branchcode     = $query->param('branchcode');
210     my $aqbooksellerid = $query->param('aqbooksellerid');
211     my $cost           = $query->param('cost');
212     my $aqbudgetid     = $query->param('aqbudgetid');
213     my $periodicity    = $query->param('periodicity');
214     my $dow            = $query->param('dow');
215     my @irregularity   = $query->param('irregularity_select');
216     my $numberpattern  = $query->param('numbering_pattern');
217     my $graceperiod    = $query->param('graceperiod') || 0;
218
219     my ( $numberlength, $weeklength, $monthlength )
220         = _get_sub_length( $query->param('subtype'), $query->param('sublength') );
221     my $add1              = $query->param('add1');
222     my $every1            = $query->param('every1');
223     my $whenmorethan1     = $query->param('whenmorethan1');
224     my $setto1            = $query->param('setto1');
225     my $lastvalue1        = $query->param('lastvalue1');
226     my $innerloop1        = $query->param('innerloop1');
227     my $add2              = $query->param('add2');
228     my $every2            = $query->param('every2');
229     my $whenmorethan2     = $query->param('whenmorethan2');
230     my $setto2            = $query->param('setto2');
231     my $innerloop2        = $query->param('innerloop2');
232     my $lastvalue2        = $query->param('lastvalue2');
233     my $add3              = $query->param('add3');
234     my $every3            = $query->param('every3');
235     my $whenmorethan3     = $query->param('whenmorethan3');
236     my $setto3            = $query->param('setto3');
237     my $lastvalue3        = $query->param('lastvalue3');
238     my $innerloop3        = $query->param('innerloop3');
239     my $numberingmethod   = $query->param('numberingmethod');
240     my $status            = 1;
241     my $biblionumber      = $query->param('biblionumber');
242     my $callnumber        = $query->param('callnumber');
243     my $notes             = $query->param('notes');
244     my $internalnotes     = $query->param('internalnotes');
245     my $hemisphere        = $query->param('hemisphere') || 1;
246     my $letter            = $query->param('letter');
247     my $manualhistory     = $query->param('manualhist');
248     my $serialsadditems   = $query->param('serialsadditems');
249     my $staffdisplaycount = $query->param('staffdisplaycount');
250     my $opacdisplaycount  = $query->param('opacdisplaycount');
251     my $location          = $query->param('location');
252     my $startdate = format_date_in_iso( $query->param('startdate') );
253     my $enddate = format_date_in_iso( $query->param('enddate') );
254     my $firstacquidate  = format_date_in_iso($query->param('firstacquidate'));
255     my $histenddate = format_date_in_iso($query->param('histenddate'));
256     my $histstartdate = format_date_in_iso($query->param('histstartdate'));
257     my $recievedlist = $query->param('recievedlist');
258     my $missinglist = $query->param('missinglist');
259     my $opacnote = $query->param('opacnote');
260     my $librariannote = $query->param('librariannote');
261         my $subscriptionid = NewSubscription($auser,$branchcode,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber,
262                                         $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength,
263                                         $add1,$every1,$whenmorethan1,$setto1,$lastvalue1,$innerloop1,
264                                         $add2,$every2,$whenmorethan2,$setto2,$lastvalue2,$innerloop2,
265                                         $add3,$every3,$whenmorethan3,$setto3,$lastvalue3,$innerloop3,
266                                         $numberingmethod, $status, $notes,$letter,$firstacquidate,join(",",@irregularity),
267                     $numberpattern, $callnumber, $hemisphere,($manualhistory?$manualhistory:0),$internalnotes,
268                     $serialsadditems,$staffdisplaycount,$opacdisplaycount,$graceperiod,$location,$enddate
269                                 );
270     ModSubscriptionHistory ($subscriptionid,$histstartdate,$histenddate,$recievedlist,$missinglist,$opacnote,$librariannote);
271
272     print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
273     return;
274 }
275
276 sub redirect_mod_subscription {
277     my $subscriptionid = $query->param('subscriptionid');
278           my @irregularity = $query->param('irregularity_select');
279     my $auser = $query->param('user');
280     my $librarian => $query->param('librarian'),
281     my $branchcode = $query->param('branchcode');
282     my $cost = $query->param('cost');
283     my $aqbooksellerid = $query->param('aqbooksellerid');
284     my $biblionumber = $query->param('biblionumber');
285     my $aqbudgetid = $query->param('aqbudgetid');
286     my $startdate = format_date_in_iso($query->param('startdate'));
287     my $nextacquidate = $query->param('nextacquidate') ?
288                             format_date_in_iso($query->param('nextacquidate')):
289                             format_date_in_iso($query->param('startdate'));
290     my $enddate = format_date_in_iso($query->param('enddate'));
291     my $periodicity = $query->param('periodicity');
292     my $dow = $query->param('dow');
293
294     my ($numberlength, $weeklength, $monthlength)
295         = _get_sub_length( $query->param('subtype'), $query->param('sublength') );
296     my $numberpattern = $query->param('numbering_pattern');
297     my $add1 = $query->param('add1');
298     my $every1 = $query->param('every1');
299     my $whenmorethan1 = $query->param('whenmorethan1');
300     my $setto1 = $query->param('setto1');
301     my $lastvalue1 = $query->param('lastvalue1');
302     my $innerloop1 = $query->param('innerloop1');
303     my $add2 = $query->param('add2');
304     my $every2 = $query->param('every2');
305     my $whenmorethan2 = $query->param('whenmorethan2');
306     my $setto2 = $query->param('setto2');
307     my $lastvalue2 = $query->param('lastvalue2');
308     my $innerloop2 = $query->param('innerloop2');
309     my $add3 = $query->param('add3');
310     my $every3 = $query->param('every3');
311     my $whenmorethan3 = $query->param('whenmorethan3');
312     my $setto3 = $query->param('setto3');
313     my $lastvalue3 = $query->param('lastvalue3');
314     my $innerloop3 = $query->param('innerloop3');
315     my $numberingmethod = $query->param('numberingmethod');
316     my $status = 1;
317     my $callnumber = $query->param('callnumber');
318     my $notes = $query->param('notes');
319     my $internalnotes = $query->param('internalnotes');
320     my $hemisphere = $query->param('hemisphere');
321     my $letter = $query->param('letter');
322     my $manualhistory = $query->param('manualhist');
323     my $serialsadditems = $query->param('serialsadditems');
324     # subscription history
325     my $histenddate = format_date_in_iso($query->param('histenddate'));
326     my $histstartdate = format_date_in_iso($query->param('histstartdate'));
327     my $recievedlist = $query->param('recievedlist');
328     my $missinglist = $query->param('missinglist');
329     my $opacnote = $query->param('opacnote');
330     my $librariannote = $query->param('librariannote');
331         my $staffdisplaycount = $query->param('staffdisplaycount');
332         my $opacdisplaycount = $query->param('opacdisplaycount');
333     my $graceperiod     = $query->param('graceperiod') || 0;
334     my $location = $query->param('location');
335     my $nextexpected = GetNextExpected($subscriptionid);
336         #  If it's  a mod, we need to check the current 'expected' issue, and mod it in the serials table if necessary.
337     if ( $nextacquidate ne $nextexpected->{planneddate}->output('iso') ) {
338         ModNextExpected($subscriptionid,C4::Dates->new($nextacquidate,'iso'));
339         # if we have not received any issues yet, then we also must change the firstacquidate for the subs.
340         $firstissuedate = $nextacquidate if($nextexpected->{isfirstissue});
341     }
342
343         ModSubscription(
344             $auser,           $branchcode,   $aqbooksellerid, $cost,
345             $aqbudgetid,      $startdate,    $periodicity,    $firstissuedate,
346             $dow,             join(q{,},@irregularity), $numberpattern,  $numberlength,
347             $weeklength,      $monthlength,  $add1,           $every1,
348             $whenmorethan1,   $setto1,       $lastvalue1,     $innerloop1,
349             $add2,            $every2,       $whenmorethan2,  $setto2,
350             $lastvalue2,      $innerloop2,   $add3,           $every3,
351             $whenmorethan3,   $setto3,       $lastvalue3,     $innerloop3,
352             $numberingmethod, $status,       $biblionumber,   $callnumber,
353             $notes,           $letter,       $hemisphere,     $manualhistory,$internalnotes,
354             $serialsadditems, $staffdisplaycount,$opacdisplaycount,$graceperiod,$location,$enddate,$subscriptionid
355         );
356         ModSubscriptionHistory ($subscriptionid,$histstartdate,$histenddate,$recievedlist,$missinglist,$opacnote,$librariannote);
357     print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
358     return;
359 }