Fix for Bug 4908 - OPAC patron details page doesn't show patron's home library
authorOwen Leonard <oleonard@myacpl.org>
Sat, 13 Nov 2010 19:08:58 +0000 (14:08 -0500)
committerChris Cormack <chrisc@catalyst.net.nz>
Thu, 2 Dec 2010 23:40:26 +0000 (12:40 +1300)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
koha-tmpl/opac-tmpl/prog/en/modules/opac-userupdate.tmpl
opac/opac-userupdate.pl

index 64c81f2..db9c416 100644 (file)
@@ -73,6 +73,7 @@
 <legend>Library Use:</legend>
 <ol>
        <li><label for="cardnumber">Card number:</label><input type="text" id="cardnumber" disabled="disabled" readonly="readonly" value="<!-- TMPL_VAR NAME="cardnumber" -->" /></li>
+    <li><label for="branchcode">Home library:</label><input type="text" id="branchcode" disabled="disabled" readonly="readonly" value="<!-- TMPL_VAR NAME="branchcode" -->" /></li>
        <li><label for="borrowernumber">Patron Number:</label><input type="text" id="borrowernumber" disabled="disabled" readonly="readonly" value="<!-- TMPL_VAR NAME="borrowernumber" -->" /></li>
        <li><label for="categorycode">Patron Category:</label><input type="text" id="categorycode" disabled="disabled" readonly="readonly" value="<!-- TMPL_VAR NAME="description" --> (<!-- TMPL_VAR NAME="categorycode" -->)" /></li>
        <li><label for="dateenrolled">Joined: </label><input type="text" id="dateenrolled" disabled="disabled" readonly="readonly" value="<!-- TMPL_VAR NAME="dateenrolled" -->" /></li>
index b38a477..a9d0101 100755 (executable)
@@ -147,9 +147,10 @@ EOF
 }
 
 $borr->{'dateenrolled'} = format_date( $borr->{'dateenrolled'} );
-$borr->{'dateexpiry'}       = format_date( $borr->{'dateexpiry'} );
+$borr->{'dateexpiry'}   = format_date( $borr->{'dateexpiry'} );
 $borr->{'dateofbirth'}  = format_date( $borr->{'dateofbirth'} );
 $borr->{'ethnicity'}    = fixEthnicity( $borr->{'ethnicity'} );
+$borr->{'branchcode'}   = GetBranchName($borr->{'branchcode'});
 
 if (C4::Context->preference('ExtendedPatronAttributes')) {
     my $attributes = C4::Members::Attributes::GetBorrowerAttributes($borrowernumber, 'opac');