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
21 my $subscriptionid = $query->param('subscriptionid');
22 my $issue = $query->param('issue');
24 my $ok = $query->param('ok');
25 my $edit = $query->param('edit');
26 my $delete = $query->param('delete');
27 my $dbh = C4
::Context
->dbh;
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");
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);
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') {
57 my ($count2,@bibitems) = GetBiblioItemByBiblioNumber
($biblio);
58 my @itemresults = GetItemsInfo
($subs->{'biblionumber'}, 'intra');
59 my $branch = $itemresults[0]->{'holdingbranch'};
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);
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",
83 flagsrequired
=> {serials
=> 1},
86 $template->param("libraryname"=>C4
::Context
->preference("LibraryName"));
88 ($template, $loggedinuser, $cookie)
89 = get_template_and_user
({template_name
=> "serials/routing-preview.tmpl",
93 flagsrequired
=> {serials
=> 1},
98 # my $firstdate = "$serials[0]->{'serialseq'} ($serials[0]->{'planneddate'})";
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
;
114 title
=> $subs->{'bibliotitle'},
116 subscriptionid
=> $subscriptionid,
117 memberloop
=> \
@results,
118 routingnotes
=> $routingnotes,
121 output_html_with_http_headers
$query, $cookie, $template->output;