updates to acqui - first of several commits
[koha.git] / serials / routing-preview.pl
blob9f11ec7a1a208177e0e05fe24569948ff71b9d40
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::Serials;
20 my $query = new CGI;
21 my $subscriptionid = $query->param('subscriptionid');
22 my $issue = $query->param('issue');
23 my $routingid;
24 my $ok = $query->param('ok');
25 my $edit = $query->param('edit');
26 my $delete = $query->param('delete');
27 my $dbh = C4::Context->dbh;
29 if($delete){
30 delroutingmember($routingid,$subscriptionid);
31 my $sth = $dbh->prepare("UPDATE serial SET routingnotes = NULL WHERE subscriptionid = ?");
32 $sth->execute($subscriptionid);
33 print $query->redirect("routing.pl?subscriptionid=$subscriptionid&op=new");
36 if($edit){
37 print $query->redirect("routing.pl?subscriptionid=$subscriptionid");
40 my ($routing, @routinglist) = getroutinglist($subscriptionid);
41 my $subs = GetSubscription($subscriptionid);
42 my ($count,@serials) = GetSerials($subscriptionid);
43 my ($template, $loggedinuser, $cookie);
45 if($ok){
46 # get biblio information....
47 my $biblio = $subs->{'biblionumber'};
49 # get existing reserves .....
50 my ($count,$reserves) = GetReservesFromBiblionumber($biblio);
51 my $totalcount = $count;
52 foreach my $res (@$reserves) {
53 if ($res->{'found'} eq 'W') {
54 $count--;
57 my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
58 my @itemresults = GetItemsInfo($subs->{'biblionumber'}, 'intra');
59 my $branch = $itemresults[0]->{'holdingbranch'};
60 my $const = 'o';
61 my $notes;
62 my $title = $subs->{'bibliotitle'};
63 for(my $i=0;$i<$routing;$i++){
64 my $sth = $dbh->prepare("SELECT * FROM reserves WHERE biblionumber = ? AND borrowernumber = ?
65 AND cancellationdate is NULL AND (found <> 'F' or found is NULL)");
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;