fix for bug 2348: Cannot change patron category
[koha.git] / serials / routing-preview.pl
blob7a33010d105ca8b4910034beb7ca9f4eb422cf48
1 #!/usr/bin/perl
3 # Routing Preview.pl script used to view a routing list after creation
4 # lets one print out routing slip and create (in this instance) the heirarchy
5 # of reserves for the serial
6 use strict;
7 use CGI;
8 use C4::Koha;
9 use C4::Auth;
10 use C4::Dates;
11 use C4::Output;
12 use C4::Acquisition;
13 use C4::Reserves;
14 use C4::Circulation;
15 use C4::Context;
16 use C4::Members;
17 use C4::Biblio;
18 use C4::Items;
19 use C4::Serials;
21 my $query = new CGI;
22 my $subscriptionid = $query->param('subscriptionid');
23 my $issue = $query->param('issue');
24 my $routingid;
25 my $ok = $query->param('ok');
26 my $edit = $query->param('edit');
27 my $delete = $query->param('delete');
28 my $dbh = C4::Context->dbh;
30 if($delete){
31 delroutingmember($routingid,$subscriptionid);
32 my $sth = $dbh->prepare("UPDATE serial SET routingnotes = NULL WHERE subscriptionid = ?");
33 $sth->execute($subscriptionid);
34 print $query->redirect("routing.pl?subscriptionid=$subscriptionid&op=new");
37 if($edit){
38 print $query->redirect("routing.pl?subscriptionid=$subscriptionid");
41 my ($routing, @routinglist) = getroutinglist($subscriptionid);
42 my $subs = GetSubscription($subscriptionid);
43 my ($count,@serials) = GetSerials($subscriptionid);
44 my ($template, $loggedinuser, $cookie);
46 if($ok){
47 # get biblio information....
48 my $biblio = $subs->{'biblionumber'};
50 # get existing reserves .....
51 my ($count,$reserves) = GetReservesFromBiblionumber($biblio);
52 my $totalcount = $count;
53 foreach my $res (@$reserves) {
54 if ($res->{'found'} eq 'W') {
55 $count--;
58 my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
59 my @itemresults = GetItemsInfo($subs->{'biblionumber'}, 'intra');
60 my $branch = $itemresults[0]->{'holdingbranch'};
61 my $const = 'o';
62 my $notes;
63 my $title = $subs->{'bibliotitle'};
64 for(my $i=0;$i<$routing;$i++){
65 my $sth = $dbh->prepare("SELECT * FROM reserves WHERE biblionumber = ? AND borrowernumber = ?");
66 $sth->execute($biblio,$routinglist[$i]->{'borrowernumber'});
67 my $data = $sth->fetchrow_hashref;
69 # warn "$routinglist[$i]->{'borrowernumber'} is the same as $data->{'borrowernumber'}";
70 if($routinglist[$i]->{'borrowernumber'} == $data->{'borrowernumber'}){
71 ModReserve($routinglist[$i]->{'ranking'},$biblio,$routinglist[$i]->{'borrowernumber'},$branch);
72 } else {
73 AddReserve($branch,$routinglist[$i]->{'borrowernumber'},$biblio,$const,\@bibitems,$routinglist[$i]->{'ranking'},$notes,$title);
78 ($template, $loggedinuser, $cookie)
79 = get_template_and_user({template_name => "serials/routing-preview-slip.tmpl",
80 query => $query,
81 type => "intranet",
82 authnotrequired => 0,
83 flagsrequired => {serials => 1},
84 debug => 1,
85 });
86 $template->param("libraryname"=>C4::Context->preference("LibraryName"));
87 } else {
88 ($template, $loggedinuser, $cookie)
89 = get_template_and_user({template_name => "serials/routing-preview.tmpl",
90 query => $query,
91 type => "intranet",
92 authnotrequired => 0,
93 flagsrequired => {serials => 1},
94 debug => 1,
95 });
98 # my $firstdate = "$serials[0]->{'serialseq'} ($serials[0]->{'planneddate'})";
99 my @results;
100 my $data;
101 for(my $i=0;$i<$routing;$i++){
102 $data=GetMember($routinglist[$i]->{'borrowernumber'},'borrowernumber');
103 $data->{'location'}=$data->{'streetaddress'};
104 $data->{'name'}="$data->{'firstname'} $data->{'surname'}";
105 $data->{'routingid'}=$routinglist[$i]->{'routingid'};
106 $data->{'subscriptionid'}=$subscriptionid;
107 push(@results, $data);
110 my $routingnotes = $serials[0]->{'routingnotes'};
111 $routingnotes =~ s/\n/\<br \/\>/g;
113 $template->param(
114 title => $subs->{'bibliotitle'},
115 issue => $issue,
116 subscriptionid => $subscriptionid,
117 memberloop => \@results,
118 routingnotes => $routingnotes,
121 output_html_with_http_headers $query, $cookie, $template->output;