Bug 19410: (follow-up) Add reserved params definitions
[koha.git] / serials / routing-preview.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
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 # Routing Preview.pl script used to view a routing list after creation
19 # lets one print out routing slip and create (in this instance) the heirarchy
20 # of reserves for the serial
21 use strict;
22 use warnings;
23 use CGI qw ( -utf8 );
24 use C4::Koha;
25 use C4::Auth;
26 use C4::Output;
27 use C4::Acquisition;
28 use C4::Reserves;
29 use C4::Circulation;
30 use C4::Context;
31 use C4::Members;
32 use C4::Biblio;
33 use C4::Items;
34 use C4::Serials;
35 use URI::Escape;
36
37 use Koha::Biblios;
38 use Koha::Libraries;
39 use Koha::Patrons;
40
41 my $query = new CGI;
42 my $subscriptionid = $query->param('subscriptionid');
43 my $issue = $query->param('issue');
44 my $routingid;
45 my $ok = $query->param('ok');
46 my $edit = $query->param('edit');
47 my $delete = $query->param('delete');
48 my $dbh = C4::Context->dbh;
49
50 if($delete){
51     delroutingmember($routingid,$subscriptionid);
52     my $sth = $dbh->prepare("UPDATE serial SET routingnotes = NULL WHERE subscriptionid = ?");
53     $sth->execute($subscriptionid);
54     print $query->redirect("routing.pl?subscriptionid=$subscriptionid&op=new");
55 }
56
57 if($edit){
58     print $query->redirect("routing.pl?subscriptionid=$subscriptionid");
59 }
60
61 my @routinglist = getroutinglist($subscriptionid);
62 my $subs = GetSubscription($subscriptionid);
63 my ($tmp ,@serials) = GetSerials($subscriptionid);
64 my ($template, $loggedinuser, $cookie);
65
66 if($ok){
67     # get biblio information....
68     my $biblionumber = $subs->{'bibnum'};
69     my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblionumber);
70     my @itemresults = GetItemsInfo( $biblionumber );
71     my $branch = @itemresults ? $itemresults[0]->{'holdingbranch'} : $subs->{branchcode};
72     my $branchname = Koha::Libraries->find($branch)->branchname;
73
74         if (C4::Context->preference('RoutingListAddReserves')){
75                 # get existing reserves .....
76
77         my $biblio = Koha::Biblios->find( $biblionumber );
78         my $holds = $biblio->current_holds;
79         my $count = $holds->count;
80         while ( my $hold = $holds->next ) {
81             $count-- if $hold->is_waiting;
82         }
83                 my $notes;
84                 my $title = $subs->{'bibliotitle'};
85         for my $routing ( @routinglist ) {
86             my $sth = $dbh->prepare('SELECT * FROM reserves WHERE biblionumber = ? AND borrowernumber = ? LIMIT 1');
87             $sth->execute($biblionumber,$routing->{borrowernumber});
88             my $reserve = $sth->fetchrow_hashref;
89
90             if($routing->{borrowernumber} == $reserve->{borrowernumber}){
91                 ModReserve({
92                     rank           => $routing->{ranking},
93                     biblionumber   => $biblionumber,
94                     borrowernumber => $routing->{borrowernumber},
95                     branchcode     => $branch
96                 });
97             } else {
98                 AddReserve($branch,$routing->{borrowernumber},$biblionumber,\@bibitems,$routing->{ranking}, undef, undef, $notes,$title);
99         }
100     }
101         }
102
103     ($template, $loggedinuser, $cookie)
104 = get_template_and_user({template_name => "serials/routing-preview-slip.tt",
105                                 query => $query,
106                                 type => "intranet",
107                                 authnotrequired => 0,
108                                 flagsrequired => {serials => '*'},
109                                 debug => 1,
110                                 });
111     $template->param("libraryname"=>$branchname);
112 } else {
113     ($template, $loggedinuser, $cookie)
114 = get_template_and_user({template_name => "serials/routing-preview.tt",
115                                 query => $query,
116                                 type => "intranet",
117                                 authnotrequired => 0,
118                                 flagsrequired => {serials => '*'},
119                                 debug => 1,
120                                 });
121 }
122
123 my $memberloop = [];
124 for my $routing (@routinglist) {
125     my $member = Koha::Patrons->find( $routing->{borrowernumber} )->unblessed;
126     $member->{name}           = "$member->{firstname} $member->{surname}";
127     push @{$memberloop}, $member;
128 }
129
130 my $routingnotes = $serials[0]->{'routingnotes'};
131 $routingnotes =~ s/\n/\<br \/\>/g;
132
133 $template->param(
134     title => $subs->{'bibliotitle'},
135     issue => $issue,
136     issue_escaped => URI::Escape::uri_escape_utf8($issue),
137     subscriptionid => $subscriptionid,
138     memberloop => $memberloop,
139     routingnotes => $routingnotes,
140     generalroutingnote => C4::Context->preference('RoutingListNote'),
141     hasRouting => check_routing($subscriptionid),
142     (uc(C4::Context->preference("marcflavour"))) => 1
143     );
144
145 output_html_with_http_headers $query, $cookie, $template->output;