(bug #3563) This replaces the library name by the branchname attached to the subscrip...
authorJean-André Santoni <jeanandre.santoni@biblibre.com>
Fri, 28 Aug 2009 21:47:44 +0000 (23:47 +0200)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 30 Sep 2009 09:30:11 +0000 (11:30 +0200)
In routing-preview, the title should be the branchname attached to the
subscription instead of the libraryname.
And showing the streetaddress of the members is useless, and harm privacy.

koha-tmpl/intranet-tmpl/prog/en/modules/serials/member-search.tmpl
koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tmpl
koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview.tmpl
koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tmpl
serials/routing-preview.pl

index 2e61e02..7f8d0ec 100644 (file)
@@ -35,12 +35,10 @@ function add_member(subscriptionid,borrowernumber){
 <table>
 <tr>
        <th>Name</th>
-    <th>Location</th>
     <th>Add</th>
 </tr>
 <!-- TMPL_LOOP NAME="memberloop" -->
 <tr><td><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></td>
-    <td><!-- TMPL_VAR NAME="streetaddress" --></td>
     <td><a onclick="add_member(<!-- TMPL_VAR
 NAME="subscriptionid" -->,<!-- TMPL_VAR NAME="borrowernumber" -->); return false" href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->&amp;borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&amp;op=add">Add</a></td></tr>
 <!-- /TMPL_LOOP -->
index 59a9428..d55ec74 100644 (file)
 <tr><td colspan="3"><h3><!-- TMPL_VAR NAME="libraryname" --></h3></td></tr>
 <tr><td colspan="3"><b>Title:</b> <!-- TMPL_VAR NAME="title" escape="html" --><br />
 <!-- TMPL_VAR NAME="issue" --></td></tr>
-<tr><td><b>Name/Location</b></td>
+<tr><td><b>Name</b></td>
     <td><b>Date Due</b></td></tr>
 <!-- TMPL_LOOP NAME="memberloop" -->
-        <tr><td><b><!-- TMPL_VAR NAME="name" --></b> <!-- TMPL_VAR NAME="location" --></td>
+        <tr><td><!-- TMPL_VAR NAME="name" --></td>
             <td>&nbsp;</td></tr>
 <!-- /TMPL_LOOP -->
 </table>
index c3a4e4a..999b31b 100644 (file)
@@ -32,11 +32,9 @@ window.open(myurl,'PrintSlip','width=500,height=500,toolbar=no,scrollbars=yes');
 <table border="0" cellspacing="0" cellpadding="0">
 <tr><td style="padding-top: 5px;"><b>List Member:</b></td>
     <td><table cellspacing="0" cellpadding="0" border="0" class="collapse">
-        <tr><th>Name</th>
-            <th>Location</th></tr>
+        <tr><th>Name</th></tr>
 <!-- TMPL_LOOP NAME="memberloop" -->
-        <tr><td><!-- TMPL_VAR NAME="name" --></td>
-            <td><!-- TMPL_VAR NAME="location" --></td></tr>
+        <tr><td><!-- TMPL_VAR NAME="name" --></td></tr>
 <!-- /TMPL_LOOP -->
         </table></td></tr>
 <tr><td><b>Notes:</b></td>
index bbdba1f..199828f 100644 (file)
@@ -54,12 +54,10 @@ function search_member(subscriptionid){
 <tr><td style="padding-top:5px;"><b>List Member:</b></td>
     <td><table cellspacing="0" cellpadding="0" border="0" class="collapse">
         <tr><th>Name</th>
-            <th>Location</th>
             <th>Rank</th>
             <th>Delete</th></tr>
 <!-- TMPL_LOOP NAME="memberloop" -->
         <tr><td><!-- TMPL_VAR NAME="name" --></td>
-            <td><!-- TMPL_VAR NAME="location" --></td>
             <td><!-- TMPL_VAR NAME="routingbox" --></td>
             <td><a href="/cgi-bin/koha/serials/routing.pl?routingid=<!-- TMPL_VAR NAME="routingid" -->&amp;subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->&amp;op=delete">Delete</a></td></tr>
 <!-- /TMPL_LOOP -->
@@ -88,4 +86,4 @@ href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR NAME="subscr
 <!-- TMPL_INCLUDE NAME="serials-menu.inc" -->
 </div>
 </div>
-<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
\ No newline at end of file
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
index d8d7b4d..e001104 100755 (executable)
@@ -19,6 +19,7 @@ use C4::Biblio;
 use C4::Items;
 use C4::Serials;
 use URI::Escape;
+use C4::Branch;
 
 my $query = new CGI;
 my $subscriptionid = $query->param('subscriptionid');
@@ -60,6 +61,7 @@ if($ok){
     my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
     my @itemresults = GetItemsInfo($subs->{'biblionumber'}, 'intra');
     my $branch = $itemresults[0]->{'holdingbranch'};
+    my $branchname = GetBranchName($branch);
     my $const = 'o';
     my $notes;
     my $title = $subs->{'bibliotitle'};
@@ -85,7 +87,7 @@ if($ok){
                                flagsrequired => {serials => 1},
                                debug => 1,
                                });
-    $template->param("libraryname"=>C4::Context->preference("LibraryName"));
+    $template->param("libraryname"=>$branchname);
 } else {
     ($template, $loggedinuser, $cookie)
 = get_template_and_user({template_name => "serials/routing-preview.tmpl",
@@ -100,8 +102,12 @@ if($ok){
 my @results;
 my $data;
 for(my $i=0;$i<$routing;$i++){
+<<<<<<< HEAD:serials/routing-preview.pl
     $data=GetMember('borrowernumber' => $routinglist[$i]->{'borrowernumber'});
     $data->{'location'}=$data->{'branchcode'};
+=======
+    $data=GetMember($routinglist[$i]->{'borrowernumber'},'borrowernumber');
+>>>>>>> 704d6c9... [3.0.x](bug #3563) This replaces the library name by the branchname attached to the subscription, and hide streetaddesses in serials routing:serials/routing-preview.pl
     $data->{'name'}="$data->{'firstname'} $data->{'surname'}";
     $data->{'routingid'}=$routinglist[$i]->{'routingid'};
     $data->{'subscriptionid'}=$subscriptionid;