Bug 12435 - Update MARC21 frameworks to Update No. 18 (April 2014)
[koha.git] / serials / routing-preview.pl
blob1eda74d1e763febe529da5ab9f424346093ea469
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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.
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;
24 use C4::Koha;
25 use C4::Auth;
26 use C4::Dates;
27 use C4::Output;
28 use C4::Acquisition;
29 use C4::Reserves;
30 use C4::Circulation;
31 use C4::Context;
32 use C4::Members;
33 use C4::Biblio;
34 use C4::Items;
35 use C4::Serials;
36 use URI::Escape;
37 use C4::Branch;
39 my $query = new CGI;
40 my $subscriptionid = $query->param('subscriptionid');
41 my $issue = $query->param('issue');
42 my $routingid;
43 my $ok = $query->param('ok');
44 my $edit = $query->param('edit');
45 my $delete = $query->param('delete');
46 my $dbh = C4::Context->dbh;
48 if($delete){
49 delroutingmember($routingid,$subscriptionid);
50 my $sth = $dbh->prepare("UPDATE serial SET routingnotes = NULL WHERE subscriptionid = ?");
51 $sth->execute($subscriptionid);
52 print $query->redirect("routing.pl?subscriptionid=$subscriptionid&op=new");
55 if($edit){
56 print $query->redirect("routing.pl?subscriptionid=$subscriptionid");
59 my @routinglist = getroutinglist($subscriptionid);
60 my $subs = GetSubscription($subscriptionid);
61 my ($tmp ,@serials) = GetSerials($subscriptionid);
62 my ($template, $loggedinuser, $cookie);
64 if($ok){
65 # get biblio information....
66 my $biblio = $subs->{'biblionumber'};
67 my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
68 my @itemresults = GetItemsInfo( $subs->{biblionumber} );
69 my $branch = $itemresults[0]->{'holdingbranch'};
70 my $branchname = GetBranchName($branch);
72 if (C4::Context->preference('RoutingListAddReserves')){
73 # get existing reserves .....
74 my $reserves = GetReservesFromBiblionumber({ biblionumber => $biblio });
75 my $count = scalar( @$reserves );
76 my $totalcount = $count;
77 foreach my $res (@$reserves) {
78 if ($res->{'found'} eq 'W') {
79 $count--;
82 my $const = 'o';
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($biblio,$routing->{borrowernumber});
88 my $reserve = $sth->fetchrow_hashref;
90 if($routing->{borrowernumber} == $reserve->{borrowernumber}){
91 ModReserve({
92 rank => $routing->{ranking},
93 biblionumber => $biblio,
94 borrowernumber => $routing->{borrowernumber},
95 branchcode => $branch
96 });
97 } else {
98 AddReserve($branch,$routing->{borrowernumber},$biblio,$const,\@bibitems,$routing->{ranking}, undef, undef, $notes,$title);
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,
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,
123 my $memberloop = [];
124 for my $routing (@routinglist) {
125 my $member = GetMember( borrowernumber => $routing->{borrowernumber} );
126 $member->{name} = "$member->{firstname} $member->{surname}";
127 push @{$memberloop}, $member;
130 my $routingnotes = $serials[0]->{'routingnotes'};
131 $routingnotes =~ s/\n/\<br \/\>/g;
133 $template->param(
134 title => $subs->{'bibliotitle'},
135 issue => $issue,
136 issue_escaped => URI::Escape::uri_escape($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
145 output_html_with_http_headers $query, $cookie, $template->output;